DeskTop.js 693 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的項目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "學習資料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  418. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  435. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教師桌面圖標的全局變量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教師桌面圖標的全局變量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龍華中心小學教師桌面圖標的全局變量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院實小教師桌面圖標的全局變量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "評測看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院實小教師桌面圖標的全局變量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小學教師桌面圖標的全局變量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. ];
  627. //中山小學學生桌面圖標的全局變量
  628. U.MD.D.I.guzmsStudentDeskIcon = [
  629. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  630. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  631. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  632. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  633. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  634. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  635. ];
  636. //福田
  637. U.MD.D.I.gdjgTeacherDeskIcon = [
  638. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  639. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  640. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  641. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  642. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  643. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  644. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  645. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  646. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  647. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  650. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  651. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  652. ];
  653. //gdjg
  654. U.MD.D.I.gdjgAdminDeskIcon = [
  655. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  656. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  657. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  658. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  659. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  660. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  661. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  662. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  663. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  666. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  667. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  668. ];
  669. //hk
  670. U.MD.D.I.hkteacherDeskIcon = [
  671. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  674. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  675. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  676. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  677. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  678. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  679. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  680. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  681. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  682. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  684. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  687. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  688. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  690. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  693. ];
  694. //ricoh
  695. U.MD.D.I.ricohteacherDeskIcon = [
  696. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  697. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  698. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  699. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  700. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  701. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  702. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  703. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  704. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  705. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkStudentDeskIcon = [
  709. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  710. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  711. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  712. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. ];
  716. //hk
  717. U.MD.D.I.hkaceteacherDeskIcon = [
  718. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  719. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  720. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  721. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  722. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  723. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  724. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  725. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  726. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  727. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  728. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  729. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  730. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  731. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  735. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  737. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  738. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  739. ];
  740. //hk
  741. U.MD.D.I.hkaceStudentDeskIcon = [
  742. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  744. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  745. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  747. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  748. ];
  749. //香海正覺蓮社佛教正覺中學
  750. U.MD.D.I.hkZJLSteacherDeskIcon = [
  751. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  752. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  753. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  754. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  755. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  758. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  759. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  760. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  761. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  762. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  763. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  764. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  765. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  766. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  767. ];
  768. //香海正覺蓮社佛教正覺中學
  769. U.MD.D.I.hkZJLSStudentDeskIcon = [
  770. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. ];
  775. //雲海
  776. U.MD.D.I.yunhaiTeacherDeskIcon = [
  777. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  778. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  779. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  780. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  781. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  784. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  785. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  786. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  787. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  788. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  789. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  790. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  791. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  792. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  793. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  794. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  795. ];
  796. //福田
  797. U.MD.D.I.heyuanTeacherDeskIcon = [
  798. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  799. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  800. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  801. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  802. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  803. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  804. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  805. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  807. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //福田
  812. U.MD.D.I.heyuanAdminDeskIcon = [
  813. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  821. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  826. U.MD.D.I.szherTeacherDeskIcon = [
  827. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  834. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  836. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  837. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  838. ];
  839. //dsei
  840. U.MD.D.I.dseiTeacherDeskIcon = [
  841. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  842. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  843. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  844. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  845. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  846. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  847. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  848. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  849. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  850. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  851. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  852. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  853. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  854. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  855. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  856. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  857. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  858. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  859. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  860. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  861. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  862. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  863. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  864. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  865. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  866. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  867. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  868. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  869. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  870. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  871. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  872. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  873. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  874. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  875. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  876. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  877. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  878. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  880. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  881. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  882. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  884. ];
  885. //dsei
  886. U.MD.D.I.dseiAdminDeskIcon = [
  887. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  888. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  889. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  890. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  891. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  892. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  893. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  894. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  895. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  896. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  897. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  898. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  899. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  900. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  901. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  902. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  903. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  904. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  905. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  906. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  907. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  908. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  909. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  910. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  911. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  912. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  913. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  914. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  915. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  916. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  917. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  918. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  919. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  920. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  921. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  922. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  923. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  924. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  928. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  930. ];
  931. //dsei
  932. U.MD.D.I.dseiStudentDeskIcon = [
  933. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  934. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  935. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  936. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  939. ];
  940. //未來教育基地
  941. U.MD.D.I.szjkyTeacherDeskIcon = [
  942. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  943. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  944. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  945. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  946. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  947. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  948. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  949. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  950. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  951. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  952. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  953. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  954. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  955. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  958. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  959. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  960. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  961. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  962. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  963. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  964. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  965. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  966. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  967. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  968. ];
  969. //未來教育基地
  970. U.MD.D.I.szjkyAdminDeskIcon = [
  971. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  972. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  973. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  974. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  975. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  976. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  977. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  978. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  979. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  980. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  981. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  982. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  983. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  984. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  986. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  988. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  989. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  990. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  991. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  992. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  993. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  994. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  995. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  996. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  997. ];
  998. //未來教育基地
  999. U.MD.D.I.szjkyStudentDeskIcon = [
  1000. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1001. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1002. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1003. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1005. ];
  1006. //成華教育局
  1007. U.MD.D.I.chjyjTeacherDeskIcon = [
  1008. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成華教育局chjyj
  1024. U.MD.D.I.chjyjAdminDeskIcon = [
  1025. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1026. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1030. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1031. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //成華教育局chjyj
  1042. U.MD.D.I.chjyjStudentDeskIcon = [
  1043. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "項目管理", "Url": "studentCourse", "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. ];
  1048. //tpc
  1049. U.MD.D.I.tpcStudentDeskIcon = [
  1050. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. ];
  1055. //tpc
  1056. U.MD.D.I.tpcTeacherDeskIcon = [
  1057. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1058. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1063. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1064. ];
  1065. //tpc
  1066. U.MD.D.I.tpcAdminDeskIcon = [
  1067. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1068. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1069. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1070. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1071. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1073. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //THU-IOE
  1076. U.MD.D.I.thuioeTeacherDeskIcon = [
  1077. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1080. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1081. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1082. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1083. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1084. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1085. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1087. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1088. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1089. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1090. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1091. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1092. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1093. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1094. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1095. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1096. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1097. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1098. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1099. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1100. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1101. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1102. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1103. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1104. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1105. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1106. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1107. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1108. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1109. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1110. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //THU-IOE
  1118. U.MD.D.I.thuioeStudentDeskIcon = [
  1119. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. ];
  1124. //jccssyl
  1125. U.MD.D.I.jccssylTeacherDeskIcon = [
  1126. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1127. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1129. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1130. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1131. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1132. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1133. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1139. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1141. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1142. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1143. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1144. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1145. ];
  1146. //jccssyl
  1147. U.MD.D.I.jccssylStudentDeskIcon = [
  1148. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1149. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1150. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1151. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1152. ];
  1153. //cale
  1154. U.MD.D.I.caleTeacherDeskIcon = [
  1155. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1156. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1158. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1159. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1160. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1161. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1162. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1167. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1168. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1170. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1171. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1172. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1173. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1174. ];
  1175. //cale
  1176. U.MD.D.I.caleStudentDeskIcon = [
  1177. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1178. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1179. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1180. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1181. ];
  1182. //lqwmsgzs
  1183. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1184. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1185. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1186. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1187. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1188. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1189. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1194. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1195. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1196. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1197. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1198. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1199. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1200. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1201. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1202. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1203. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1204. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1205. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1206. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1207. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1208. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1209. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1210. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1211. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1212. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1213. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1214. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1215. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1216. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1217. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1219. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1220. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1221. ];
  1222. //lqwmsgzs
  1223. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1224. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1228. ];
  1229. //鹽田區幼兒園
  1230. U.MD.D.I.ytyTeacherDeskIcon = [
  1231. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1232. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1237. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1238. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1239. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1241. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1243. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. ];
  1245. //鹽田區幼兒園
  1246. U.MD.D.I.ytyStudentDeskIcon = [
  1247. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1249. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1250. ];
  1251. //scnuai
  1252. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1253. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1254. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1258. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1259. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1260. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1261. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1262. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1263. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1264. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1265. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1268. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1269. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1270. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1271. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1272. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1273. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1274. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1275. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiAdminDeskIcon = [
  1279. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1280. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "項目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1284. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1285. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1286. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1289. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1290. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1291. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1295. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1296. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1297. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1298. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1299. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1300. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1301. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiStudentDeskIcon = [
  1305. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1309. ];
  1310. //cocobiz
  1311. U.MD.D.I.cocobizteacherDeskIcon = [
  1312. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1313. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1315. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1316. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1317. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1318. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1319. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1320. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1321. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1322. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1323. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1324. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1325. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1329. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1330. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1331. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1332. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1333. ];
  1334. //cocobiz
  1335. U.MD.D.I.cocobizStudentDeskIcon = [
  1336. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1337. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1338. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1339. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. ];
  1343. //xxzjky
  1344. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1345. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1346. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1348. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1349. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1352. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1354. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1355. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1356. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1357. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1358. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1362. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1365. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1366. ];
  1367. //xxzjky
  1368. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1369. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1370. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. ];
  1376. //nsfx
  1377. U.MD.D.I.nsfxTeacherDeskIcon = [
  1378. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1379. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1380. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1381. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1382. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1385. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1386. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1387. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1388. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1389. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1393. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1394. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1395. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1396. ];
  1397. //nsfx
  1398. U.MD.D.I.nsfxStudentDeskIcon = [
  1399. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1400. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1401. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1403. ];
  1404. //stia
  1405. U.MD.D.I.stiaTeacherDeskIcon = [
  1406. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1407. // { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1409. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1410. // { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1413. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. // { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. // { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1416. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1417. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1418. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1419. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1420. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1421. ];
  1422. //stia
  1423. U.MD.D.I.stiaStudentDeskIcon = [
  1424. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1425. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1426. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1427. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1428. ];
  1429. //szdjg
  1430. U.MD.D.I.szdjgTeacherDeskIcon = [
  1431. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1432. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. ];
  1434. //szdjg
  1435. U.MD.D.I.szdjgStudentDeskIcon = [
  1436. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. ];
  1441. //010607
  1442. U.MD.D.I.x010607TeacherDeskIcon = [
  1443. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1444. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1446. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1447. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1450. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1451. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1452. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1453. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1454. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1455. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1456. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1457. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1458. ];
  1459. //010607
  1460. U.MD.D.I.x010607StudentDeskIcon = [
  1461. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1464. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.x010608TeacherDeskIcon = [
  1468. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1469. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1471. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1472. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1473. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1474. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1475. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1476. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1477. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1478. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1479. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1480. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1481. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1482. ];
  1483. //010608
  1484. U.MD.D.I.x010608StudentDeskIcon = [
  1485. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. ];
  1490. //xhly
  1491. U.MD.D.I.xhlyTeacherDeskIcon = [
  1492. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1493. ];
  1494. //010608
  1495. U.MD.D.I.xhlyStudentDeskIcon = [
  1496. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. ];
  1498. //北師大
  1499. U.MD.D.I.BSDNSteacherDeskIcon = [
  1500. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1501. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1502. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1503. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1504. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1505. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1506. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1507. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1508. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1509. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1510. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1511. ];
  1512. //北師大
  1513. U.MD.D.I.BSDNSstudentDeskIcon = [
  1514. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //CUHK_EDU
  1520. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1521. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1536. ];
  1537. //CUHK_EDU
  1538. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1539. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //010503
  1545. U.MD.D.I.x010503TeacherDeskIcon = [
  1546. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. ];
  1556. //010503
  1557. U.MD.D.I.x010503StudentDeskIcon = [
  1558. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1559. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1560. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. ];
  1563. //SPROUT Lab
  1564. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1565. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1566. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1568. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1569. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1570. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1571. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1572. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1573. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1574. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1575. ];
  1576. //SPROUT Lab
  1577. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1578. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1580. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1581. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. ];
  1583. //010204
  1584. U.MD.D.I.x010204TeacherDeskIcon = [
  1585. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1586. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1587. ];
  1588. //010204
  1589. U.MD.D.I.x010204StudentDeskIcon = [
  1590. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1593. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. ];
  1595. //trail
  1596. U.MD.D.I.trailTeacherDeskIcon = [
  1597. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1598. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1599. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1600. ];
  1601. //trail
  1602. U.MD.D.I.trailStudentDeskIcon = [
  1603. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1604. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1605. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1606. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1607. ];
  1608. //010504
  1609. U.MD.D.I.x010504TeacherDeskIcon = [
  1610. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1611. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1612. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1613. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1614. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1617. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1619. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1620. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1621. ];
  1622. //010504
  1623. U.MD.D.I.x010504StudentDeskIcon = [
  1624. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1625. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1626. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1627. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1628. ];
  1629. //SCNUET
  1630. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1631. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1632. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1633. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1634. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1635. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1636. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1637. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1638. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1639. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1640. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1641. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1642. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1643. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1644. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1646. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1647. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1648. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1649. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1650. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1651. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1652. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1653. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1654. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1655. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1656. ];
  1657. //SCNUET
  1658. U.MD.D.I.SCNUETAdminDeskIcon = [
  1659. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1660. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1661. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1662. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1663. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1664. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1665. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1666. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1667. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1668. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1669. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1670. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1671. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1672. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1673. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1674. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1675. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1676. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1677. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1678. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1679. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1680. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1681. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1682. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1683. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1684. ];
  1685. //SCNUET
  1686. U.MD.D.I.SCNUETStudentDeskIcon = [
  1687. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1688. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1689. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1690. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1691. ];
  1692. //x020201
  1693. U.MD.D.I.x020201TeacherDeskIcon = [
  1694. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1695. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1696. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1697. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1698. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1699. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1700. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1701. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1702. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1704. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1705. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1706. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1707. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1708. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1709. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1710. ];
  1711. //x020201
  1712. U.MD.D.I.x020201AdminDeskIcon = [
  1713. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1714. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1715. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1716. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1718. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1719. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1720. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1721. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1722. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1724. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1725. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1726. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1727. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1728. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1729. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1730. ];
  1731. //020201
  1732. U.MD.D.I.x020201StudentDeskIcon = [
  1733. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1734. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1735. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1736. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1737. ];
  1738. //010611
  1739. U.MD.D.I.x010611TeacherDeskIcon = [
  1740. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1741. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1742. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1743. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1744. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1745. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1746. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1747. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. ];
  1750. //010611
  1751. U.MD.D.I.x010611StudentDeskIcon = [
  1752. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1753. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1754. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1755. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1756. ];
  1757. //010612
  1758. U.MD.D.I.x010612TeacherDeskIcon = [
  1759. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1760. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1761. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1762. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1763. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1764. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1767. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1768. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1769. ];
  1770. //010612
  1771. U.MD.D.I.x010612StudentDeskIcon = [
  1772. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1774. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1775. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1776. ];
  1777. //tianyuan
  1778. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1779. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1780. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1781. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1782. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1783. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1784. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1785. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1786. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1788. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1789. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1790. ];
  1791. //010611
  1792. U.MD.D.I.tianyuanStudentDeskIcon = [
  1793. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1794. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1795. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1796. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1797. ];
  1798. //320101
  1799. U.MD.D.I.x320101TeacherDeskIcon = [
  1800. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1801. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1802. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1803. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1804. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1805. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1806. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1807. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1808. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1809. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1810. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1811. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1812. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1813. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1814. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1815. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1816. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1817. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1818. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1819. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1820. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1821. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1822. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1823. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1824. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1825. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1826. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1827. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1828. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1829. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1830. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1831. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1832. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1833. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1834. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1835. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1836. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1837. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1838. ];
  1839. //320101
  1840. U.MD.D.I.x320101StudentDeskIcon = [
  1841. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1842. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1843. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1844. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1845. ];
  1846. //szsy
  1847. U.MD.D.I.szsyTeacherDeskIcon = [
  1848. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1849. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1850. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1851. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1852. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1853. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1854. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1855. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1856. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1857. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1858. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1859. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1860. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1861. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1862. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1864. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1865. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1866. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1867. ];
  1868. //szsy
  1869. U.MD.D.I.szsyStudentDeskIcon = [
  1870. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1872. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1873. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1874. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1875. ];
  1876. //010404
  1877. U.MD.D.I.x010404TeacherDeskIcon = [
  1878. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1879. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1880. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1881. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1882. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1883. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1884. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1885. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1886. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1887. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1888. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1889. ];
  1890. //010404
  1891. U.MD.D.I.x010404StudentDeskIcon = [
  1892. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1893. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1894. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1895. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1896. ];
  1897. //#region 桌面初始化a
  1898. /**
  1899. * 初始化桌面的起始函數
  1900. *
  1901. */
  1902. U.MD.D.I.init = function () {
  1903. if ($("#U_MD_D_K")[0]) {
  1904. //初始化桌面圖標
  1905. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1906. // var clickUrl = ':12588/requestIp.php';
  1907. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1908. // U.MD.D.I.Ip = data;
  1909. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1910. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1911. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1912. // })
  1913. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1914. // })
  1915. }
  1916. }
  1917. /**
  1918. * 模式切換
  1919. *
  1920. */
  1921. U.MD.D.I.ModeCheck = function (type) {
  1922. if (US.Config.type == type) {
  1923. return
  1924. }
  1925. US.Config.type = type
  1926. $('.U_PBL_Check .active')[0].className = ''
  1927. if (type == 1) {
  1928. $('.U_PBL_Check div')[0].className = 'active'
  1929. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1930. } else {
  1931. $('.U_PBL_Check div')[1].className = 'active'
  1932. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1933. }
  1934. //初始化桌面圖標
  1935. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1936. if (type == 2) {
  1937. U.MD.D.I.openApplication("project")
  1938. }
  1939. }
  1940. /**
  1941. * 隱藏任務欄
  1942. *
  1943. * @param {element} 桌面元素
  1944. */
  1945. U.MD.D.I.hiddenTaskbar = function (el) {
  1946. //任務欄位置變小
  1947. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1948. //桌面的位置變大
  1949. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1950. }
  1951. /**
  1952. * 隱藏任務欄
  1953. *
  1954. * @param {element} 桌面元素
  1955. */
  1956. U.MD.D.I.hiddenTaskbarout = function (el) {
  1957. //任務欄位置變小
  1958. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1959. //任務欄位置變化
  1960. U.selectEl(el).css({ "bottom": "-60px" });
  1961. //桌面的位置變大
  1962. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1963. }
  1964. }
  1965. /**
  1966. * 初始化打印桌面圖標
  1967. *
  1968. * @param {element} 桌面元素
  1969. */
  1970. U.MD.D.I.initDesktopIcons = function (el, type) {
  1971. var i, //用於循環
  1972. _content, //桌面圖標元素
  1973. _iconcontent, //桌面圖標元素
  1974. _frag = $$("frag"), //定義一個碎片元素
  1975. _type = US.userInfo.type,
  1976. _org = US.userInfo.org,
  1977. _oid = US.userInfo.organizeid,
  1978. _role = US.userInfo.role,
  1979. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  1980. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  1981. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  1982. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  1983. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  1984. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  1985. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  1986. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1987. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1988. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1989. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  1990. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  1991. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  1992. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  1993. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  1994. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  1995. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  1996. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  1997. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  1998. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  1999. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  2000. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  2001. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  2002. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  2003. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2004. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2005. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  2006. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  2007. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  2008. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  2009. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  2010. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  2011. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2012. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2013. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2014. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2015. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2016. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2017. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2018. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2019. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2020. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  2021. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2022. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2023. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2024. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2025. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  2026. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2027. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2028. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2029. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2030. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2031. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2032. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2033. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2034. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2035. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2036. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2037. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  2038. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2039. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2040. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2041. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2042. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2043. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2044. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2045. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2046. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2047. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2048. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2049. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  2050. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  2051. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  2052. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  2053. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2054. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2055. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2056. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2057. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2058. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2059. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2060. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2061. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2062. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2063. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2064. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2065. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2066. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2067. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2068. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2069. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2070. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2071. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2072. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2073. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2074. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2075. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2076. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2077. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2078. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2079. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2080. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2081. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2082. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2083. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2084. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2085. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2086. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2087. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2088. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2089. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2090. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2091. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2092. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2093. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2094. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2095. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2096. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2097. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2098. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2099. 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','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','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926'];
  2100. 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','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2101. //清楚桌面圖標
  2102. el.innerHTML = "";
  2103. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2104. _teacherDesktopIconInfo.push(
  2105. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2106. { "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)" } },
  2107. )
  2108. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2109. }
  2110. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2111. _teacherDesktopIconInfo.push(
  2112. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2113. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2114. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2115. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2116. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2117. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2118. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2119. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2120. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2121. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2122. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2123. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2124. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2125. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2126. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2127. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2128. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2129. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2130. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2131. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2132. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2133. )
  2134. }
  2135. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  2136. _teacherDesktopIconInfo.push(
  2137. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2138. )
  2139. }
  2140. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2141. _nsfxTeacherDeskIconInfo.push(
  2142. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2143. )
  2144. }
  2145. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2146. // _teacherDesktopIconInfo.push(
  2147. // )
  2148. // }
  2149. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2150. _teacherDesktopIconInfo.push(
  2151. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2152. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2153. )
  2154. }
  2155. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2156. _teacherDesktopIconInfo.push(
  2157. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2158. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2159. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2160. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2161. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2162. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2163. )
  2164. _studentDesktopIconInfo.push(
  2165. )
  2166. }
  2167. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2168. _teacherDesktopIconInfo.push(
  2169. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2170. )
  2171. _studentDesktopIconInfo.push(
  2172. )
  2173. }
  2174. //010606 組織
  2175. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2176. _teacherDesktopIconInfo.push(
  2177. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2178. )
  2179. _studentDesktopIconInfo.push(
  2180. )
  2181. }
  2182. //麒麟二中 和 民新小學
  2183. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2184. _teacherDesktopIconInfo.push(
  2185. )
  2186. }
  2187. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2188. _teacherDesktopIconInfo.push(
  2189. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2190. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2191. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2192. )
  2193. }
  2194. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2195. _hkTeacherDeskIconInfo.push(
  2196. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2197. )
  2198. }
  2199. //北師大附中(010601)
  2200. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2201. // _teacherDesktopIconInfo.push(
  2202. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2203. // )
  2204. // _studentDesktopIconInfo.push(
  2205. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2206. // )
  2207. // }
  2208. //樂善堂余近卿中學
  2209. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2210. _teacherDesktopIconInfo.push(
  2211. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2212. )
  2213. }
  2214. // Education Artificial Intelligence
  2215. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2216. _teacherDesktopIconInfo.push(
  2217. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2218. )
  2219. }
  2220. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2221. _teacherDesktopIconInfo.push(
  2222. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2223. )
  2224. }
  2225. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2226. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2227. _teacherDesktopIconInfo.push(
  2228. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2229. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2230. )
  2231. }
  2232. //麒麟二中
  2233. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2234. _studentDesktopIconInfo.push(
  2235. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2236. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2237. )
  2238. }
  2239. //萬科雙語
  2240. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2241. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2242. if (el.Name == '項目管理') {
  2243. el.Name = 'PBL項目'
  2244. }
  2245. return el
  2246. })
  2247. _studentDesktopIconInfo3.push(
  2248. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2249. )
  2250. }
  2251. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2252. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2253. return el.Name != '魔盒識字' && el.Name != '24點'
  2254. })
  2255. }
  2256. 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) {
  2257. _studentDesktopIconInfo.push(
  2258. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2259. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2260. )
  2261. }
  2262. //循環創建桌面圖標
  2263. if (type == 1) {
  2264. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2265. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖動圖標即打開了桌面應用
  2270. U.MD.D.click(this, obj);
  2271. }, [_studentDesktopIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖動圖標即打開了桌面應用
  2274. U.MD.D.click(this, obj);
  2275. }, [_studentDesktopIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2280. }
  2281. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2282. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖動圖標即打開了桌面應用
  2287. U.MD.D.click(this, obj);
  2288. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖動圖標即打開了桌面應用
  2291. U.MD.D.click(this, obj);
  2292. }, [_hkZJLSStudentDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2297. } //
  2298. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2299. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖動圖標即打開了桌面應用
  2304. U.MD.D.click(this, obj);
  2305. }, [_ytyStudentDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖動圖標即打開了桌面應用
  2308. U.MD.D.click(this, obj);
  2309. }, [_ytyStudentDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2314. } //
  2315. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2316. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖動圖標即打開了桌面應用
  2321. U.MD.D.click(this, obj);
  2322. }, [_jccssylStudentDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖動圖標即打開了桌面應用
  2325. U.MD.D.click(this, obj);
  2326. }, [_jccssylStudentDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2333. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖動圖標即打開了桌面應用
  2338. U.MD.D.click(this, obj);
  2339. }, [_scnuaiStudentDeskIconInfo[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖動圖標即打開了桌面應用
  2342. U.MD.D.click(this, obj);
  2343. }, [_scnuaiStudentDeskIconInfo[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2348. }
  2349. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2350. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖動圖標即打開了桌面應用
  2355. U.MD.D.click(this, obj);
  2356. }, [_caleStudentDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖動圖標即打開了桌面應用
  2359. U.MD.D.click(this, obj);
  2360. }, [_caleStudentDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2367. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖動圖標即打開了桌面應用
  2372. U.MD.D.click(this, obj);
  2373. }, [_thuioeStudentDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖動圖標即打開了桌面應用
  2376. U.MD.D.click(this, obj);
  2377. }, [_thuioeStudentDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2384. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖動圖標即打開了桌面應用
  2389. U.MD.D.click(this, obj);
  2390. }, [_tpcStudentDeskIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖動圖標即打開了桌面應用
  2393. U.MD.D.click(this, obj);
  2394. }, [_tpcStudentDeskIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2399. } //
  2400. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2401. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖動圖標即打開了桌面應用
  2406. U.MD.D.click(this, obj);
  2407. }, [_chjyjStudentDeskIconInfo[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖動圖標即打開了桌面應用
  2410. U.MD.D.click(this, obj);
  2411. }, [_chjyjStudentDeskIconInfo[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2416. }
  2417. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2418. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖動圖標即打開了桌面應用
  2423. U.MD.D.click(this, obj);
  2424. }, [_szjkyStudentDeskIconInfo[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖動圖標即打開了桌面應用
  2427. U.MD.D.click(this, obj);
  2428. }, [_szjkyStudentDeskIconInfo[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2433. }
  2434. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2435. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖動圖標即打開了桌面應用
  2440. U.MD.D.click(this, obj);
  2441. }, [_x020201StudentDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖動圖標即打開了桌面應用
  2444. U.MD.D.click(this, obj);
  2445. }, [_x020201StudentDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2450. }
  2451. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2452. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖動圖標即打開了桌面應用
  2457. U.MD.D.click(this, obj);
  2458. }, [_SCNUETStudentDeskIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖動圖標即打開了桌面應用
  2461. U.MD.D.click(this, obj);
  2462. }, [_SCNUETStudentDeskIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2469. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖動圖標即打開了桌面應用
  2474. U.MD.D.click(this, obj);
  2475. }, [_dseiStudentDeskIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖動圖標即打開了桌面應用
  2478. U.MD.D.click(this, obj);
  2479. }, [_dseiStudentDeskIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2486. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖動圖標即打開了桌面應用
  2491. U.MD.D.click(this, obj);
  2492. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖動圖標即打開了桌面應用
  2495. U.MD.D.click(this, obj);
  2496. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2503. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖動圖標即打開了桌面應用
  2508. U.MD.D.click(this, obj);
  2509. }, [_nsfxStudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖動圖標即打開了桌面應用
  2512. U.MD.D.click(this, obj);
  2513. }, [_nsfxStudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2520. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖動圖標即打開了桌面應用
  2525. U.MD.D.click(this, obj);
  2526. }, [_stiaStudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖動圖標即打開了桌面應用
  2529. U.MD.D.click(this, obj);
  2530. }, [_stiaStudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2535. }
  2536. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2537. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖動圖標即打開了桌面應用
  2542. U.MD.D.click(this, obj);
  2543. }, [_szdjgStudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖動圖標即打開了桌面應用
  2546. U.MD.D.click(this, obj);
  2547. }, [_szdjgStudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2554. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖動圖標即打開了桌面應用
  2559. U.MD.D.click(this, obj);
  2560. }, [_x010607StudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖動圖標即打開了桌面應用
  2563. U.MD.D.click(this, obj);
  2564. }, [_x010607StudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2571. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖動圖標即打開了桌面應用
  2576. U.MD.D.click(this, obj);
  2577. }, [_xhlyStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖動圖標即打開了桌面應用
  2580. U.MD.D.click(this, obj);
  2581. }, [_xhlyStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2588. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖動圖標即打開了桌面應用
  2593. U.MD.D.click(this, obj);
  2594. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖動圖標即打開了桌面應用
  2597. U.MD.D.click(this, obj);
  2598. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2605. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖動圖標即打開了桌面應用
  2610. U.MD.D.click(this, obj);
  2611. }, [_x010503StudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖動圖標即打開了桌面應用
  2614. U.MD.D.click(this, obj);
  2615. }, [_x010503StudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2620. }
  2621. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2622. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖動圖標即打開了桌面應用
  2627. U.MD.D.click(this, obj);
  2628. }, [_x010504StudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖動圖標即打開了桌面應用
  2631. U.MD.D.click(this, obj);
  2632. }, [_x010504StudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2639. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖動圖標即打開了桌面應用
  2644. U.MD.D.click(this, obj);
  2645. }, [_x010404StudentDeskIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖動圖標即打開了桌面應用
  2648. U.MD.D.click(this, obj);
  2649. }, [_x010404StudentDeskIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2656. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖動圖標即打開了桌面應用
  2661. U.MD.D.click(this, obj);
  2662. }, [_x010204StudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖動圖標即打開了桌面應用
  2665. U.MD.D.click(this, obj);
  2666. }, [_x010204StudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2673. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖動圖標即打開了桌面應用
  2678. U.MD.D.click(this, obj);
  2679. }, [_x320101StudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖動圖標即打開了桌面應用
  2682. U.MD.D.click(this, obj);
  2683. }, [_x320101StudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2690. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖動圖標即打開了桌面應用
  2695. U.MD.D.click(this, obj);
  2696. }, [_trailStudentDeskIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖動圖標即打開了桌面應用
  2699. U.MD.D.click(this, obj);
  2700. }, [_trailStudentDeskIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2707. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖動圖標即打開了桌面應用
  2712. U.MD.D.click(this, obj);
  2713. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖動圖標即打開了桌面應用
  2716. U.MD.D.click(this, obj);
  2717. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2724. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖動圖標即打開了桌面應用
  2729. U.MD.D.click(this, obj);
  2730. }, [_szsyStudentDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖動圖標即打開了桌面應用
  2733. U.MD.D.click(this, obj);
  2734. }, [_szsyStudentDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2741. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖動圖標即打開了桌面應用
  2746. U.MD.D.click(this, obj);
  2747. }, [_x010608StudentDeskIconInfo[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖動圖標即打開了桌面應用
  2750. U.MD.D.click(this, obj);
  2751. }, [_x010608StudentDeskIconInfo[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2756. }
  2757. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2758. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2759. _content = $$("div", {
  2760. className: "U_MD_D_KO",
  2761. "onmousedown": U.UF.C.closure(function (obj) {
  2762. //防止拖動圖標即打開了桌面應用
  2763. U.MD.D.click(this, obj);
  2764. }, [_x010611StudentDeskIconInfo[i]]),
  2765. "onclick": U.UF.C.closure(function (obj) {
  2766. //防止拖動圖標即打開了桌面應用
  2767. U.MD.D.click(this, obj);
  2768. }, [_x010611StudentDeskIconInfo[i]])
  2769. }, _frag); //
  2770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2773. }
  2774. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2775. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2776. _content = $$("div", {
  2777. className: "U_MD_D_KO",
  2778. "onmousedown": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_x010612StudentDeskIconInfo[i]]),
  2782. "onclick": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_x010612StudentDeskIconInfo[i]])
  2786. }, _frag); //
  2787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2790. }
  2791. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2792. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖動圖標即打開了桌面應用
  2797. U.MD.D.click(this, obj);
  2798. }, [_tianyuantudentDeskIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖動圖標即打開了桌面應用
  2801. U.MD.D.click(this, obj);
  2802. }, [_tianyuantudentDeskIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2809. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2810. _content = $$("div", {
  2811. className: "U_MD_D_KO",
  2812. "onmousedown": U.UF.C.closure(function (obj) {
  2813. //防止拖動圖標即打開了桌面應用
  2814. U.MD.D.click(this, obj);
  2815. }, [_siesStudentDeskIconInfo[i]]),
  2816. "onclick": U.UF.C.closure(function (obj) {
  2817. //防止拖動圖標即打開了桌面應用
  2818. U.MD.D.click(this, obj);
  2819. }, [_siesStudentDeskIconInfo[i]])
  2820. }, _frag); //
  2821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2824. }
  2825. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2826. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2827. _content = $$("div", {
  2828. className: "U_MD_D_KO",
  2829. "onmousedown": U.UF.C.closure(function (obj) {
  2830. //防止拖動圖標即打開了桌面應用
  2831. U.MD.D.click(this, obj);
  2832. }, [_guzmsStudentDeskIconInfo[i]]),
  2833. "onclick": U.UF.C.closure(function (obj) {
  2834. //防止拖動圖標即打開了桌面應用
  2835. U.MD.D.click(this, obj);
  2836. }, [_guzmsStudentDeskIconInfo[i]])
  2837. }, _frag); //
  2838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2841. }
  2842. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2843. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2844. _content = $$("div", {
  2845. className: "U_MD_D_KO",
  2846. "onmousedown": U.UF.C.closure(function (obj) {
  2847. //防止拖動圖標即打開了桌面應用
  2848. U.MD.D.click(this, obj);
  2849. }, [_hkStudentDeskIconInfo[i]]),
  2850. "onclick": U.UF.C.closure(function (obj) {
  2851. //防止拖動圖標即打開了桌面應用
  2852. U.MD.D.click(this, obj);
  2853. }, [_hkStudentDeskIconInfo[i]])
  2854. }, _frag); //
  2855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2858. }
  2859. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2860. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  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. }, [_hkaceStudentDeskIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖動圖標即打開了桌面應用
  2869. U.MD.D.click(this, obj);
  2870. }, [_hkaceStudentDeskIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2877. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2878. _content = $$("div", {
  2879. className: "U_MD_D_KO",
  2880. "onmousedown": U.UF.C.closure(function (obj) {
  2881. //防止拖動圖標即打開了桌面應用
  2882. U.MD.D.click(this, obj);
  2883. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖動圖標即打開了桌面應用
  2886. U.MD.D.click(this, obj);
  2887. }, [_BSDNSstudentDesktopIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2894. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2895. _content = $$("div", {
  2896. className: "U_MD_D_KO",
  2897. "onmousedown": U.UF.C.closure(function (obj) {
  2898. //防止拖動圖標即打開了桌面應用
  2899. U.MD.D.click(this, obj);
  2900. }, [_cocobizStudentDeskIconInfo[i]]),
  2901. "onclick": U.UF.C.closure(function (obj) {
  2902. //防止拖動圖標即打開了桌面應用
  2903. U.MD.D.click(this, obj);
  2904. }, [_cocobizStudentDeskIconInfo[i]])
  2905. }, _frag); //
  2906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2909. }
  2910. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2911. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2912. _content = $$("div", {
  2913. className: "U_MD_D_KO",
  2914. "onmousedown": U.UF.C.closure(function (obj) {
  2915. //防止拖動圖標即打開了桌面應用
  2916. U.MD.D.click(this, obj);
  2917. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2918. "onclick": U.UF.C.closure(function (obj) {
  2919. //防止拖動圖標即打開了桌面應用
  2920. U.MD.D.click(this, obj);
  2921. }, [_xxzjkyStudentDeskIconInfo[i]])
  2922. }, _frag); //
  2923. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2924. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2925. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2926. }
  2927. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2928. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2929. _content = $$("div", {
  2930. className: "U_MD_D_KO",
  2931. "onmousedown": U.UF.C.closure(function (obj) {
  2932. //防止拖動圖標即打開了桌面應用
  2933. U.MD.D.click(this, obj);
  2934. }, [_studentDesktopIconInfo[i]]),
  2935. "onclick": U.UF.C.closure(function (obj) {
  2936. //防止拖動圖標即打開了桌面應用
  2937. U.MD.D.click(this, obj);
  2938. }, [_studentDesktopIconInfo[i]])
  2939. }, _frag); //
  2940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2943. }
  2944. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2945. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2946. _content = $$("div", {
  2947. className: "U_MD_D_KO",
  2948. "onmousedown": U.UF.C.closure(function (obj) {
  2949. //防止拖動圖標即打開了桌面應用
  2950. U.MD.D.click(this, obj);
  2951. }, [_tcStudentDeskIconInfo[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖動圖標即打開了桌面應用
  2954. U.MD.D.click(this, obj);
  2955. }, [_tcStudentDeskIconInfo[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2960. }
  2961. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2962. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2963. _content = $$("div", {
  2964. className: "U_MD_D_KO",
  2965. "onmousedown": U.UF.C.closure(function (obj) {
  2966. //防止拖動圖標即打開了桌面應用
  2967. U.MD.D.click(this, obj);
  2968. }, [_szscStudentDeskIconInfo[i]]),
  2969. "onclick": U.UF.C.closure(function (obj) {
  2970. //防止拖動圖標即打開了桌面應用
  2971. U.MD.D.click(this, obj);
  2972. }, [_szscStudentDeskIconInfo[i]])
  2973. }, _frag); //
  2974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2977. }
  2978. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2979. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2980. _content = $$("div", {
  2981. className: "U_MD_D_KO",
  2982. "onmousedown": U.UF.C.closure(function (obj) {
  2983. //防止拖動圖標即打開了桌面應用
  2984. U.MD.D.click(this, obj);
  2985. }, [_studentDesktopIconInfo3[i]]),
  2986. "onclick": U.UF.C.closure(function (obj) {
  2987. //防止拖動圖標即打開了桌面應用
  2988. U.MD.D.click(this, obj);
  2989. }, [_studentDesktopIconInfo3[i]])
  2990. }, _frag); //
  2991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2994. }
  2995. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2996. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2997. _content = $$("div", {
  2998. className: "U_MD_D_KO",
  2999. "onmousedown": U.UF.C.closure(function (obj) {
  3000. //防止拖動圖標即打開了桌面應用
  3001. U.MD.D.click(this, obj);
  3002. }, [_studentDesktopIconInfo2[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖動圖標即打開了桌面應用
  3005. U.MD.D.click(this, obj);
  3006. }, [_studentDesktopIconInfo2[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3011. }
  3012. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3013. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3014. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3015. continue
  3016. }
  3017. _content = $$("div", {
  3018. className: "U_MD_D_KO",
  3019. "onmousedown": U.UF.C.closure(function (obj) {
  3020. //防止拖動圖標即打開了桌面應用
  3021. U.MD.D.click(this, obj);
  3022. }, [_wanketeacherDesktopIconInfo[i]]),
  3023. "onclick": U.UF.C.closure(function (obj) {
  3024. //防止拖動圖標即打開了桌面應用
  3025. U.MD.D.click(this, obj);
  3026. }, [_wanketeacherDesktopIconInfo[i]])
  3027. }, _frag); //
  3028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3031. }
  3032. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3033. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3034. _content = $$("div", {
  3035. className: "U_MD_D_KO",
  3036. "onmousedown": U.UF.C.closure(function (obj) {
  3037. //防止拖動圖標即打開了桌面應用
  3038. U.MD.D.click(this, obj);
  3039. }, [_wankeAdminDesktopIconInfo[i]]),
  3040. "onclick": U.UF.C.closure(function (obj) {
  3041. //防止拖動圖標即打開了桌面應用
  3042. U.MD.D.click(this, obj);
  3043. }, [_wankeAdminDesktopIconInfo[i]])
  3044. }, _frag); //
  3045. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3046. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3047. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3048. }
  3049. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3050. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3051. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3052. continue
  3053. }
  3054. _content = $$("div", {
  3055. className: "U_MD_D_KO",
  3056. "onmousedown": U.UF.C.closure(function (obj) {
  3057. //防止拖動圖標即打開了桌面應用
  3058. U.MD.D.click(this, obj);
  3059. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3060. "onclick": U.UF.C.closure(function (obj) {
  3061. //防止拖動圖標即打開了桌面應用
  3062. U.MD.D.click(this, obj);
  3063. }, [_scnuaiTeacherDeskIconInfo[i]])
  3064. }, _frag); //
  3065. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3066. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3067. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3068. }
  3069. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3070. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3071. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3072. continue
  3073. }
  3074. _content = $$("div", {
  3075. className: "U_MD_D_KO",
  3076. "onmousedown": U.UF.C.closure(function (obj) {
  3077. //防止拖動圖標即打開了桌面應用
  3078. U.MD.D.click(this, obj);
  3079. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3080. "onclick": U.UF.C.closure(function (obj) {
  3081. //防止拖動圖標即打開了桌面應用
  3082. U.MD.D.click(this, obj);
  3083. }, [_BSDNSteacherDesktopIconInfo[i]])
  3084. }, _frag); //
  3085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3088. }
  3089. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3090. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3091. _content = $$("div", {
  3092. className: "U_MD_D_KO",
  3093. "onmousedown": U.UF.C.closure(function (obj) {
  3094. //防止拖動圖標即打開了桌面應用
  3095. U.MD.D.click(this, obj);
  3096. }, [_scnuaiAdminDeskIconInfo[i]]),
  3097. "onclick": U.UF.C.closure(function (obj) {
  3098. //防止拖動圖標即打開了桌面應用
  3099. U.MD.D.click(this, obj);
  3100. }, [_scnuaiAdminDeskIconInfo[i]])
  3101. }, _frag); //
  3102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3105. }
  3106. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3107. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3108. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3109. continue
  3110. }
  3111. _content = $$("div", {
  3112. className: "U_MD_D_KO",
  3113. "onmousedown": U.UF.C.closure(function (obj) {
  3114. //防止拖動圖標即打開了桌面應用
  3115. U.MD.D.click(this, obj);
  3116. }, [_jccssylTeacherDeskIconInfo[i]]),
  3117. "onclick": U.UF.C.closure(function (obj) {
  3118. //防止拖動圖標即打開了桌面應用
  3119. U.MD.D.click(this, obj);
  3120. }, [_jccssylTeacherDeskIconInfo[i]])
  3121. }, _frag); //
  3122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3125. }
  3126. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3127. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3128. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3129. continue
  3130. }
  3131. _content = $$("div", {
  3132. className: "U_MD_D_KO",
  3133. "onmousedown": U.UF.C.closure(function (obj) {
  3134. //防止拖動圖標即打開了桌面應用
  3135. U.MD.D.click(this, obj);
  3136. }, [_caleTeacherDeskIconInfo[i]]),
  3137. "onclick": U.UF.C.closure(function (obj) {
  3138. //防止拖動圖標即打開了桌面應用
  3139. U.MD.D.click(this, obj);
  3140. }, [_caleTeacherDeskIconInfo[i]])
  3141. }, _frag); //
  3142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3145. }
  3146. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3147. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3148. _content = $$("div", {
  3149. className: "U_MD_D_KO",
  3150. "onmousedown": U.UF.C.closure(function (obj) {
  3151. //防止拖動圖標即打開了桌面應用
  3152. U.MD.D.click(this, obj);
  3153. }, [_tpcOrganizerDeskIconInfo[i]]),
  3154. "onclick": U.UF.C.closure(function (obj) {
  3155. //防止拖動圖標即打開了桌面應用
  3156. U.MD.D.click(this, obj);
  3157. }, [_tpcOrganizerDeskIconInfo[i]])
  3158. }, _frag); //
  3159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3162. }
  3163. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3164. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3165. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3166. continue
  3167. }
  3168. _content = $$("div", {
  3169. className: "U_MD_D_KO",
  3170. "onmousedown": U.UF.C.closure(function (obj) {
  3171. //防止拖動圖標即打開了桌面應用
  3172. U.MD.D.click(this, obj);
  3173. }, [_tpcTeacherDeskIconInfo[i]]),
  3174. "onclick": U.UF.C.closure(function (obj) {
  3175. //防止拖動圖標即打開了桌面應用
  3176. U.MD.D.click(this, obj);
  3177. }, [_tpcTeacherDeskIconInfo[i]])
  3178. }, _frag); //
  3179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3182. }
  3183. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3184. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3185. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3186. continue
  3187. }
  3188. _content = $$("div", {
  3189. className: "U_MD_D_KO",
  3190. "onmousedown": U.UF.C.closure(function (obj) {
  3191. //防止拖動圖標即打開了桌面應用
  3192. U.MD.D.click(this, obj);
  3193. }, [_teacherDesktopIconInfo2[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖動圖標即打開了桌面應用
  3196. U.MD.D.click(this, obj);
  3197. }, [_teacherDesktopIconInfo2[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3202. }
  3203. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3204. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3205. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3206. continue
  3207. }
  3208. _content = $$("div", {
  3209. className: "U_MD_D_KO",
  3210. "onmousedown": U.UF.C.closure(function (obj) {
  3211. //防止拖動圖標即打開了桌面應用
  3212. U.MD.D.click(this, obj);
  3213. }, [_thuioeTeacherDeskIconInfo[i]]),
  3214. "onclick": U.UF.C.closure(function (obj) {
  3215. //防止拖動圖標即打開了桌面應用
  3216. U.MD.D.click(this, obj);
  3217. }, [_thuioeTeacherDeskIconInfo[i]])
  3218. }, _frag); //
  3219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3222. }
  3223. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3224. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3225. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3226. continue
  3227. }
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖動圖標即打開了桌面應用
  3232. U.MD.D.click(this, obj);
  3233. }, [_lotechTeacherDeskIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖動圖標即打開了桌面應用
  3236. U.MD.D.click(this, obj);
  3237. }, [_lotechTeacherDeskIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3242. }//
  3243. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3244. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3245. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖動圖標即打開了桌面應用
  3252. U.MD.D.click(this, obj);
  3253. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖動圖標即打開了桌面應用
  3256. U.MD.D.click(this, obj);
  3257. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3262. }
  3263. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3264. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3265. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖動圖標即打開了桌面應用
  3272. U.MD.D.click(this, obj);
  3273. }, [_siesTeacherDeskIconInfo[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖動圖標即打開了桌面應用
  3276. U.MD.D.click(this, obj);
  3277. }, [_siesTeacherDeskIconInfo[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3282. }
  3283. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3284. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3285. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3286. continue
  3287. }
  3288. _content = $$("div", {
  3289. className: "U_MD_D_KO",
  3290. "onmousedown": U.UF.C.closure(function (obj) {
  3291. //防止拖動圖標即打開了桌面應用
  3292. U.MD.D.click(this, obj);
  3293. }, [_guzmsTeacherDeskIconInfo[i]]),
  3294. "onclick": U.UF.C.closure(function (obj) {
  3295. //防止拖動圖標即打開了桌面應用
  3296. U.MD.D.click(this, obj);
  3297. }, [_guzmsTeacherDeskIconInfo[i]])
  3298. }, _frag); //
  3299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3302. }
  3303. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3304. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3305. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3306. continue
  3307. }
  3308. _content = $$("div", {
  3309. className: "U_MD_D_KO",
  3310. "onmousedown": U.UF.C.closure(function (obj) {
  3311. //防止拖動圖標即打開了桌面應用
  3312. U.MD.D.click(this, obj);
  3313. }, [_longhuaTeacherDeskIconInfo[i]]),
  3314. "onclick": U.UF.C.closure(function (obj) {
  3315. //防止拖動圖標即打開了桌面應用
  3316. U.MD.D.click(this, obj);
  3317. }, [_longhuaTeacherDeskIconInfo[i]])
  3318. }, _frag); //
  3319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3322. }
  3323. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3324. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3325. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3326. continue
  3327. }
  3328. _content = $$("div", {
  3329. className: "U_MD_D_KO",
  3330. "onmousedown": U.UF.C.closure(function (obj) {
  3331. //防止拖動圖標即打開了桌面應用
  3332. U.MD.D.click(this, obj);
  3333. }, [_ytyTeacherDeskIconInfo[i]]),
  3334. "onclick": U.UF.C.closure(function (obj) {
  3335. //防止拖動圖標即打開了桌面應用
  3336. U.MD.D.click(this, obj);
  3337. }, [_ytyTeacherDeskIconInfo[i]])
  3338. }, _frag); //
  3339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3342. }
  3343. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3344. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3345. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3346. continue
  3347. }
  3348. _content = $$("div", {
  3349. className: "U_MD_D_KO",
  3350. "onmousedown": U.UF.C.closure(function (obj) {
  3351. //防止拖動圖標即打開了桌面應用
  3352. U.MD.D.click(this, obj);
  3353. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3354. "onclick": U.UF.C.closure(function (obj) {
  3355. //防止拖動圖標即打開了桌面應用
  3356. U.MD.D.click(this, obj);
  3357. }, [_yunhaiTeacherDeskIconInfo[i]])
  3358. }, _frag); //
  3359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3362. } //_hkStudentDeskIconInfo
  3363. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3364. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3365. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3366. continue
  3367. }
  3368. _content = $$("div", {
  3369. className: "U_MD_D_KO",
  3370. "onmousedown": U.UF.C.closure(function (obj) {
  3371. //防止拖動圖標即打開了桌面應用
  3372. U.MD.D.click(this, obj);
  3373. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3374. "onclick": U.UF.C.closure(function (obj) {
  3375. //防止拖動圖標即打開了桌面應用
  3376. U.MD.D.click(this, obj);
  3377. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3378. }, _frag); //
  3379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3382. }
  3383. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3384. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3385. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3386. continue
  3387. }
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖動圖標即打開了桌面應用
  3392. U.MD.D.click(this, obj);
  3393. }, [_ricohTeacherDeskIconInfo[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖動圖標即打開了桌面應用
  3396. U.MD.D.click(this, obj);
  3397. }, [_ricohTeacherDeskIconInfo[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3402. }
  3403. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3404. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3405. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3406. continue
  3407. }
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖動圖標即打開了桌面應用
  3412. U.MD.D.click(this, obj);
  3413. }, [_hkTeacherDeskIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖動圖標即打開了桌面應用
  3416. U.MD.D.click(this, obj);
  3417. }, [_hkTeacherDeskIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3424. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3425. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3426. continue
  3427. }
  3428. _content = $$("div", {
  3429. className: "U_MD_D_KO",
  3430. "onmousedown": U.UF.C.closure(function (obj) {
  3431. //防止拖動圖標即打開了桌面應用
  3432. U.MD.D.click(this, obj);
  3433. }, [_hkaceTeacherDeskIconInfo[i]]),
  3434. "onclick": U.UF.C.closure(function (obj) {
  3435. //防止拖動圖標即打開了桌面應用
  3436. U.MD.D.click(this, obj);
  3437. }, [_hkaceTeacherDeskIconInfo[i]])
  3438. }, _frag); //
  3439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3442. }
  3443. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3444. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3445. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3446. continue
  3447. }
  3448. _content = $$("div", {
  3449. className: "U_MD_D_KO",
  3450. "onmousedown": U.UF.C.closure(function (obj) {
  3451. //防止拖動圖標即打開了桌面應用
  3452. U.MD.D.click(this, obj);
  3453. }, [_cocobizTeacherDeskIconInfo[i]]),
  3454. "onclick": U.UF.C.closure(function (obj) {
  3455. //防止拖動圖標即打開了桌面應用
  3456. U.MD.D.click(this, obj);
  3457. }, [_cocobizTeacherDeskIconInfo[i]])
  3458. }, _frag); //
  3459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3462. }
  3463. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3464. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3465. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3466. continue
  3467. }
  3468. _content = $$("div", {
  3469. className: "U_MD_D_KO",
  3470. "onmousedown": U.UF.C.closure(function (obj) {
  3471. //防止拖動圖標即打開了桌面應用
  3472. U.MD.D.click(this, obj);
  3473. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3474. "onclick": U.UF.C.closure(function (obj) {
  3475. //防止拖動圖標即打開了桌面應用
  3476. U.MD.D.click(this, obj);
  3477. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3478. }, _frag); //
  3479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3482. }
  3483. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3484. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3485. _content = $$("div", {
  3486. className: "U_MD_D_KO",
  3487. "onmousedown": U.UF.C.closure(function (obj) {
  3488. //防止拖動圖標即打開了桌面應用
  3489. U.MD.D.click(this, obj);
  3490. }, [_gdjgAdminDeskIconInfo[i]]),
  3491. "onclick": U.UF.C.closure(function (obj) {
  3492. //防止拖動圖標即打開了桌面應用
  3493. U.MD.D.click(this, obj);
  3494. }, [_gdjgAdminDeskIconInfo[i]])
  3495. }, _frag); //
  3496. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3497. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3498. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3499. }
  3500. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3501. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3502. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3503. continue
  3504. }
  3505. _content = $$("div", {
  3506. className: "U_MD_D_KO",
  3507. "onmousedown": U.UF.C.closure(function (obj) {
  3508. //防止拖動圖標即打開了桌面應用
  3509. U.MD.D.click(this, obj);
  3510. }, [_gdjgTeacherDeskIconInfo[i]]),
  3511. "onclick": U.UF.C.closure(function (obj) {
  3512. //防止拖動圖標即打開了桌面應用
  3513. U.MD.D.click(this, obj);
  3514. }, [_gdjgTeacherDeskIconInfo[i]])
  3515. }, _frag); //
  3516. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3517. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3518. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3519. }
  3520. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3521. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3522. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3523. continue
  3524. }
  3525. _content = $$("div", {
  3526. className: "U_MD_D_KO",
  3527. "onmousedown": U.UF.C.closure(function (obj) {
  3528. //防止拖動圖標即打開了桌面應用
  3529. U.MD.D.click(this, obj);
  3530. }, [_szherTeacherDeskIconInfo[i]]),
  3531. "onclick": U.UF.C.closure(function (obj) {
  3532. //防止拖動圖標即打開了桌面應用
  3533. U.MD.D.click(this, obj);
  3534. }, [_szherTeacherDeskIconInfo[i]])
  3535. }, _frag); //
  3536. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3537. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3538. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3539. }
  3540. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3541. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3542. _content = $$("div", {
  3543. className: "U_MD_D_KO",
  3544. "onmousedown": U.UF.C.closure(function (obj) {
  3545. //防止拖動圖標即打開了桌面應用
  3546. U.MD.D.click(this, obj);
  3547. }, [_heyuannAdminDeskIconInfo[i]]),
  3548. "onclick": U.UF.C.closure(function (obj) {
  3549. //防止拖動圖標即打開了桌面應用
  3550. U.MD.D.click(this, obj);
  3551. }, [_heyuannAdminDeskIconInfo[i]])
  3552. }, _frag); //
  3553. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3554. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3555. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3556. }
  3557. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3558. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3559. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3560. continue
  3561. }
  3562. _content = $$("div", {
  3563. className: "U_MD_D_KO",
  3564. "onmousedown": U.UF.C.closure(function (obj) {
  3565. //防止拖動圖標即打開了桌面應用
  3566. U.MD.D.click(this, obj);
  3567. }, [_heyuanTeacherDeskIconInfo[i]]),
  3568. "onclick": U.UF.C.closure(function (obj) {
  3569. //防止拖動圖標即打開了桌面應用
  3570. U.MD.D.click(this, obj);
  3571. }, [_heyuanTeacherDeskIconInfo[i]])
  3572. }, _frag); //
  3573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3576. } //
  3577. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3578. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3579. _content = $$("div", {
  3580. className: "U_MD_D_KO",
  3581. "onmousedown": U.UF.C.closure(function (obj) {
  3582. //防止拖動圖標即打開了桌面應用
  3583. U.MD.D.click(this, obj);
  3584. }, [_dseiAdminDeskIconInfo[i]]),
  3585. "onclick": U.UF.C.closure(function (obj) {
  3586. //防止拖動圖標即打開了桌面應用
  3587. U.MD.D.click(this, obj);
  3588. }, [_dseiAdminDeskIconInfo[i]])
  3589. }, _frag); //
  3590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3593. }
  3594. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3595. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3596. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3597. continue
  3598. }
  3599. _content = $$("div", {
  3600. className: "U_MD_D_KO",
  3601. "onmousedown": U.UF.C.closure(function (obj) {
  3602. //防止拖動圖標即打開了桌面應用
  3603. U.MD.D.click(this, obj);
  3604. }, [_dseiTeacherDeskIconInfo[i]]),
  3605. "onclick": U.UF.C.closure(function (obj) {
  3606. //防止拖動圖標即打開了桌面應用
  3607. U.MD.D.click(this, obj);
  3608. }, [_dseiTeacherDeskIconInfo[i]])
  3609. }, _frag); //
  3610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3613. } //
  3614. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3615. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3616. _content = $$("div", {
  3617. className: "U_MD_D_KO",
  3618. "onmousedown": U.UF.C.closure(function (obj) {
  3619. //防止拖動圖標即打開了桌面應用
  3620. U.MD.D.click(this, obj);
  3621. }, [_chjyjAdminDeskIconInfo[i]]),
  3622. "onclick": U.UF.C.closure(function (obj) {
  3623. //防止拖動圖標即打開了桌面應用
  3624. U.MD.D.click(this, obj);
  3625. }, [_chjyjAdminDeskIconInfo[i]])
  3626. }, _frag); //
  3627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3630. }//
  3631. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3632. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3633. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3634. continue
  3635. }
  3636. _content = $$("div", {
  3637. className: "U_MD_D_KO",
  3638. "onmousedown": U.UF.C.closure(function (obj) {
  3639. //防止拖動圖標即打開了桌面應用
  3640. U.MD.D.click(this, obj);
  3641. }, [_chjyjTeacherDeskIconInfo[i]]),
  3642. "onclick": U.UF.C.closure(function (obj) {
  3643. //防止拖動圖標即打開了桌面應用
  3644. U.MD.D.click(this, obj);
  3645. }, [_chjyjTeacherDeskIconInfo[i]])
  3646. }, _frag); //
  3647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3650. }
  3651. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3652. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3653. _content = $$("div", {
  3654. className: "U_MD_D_KO",
  3655. "onmousedown": U.UF.C.closure(function (obj) {
  3656. //防止拖動圖標即打開了桌面應用
  3657. U.MD.D.click(this, obj);
  3658. }, [_szjkyAdminDeskIconInfo[i]]),
  3659. "onclick": U.UF.C.closure(function (obj) {
  3660. //防止拖動圖標即打開了桌面應用
  3661. U.MD.D.click(this, obj);
  3662. }, [_szjkyAdminDeskIconInfo[i]])
  3663. }, _frag); //
  3664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3667. }//
  3668. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3669. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3670. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3671. continue
  3672. }
  3673. _content = $$("div", {
  3674. className: "U_MD_D_KO",
  3675. "onmousedown": U.UF.C.closure(function (obj) {
  3676. //防止拖動圖標即打開了桌面應用
  3677. U.MD.D.click(this, obj);
  3678. }, [_szjkyTeacherDeskIconInfo[i]]),
  3679. "onclick": U.UF.C.closure(function (obj) {
  3680. //防止拖動圖標即打開了桌面應用
  3681. U.MD.D.click(this, obj);
  3682. }, [_szjkyTeacherDeskIconInfo[i]])
  3683. }, _frag); //
  3684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3687. }
  3688. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3689. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3690. _content = $$("div", {
  3691. className: "U_MD_D_KO",
  3692. "onmousedown": U.UF.C.closure(function (obj) {
  3693. //防止拖動圖標即打開了桌面應用
  3694. U.MD.D.click(this, obj);
  3695. }, [_x020201AdminDeskIconInfo[i]]),
  3696. "onclick": U.UF.C.closure(function (obj) {
  3697. //防止拖動圖標即打開了桌面應用
  3698. U.MD.D.click(this, obj);
  3699. }, [_x020201AdminDeskIconInfo[i]])
  3700. }, _frag); //
  3701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3704. }//
  3705. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3706. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3707. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3708. continue
  3709. }
  3710. _content = $$("div", {
  3711. className: "U_MD_D_KO",
  3712. "onmousedown": U.UF.C.closure(function (obj) {
  3713. //防止拖動圖標即打開了桌面應用
  3714. U.MD.D.click(this, obj);
  3715. }, [_x020201TeacherDeskIconInfo[i]]),
  3716. "onclick": U.UF.C.closure(function (obj) {
  3717. //防止拖動圖標即打開了桌面應用
  3718. U.MD.D.click(this, obj);
  3719. }, [_x020201TeacherDeskIconInfo[i]])
  3720. }, _frag); //
  3721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3724. }
  3725. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3726. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3727. _content = $$("div", {
  3728. className: "U_MD_D_KO",
  3729. "onmousedown": U.UF.C.closure(function (obj) {
  3730. //防止拖動圖標即打開了桌面應用
  3731. U.MD.D.click(this, obj);
  3732. }, [_SCNUETAdminDeskIconInfo[i]]),
  3733. "onclick": U.UF.C.closure(function (obj) {
  3734. //防止拖動圖標即打開了桌面應用
  3735. U.MD.D.click(this, obj);
  3736. }, [_SCNUETAdminDeskIconInfo[i]])
  3737. }, _frag); //
  3738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3741. }//
  3742. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3743. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3744. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3745. continue
  3746. }
  3747. _content = $$("div", {
  3748. className: "U_MD_D_KO",
  3749. "onmousedown": U.UF.C.closure(function (obj) {
  3750. //防止拖動圖標即打開了桌面應用
  3751. U.MD.D.click(this, obj);
  3752. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3753. "onclick": U.UF.C.closure(function (obj) {
  3754. //防止拖動圖標即打開了桌面應用
  3755. U.MD.D.click(this, obj);
  3756. }, [_SCNUETTeacherDeskIconInfo[i]])
  3757. }, _frag); //
  3758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3761. }
  3762. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3763. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3764. _content = $$("div", {
  3765. className: "U_MD_D_KO",
  3766. "onmousedown": U.UF.C.closure(function (obj) {
  3767. //防止拖動圖標即打開了桌面應用
  3768. U.MD.D.click(this, obj);
  3769. }, [_futianAdminDeskIconInfo[i]]),
  3770. "onclick": U.UF.C.closure(function (obj) {
  3771. //防止拖動圖標即打開了桌面應用
  3772. U.MD.D.click(this, obj);
  3773. }, [_futianAdminDeskIconInfo[i]])
  3774. }, _frag); //
  3775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3778. }
  3779. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3780. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3781. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3782. continue
  3783. }
  3784. _content = $$("div", {
  3785. className: "U_MD_D_KO",
  3786. "onmousedown": U.UF.C.closure(function (obj) {
  3787. //防止拖動圖標即打開了桌面應用
  3788. U.MD.D.click(this, obj);
  3789. }, [_futianTeacherDeskIconInfo[i]]),
  3790. "onclick": U.UF.C.closure(function (obj) {
  3791. //防止拖動圖標即打開了桌面應用
  3792. U.MD.D.click(this, obj);
  3793. }, [_futianTeacherDeskIconInfo[i]])
  3794. }, _frag); //
  3795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3798. }
  3799. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3800. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3801. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3802. continue
  3803. }
  3804. _content = $$("div", {
  3805. className: "U_MD_D_KO",
  3806. "onmousedown": U.UF.C.closure(function (obj) {
  3807. //防止拖動圖標即打開了桌面應用
  3808. U.MD.D.click(this, obj);
  3809. }, [_MingdeTeacherDeskIcon[i]]),
  3810. "onclick": U.UF.C.closure(function (obj) {
  3811. //防止拖動圖標即打開了桌面應用
  3812. U.MD.D.click(this, obj);
  3813. }, [_MingdeTeacherDeskIcon[i]])
  3814. }, _frag); //
  3815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3818. }
  3819. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3820. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3821. _content = $$("div", {
  3822. className: "U_MD_D_KO",
  3823. "onmousedown": U.UF.C.closure(function (obj) {
  3824. //防止拖動圖標即打開了桌面應用
  3825. U.MD.D.click(this, obj);
  3826. }, [_lhsAdminDesktopIconInfo[i]]),
  3827. "onclick": U.UF.C.closure(function (obj) {
  3828. //防止拖動圖標即打開了桌面應用
  3829. U.MD.D.click(this, obj);
  3830. }, [_lhsAdminDesktopIconInfo[i]])
  3831. }, _frag); //
  3832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3835. }
  3836. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3837. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3838. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3839. continue
  3840. }
  3841. _content = $$("div", {
  3842. className: "U_MD_D_KO",
  3843. "onmousedown": U.UF.C.closure(function (obj) {
  3844. //防止拖動圖標即打開了桌面應用
  3845. U.MD.D.click(this, obj);
  3846. }, [_lhsteacherDesktopIconInfo[i]]),
  3847. "onclick": U.UF.C.closure(function (obj) {
  3848. //防止拖動圖標即打開了桌面應用
  3849. U.MD.D.click(this, obj);
  3850. }, [_lhsteacherDesktopIconInfo[i]])
  3851. }, _frag); //
  3852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3855. }
  3856. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3857. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3858. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3859. continue
  3860. }
  3861. _content = $$("div", {
  3862. className: "U_MD_D_KO",
  3863. "onmousedown": U.UF.C.closure(function (obj) {
  3864. //防止拖動圖標即打開了桌面應用
  3865. U.MD.D.click(this, obj);
  3866. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3867. "onclick": U.UF.C.closure(function (obj) {
  3868. //防止拖動圖標即打開了桌面應用
  3869. U.MD.D.click(this, obj);
  3870. }, [_zhoujiateacherDesktopIconInfo[i]])
  3871. }, _frag); //
  3872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3875. }
  3876. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3877. for (i = 0; i < _hanDeskIcon.length; i++) {
  3878. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3879. continue
  3880. }
  3881. _content = $$("div", {
  3882. className: "U_MD_D_KO",
  3883. "onmousedown": U.UF.C.closure(function (obj) {
  3884. //防止拖動圖標即打開了桌面應用
  3885. U.MD.D.click(this, obj);
  3886. }, [_hanDeskIcon[i]]),
  3887. "onclick": U.UF.C.closure(function (obj) {
  3888. //防止拖動圖標即打開了桌面應用
  3889. U.MD.D.click(this, obj);
  3890. }, [_hanDeskIcon[i]])
  3891. }, _frag); //
  3892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3895. }
  3896. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3897. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3898. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3899. continue
  3900. }
  3901. _content = $$("div", {
  3902. className: "U_MD_D_KO",
  3903. "onmousedown": U.UF.C.closure(function (obj) {
  3904. //防止拖動圖標即打開了桌面應用
  3905. U.MD.D.click(this, obj);
  3906. }, [_orgStemDeskIcon[i]]),
  3907. "onclick": U.UF.C.closure(function (obj) {
  3908. //防止拖動圖標即打開了桌面應用
  3909. U.MD.D.click(this, obj);
  3910. }, [_orgStemDeskIcon[i]])
  3911. }, _frag); //
  3912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3915. }
  3916. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3917. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3918. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3919. continue
  3920. }
  3921. _content = $$("div", {
  3922. className: "U_MD_D_KO",
  3923. "onmousedown": U.UF.C.closure(function (obj) {
  3924. //防止拖動圖標即打開了桌面應用
  3925. U.MD.D.click(this, obj);
  3926. }, [_szulsDeskIcon[i]]),
  3927. "onclick": U.UF.C.closure(function (obj) {
  3928. //防止拖動圖標即打開了桌面應用
  3929. U.MD.D.click(this, obj);
  3930. }, [_szulsDeskIcon[i]])
  3931. }, _frag); //
  3932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3935. }
  3936. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3937. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3938. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3939. continue
  3940. }
  3941. _content = $$("div", {
  3942. className: "U_MD_D_KO",
  3943. "onmousedown": U.UF.C.closure(function (obj) {
  3944. //防止拖動圖標即打開了桌面應用
  3945. U.MD.D.click(this, obj);
  3946. }, [_orgDesktopIconInfo[i]]),
  3947. "onclick": U.UF.C.closure(function (obj) {
  3948. //防止拖動圖標即打開了桌面應用
  3949. U.MD.D.click(this, obj);
  3950. }, [_orgDesktopIconInfo[i]])
  3951. }, _frag); //
  3952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3955. }
  3956. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3957. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3958. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3959. continue
  3960. }
  3961. _content = $$("div", {
  3962. className: "U_MD_D_KO",
  3963. "onmousedown": U.UF.C.closure(function (obj) {
  3964. //防止拖動圖標即打開了桌面應用
  3965. U.MD.D.click(this, obj);
  3966. }, [_schoolDesktopIconInfo[i]]),
  3967. "onclick": U.UF.C.closure(function (obj) {
  3968. //防止拖動圖標即打開了桌面應用
  3969. U.MD.D.click(this, obj);
  3970. }, [_schoolDesktopIconInfo[i]])
  3971. }, _frag); //
  3972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3975. }
  3976. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3977. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3978. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3979. continue
  3980. }
  3981. _content = $$("div", {
  3982. className: "U_MD_D_KO",
  3983. "onmousedown": U.UF.C.closure(function (obj) {
  3984. //防止拖動圖標即打開了桌面應用
  3985. U.MD.D.click(this, obj);
  3986. }, [_GMteacherDesktopIconInfo[i]]),
  3987. "onclick": U.UF.C.closure(function (obj) {
  3988. //防止拖動圖標即打開了桌面應用
  3989. U.MD.D.click(this, obj);
  3990. }, [_GMteacherDesktopIconInfo[i]])
  3991. }, _frag); //
  3992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3995. }
  3996. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3997. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3998. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3999. continue
  4000. }
  4001. _content = $$("div", {
  4002. className: "U_MD_D_KO",
  4003. "onmousedown": U.UF.C.closure(function (obj) {
  4004. //防止拖動圖標即打開了桌面應用
  4005. U.MD.D.click(this, obj);
  4006. }, [_SONGteacherDesktopIconInfo[i]]),
  4007. "onclick": U.UF.C.closure(function (obj) {
  4008. //防止拖動圖標即打開了桌面應用
  4009. U.MD.D.click(this, obj);
  4010. }, [_SONGteacherDesktopIconInfo[i]])
  4011. }, _frag); //
  4012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4015. }
  4016. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4017. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4018. _content = $$("div", {
  4019. className: "U_MD_D_KO",
  4020. "onmousedown": U.UF.C.closure(function (obj) {
  4021. //防止拖動圖標即打開了桌面應用
  4022. U.MD.D.click(this, obj);
  4023. }, [_GMstudentDesktopIconInfo[i]]),
  4024. "onclick": U.UF.C.closure(function (obj) {
  4025. //防止拖動圖標即打開了桌面應用
  4026. U.MD.D.click(this, obj);
  4027. }, [_GMstudentDesktopIconInfo[i]])
  4028. }, _frag); //
  4029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4032. }
  4033. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4034. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4035. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4036. continue
  4037. }
  4038. _content = $$("div", {
  4039. className: "U_MD_D_KO",
  4040. "onmousedown": U.UF.C.closure(function (obj) {
  4041. //防止拖動圖標即打開了桌面應用
  4042. U.MD.D.click(this, obj);
  4043. }, [_tcTeacherDeskIconInfo[i]]),
  4044. "onclick": U.UF.C.closure(function (obj) {
  4045. //防止拖動圖標即打開了桌面應用
  4046. U.MD.D.click(this, obj);
  4047. }, [_tcTeacherDeskIconInfo[i]])
  4048. }, _frag); //
  4049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4052. }
  4053. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4054. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4055. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4056. continue
  4057. }
  4058. _content = $$("div", {
  4059. className: "U_MD_D_KO",
  4060. "onmousedown": U.UF.C.closure(function (obj) {
  4061. //防止拖動圖標即打開了桌面應用
  4062. U.MD.D.click(this, obj);
  4063. }, [_tcOrganizerDeskIconInfo[i]]),
  4064. "onclick": U.UF.C.closure(function (obj) {
  4065. //防止拖動圖標即打開了桌面應用
  4066. U.MD.D.click(this, obj);
  4067. }, [_tcOrganizerDeskIconInfo[i]])
  4068. }, _frag); //
  4069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4072. }
  4073. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4074. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4075. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4076. continue
  4077. }
  4078. _content = $$("div", {
  4079. className: "U_MD_D_KO",
  4080. "onmousedown": U.UF.C.closure(function (obj) {
  4081. //防止拖動圖標即打開了桌面應用
  4082. U.MD.D.click(this, obj);
  4083. }, [_szscTeacherDeskIconInfo[i]]),
  4084. "onclick": U.UF.C.closure(function (obj) {
  4085. //防止拖動圖標即打開了桌面應用
  4086. U.MD.D.click(this, obj);
  4087. }, [_szscTeacherDeskIconInfo[i]])
  4088. }, _frag); //
  4089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4092. }
  4093. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4094. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4095. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4096. continue
  4097. }
  4098. _content = $$("div", {
  4099. className: "U_MD_D_KO",
  4100. "onmousedown": U.UF.C.closure(function (obj) {
  4101. //防止拖動圖標即打開了桌面應用
  4102. U.MD.D.click(this, obj);
  4103. }, [_szscOrganizerDeskIconInfo[i]]),
  4104. "onclick": U.UF.C.closure(function (obj) {
  4105. //防止拖動圖標即打開了桌面應用
  4106. U.MD.D.click(this, obj);
  4107. }, [_szscOrganizerDeskIconInfo[i]])
  4108. }, _frag); //
  4109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4112. }
  4113. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4114. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4115. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4116. continue
  4117. }
  4118. _content = $$("div", {
  4119. className: "U_MD_D_KO",
  4120. "onmousedown": U.UF.C.closure(function (obj) {
  4121. //防止拖動圖標即打開了桌面應用
  4122. U.MD.D.click(this, obj);
  4123. }, [_nsfxTeacherDeskIconInfo[i]]),
  4124. "onclick": U.UF.C.closure(function (obj) {
  4125. //防止拖動圖標即打開了桌面應用
  4126. U.MD.D.click(this, obj);
  4127. }, [_nsfxTeacherDeskIconInfo[i]])
  4128. }, _frag); //
  4129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4132. }
  4133. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4134. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4135. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4136. continue
  4137. }
  4138. _content = $$("div", {
  4139. className: "U_MD_D_KO",
  4140. "onmousedown": U.UF.C.closure(function (obj) {
  4141. //防止拖動圖標即打開了桌面應用
  4142. U.MD.D.click(this, obj);
  4143. }, [_stiaTeacherDeskIconInfo[i]]),
  4144. "onclick": U.UF.C.closure(function (obj) {
  4145. //防止拖動圖標即打開了桌面應用
  4146. U.MD.D.click(this, obj);
  4147. }, [_stiaTeacherDeskIconInfo[i]])
  4148. }, _frag); //
  4149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4152. }
  4153. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4154. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4155. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4156. continue
  4157. }
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖動圖標即打開了桌面應用
  4162. U.MD.D.click(this, obj);
  4163. }, [_szdjgTeacherDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖動圖標即打開了桌面應用
  4166. U.MD.D.click(this, obj);
  4167. }, [_szdjgTeacherDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4172. }
  4173. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4174. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4175. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖動圖標即打開了桌面應用
  4182. U.MD.D.click(this, obj);
  4183. }, [_x010607TeacherDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖動圖標即打開了桌面應用
  4186. U.MD.D.click(this, obj);
  4187. }, [_x010607TeacherDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4194. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4195. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4196. continue
  4197. }
  4198. _content = $$("div", {
  4199. className: "U_MD_D_KO",
  4200. "onmousedown": U.UF.C.closure(function (obj) {
  4201. //防止拖動圖標即打開了桌面應用
  4202. U.MD.D.click(this, obj);
  4203. }, [_xhlyTeacherDeskIconInfo[i]]),
  4204. "onclick": U.UF.C.closure(function (obj) {
  4205. //防止拖動圖標即打開了桌面應用
  4206. U.MD.D.click(this, obj);
  4207. }, [_xhlyTeacherDeskIconInfo[i]])
  4208. }, _frag); //
  4209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4212. }
  4213. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4214. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4215. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4216. continue
  4217. }
  4218. _content = $$("div", {
  4219. className: "U_MD_D_KO",
  4220. "onmousedown": U.UF.C.closure(function (obj) {
  4221. //防止拖動圖標即打開了桌面應用
  4222. U.MD.D.click(this, obj);
  4223. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4224. "onclick": U.UF.C.closure(function (obj) {
  4225. //防止拖動圖標即打開了桌面應用
  4226. U.MD.D.click(this, obj);
  4227. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4228. }, _frag); //
  4229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4232. }
  4233. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4234. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4235. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4236. continue
  4237. }
  4238. _content = $$("div", {
  4239. className: "U_MD_D_KO",
  4240. "onmousedown": U.UF.C.closure(function (obj) {
  4241. //防止拖動圖標即打開了桌面應用
  4242. U.MD.D.click(this, obj);
  4243. }, [_x010503TeacherDeskIconInfo[i]]),
  4244. "onclick": U.UF.C.closure(function (obj) {
  4245. //防止拖動圖標即打開了桌面應用
  4246. U.MD.D.click(this, obj);
  4247. }, [_x010503TeacherDeskIconInfo[i]])
  4248. }, _frag); //
  4249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4252. }
  4253. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4254. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4255. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4256. continue
  4257. }
  4258. _content = $$("div", {
  4259. className: "U_MD_D_KO",
  4260. "onmousedown": U.UF.C.closure(function (obj) {
  4261. //防止拖動圖標即打開了桌面應用
  4262. U.MD.D.click(this, obj);
  4263. }, [_x010504TeacherDeskIconInfo[i]]),
  4264. "onclick": U.UF.C.closure(function (obj) {
  4265. //防止拖動圖標即打開了桌面應用
  4266. U.MD.D.click(this, obj);
  4267. }, [_x010504TeacherDeskIconInfo[i]])
  4268. }, _frag); //
  4269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4272. }
  4273. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4274. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4275. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4276. continue
  4277. }
  4278. _content = $$("div", {
  4279. className: "U_MD_D_KO",
  4280. "onmousedown": U.UF.C.closure(function (obj) {
  4281. //防止拖動圖標即打開了桌面應用
  4282. U.MD.D.click(this, obj);
  4283. }, [_x010404TeacherDeskIconInfo[i]]),
  4284. "onclick": U.UF.C.closure(function (obj) {
  4285. //防止拖動圖標即打開了桌面應用
  4286. U.MD.D.click(this, obj);
  4287. }, [_x010404TeacherDeskIconInfo[i]])
  4288. }, _frag); //
  4289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4292. }
  4293. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4294. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4295. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4296. continue
  4297. }
  4298. _content = $$("div", {
  4299. className: "U_MD_D_KO",
  4300. "onmousedown": U.UF.C.closure(function (obj) {
  4301. //防止拖動圖標即打開了桌面應用
  4302. U.MD.D.click(this, obj);
  4303. }, [_x010204TeacherDeskIconInfo[i]]),
  4304. "onclick": U.UF.C.closure(function (obj) {
  4305. //防止拖動圖標即打開了桌面應用
  4306. U.MD.D.click(this, obj);
  4307. }, [_x010204TeacherDeskIconInfo[i]])
  4308. }, _frag); //
  4309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4312. }
  4313. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4314. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4315. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4316. continue
  4317. }
  4318. _content = $$("div", {
  4319. className: "U_MD_D_KO",
  4320. "onmousedown": U.UF.C.closure(function (obj) {
  4321. //防止拖動圖標即打開了桌面應用
  4322. U.MD.D.click(this, obj);
  4323. }, [_x320101TeacherDeskIconInfo[i]]),
  4324. "onclick": U.UF.C.closure(function (obj) {
  4325. //防止拖動圖標即打開了桌面應用
  4326. U.MD.D.click(this, obj);
  4327. }, [_x320101TeacherDeskIconInfo[i]])
  4328. }, _frag); //
  4329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4332. }
  4333. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4334. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4335. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4336. continue
  4337. }
  4338. _content = $$("div", {
  4339. className: "U_MD_D_KO",
  4340. "onmousedown": U.UF.C.closure(function (obj) {
  4341. //防止拖動圖標即打開了桌面應用
  4342. U.MD.D.click(this, obj);
  4343. }, [_trailTeacherDeskIconInfo[i]]),
  4344. "onclick": U.UF.C.closure(function (obj) {
  4345. //防止拖動圖標即打開了桌面應用
  4346. U.MD.D.click(this, obj);
  4347. }, [_trailTeacherDeskIconInfo[i]])
  4348. }, _frag); //
  4349. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4352. }
  4353. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4354. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4355. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4356. continue
  4357. }
  4358. _content = $$("div", {
  4359. className: "U_MD_D_KO",
  4360. "onmousedown": U.UF.C.closure(function (obj) {
  4361. //防止拖動圖標即打開了桌面應用
  4362. U.MD.D.click(this, obj);
  4363. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4364. "onclick": U.UF.C.closure(function (obj) {
  4365. //防止拖動圖標即打開了桌面應用
  4366. U.MD.D.click(this, obj);
  4367. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4368. }, _frag); //
  4369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4372. }
  4373. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4374. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4375. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4376. continue
  4377. }
  4378. _content = $$("div", {
  4379. className: "U_MD_D_KO",
  4380. "onmousedown": U.UF.C.closure(function (obj) {
  4381. //防止拖動圖標即打開了桌面應用
  4382. U.MD.D.click(this, obj);
  4383. }, [_szsyTeacherDeskIconInfo[i]]),
  4384. "onclick": U.UF.C.closure(function (obj) {
  4385. //防止拖動圖標即打開了桌面應用
  4386. U.MD.D.click(this, obj);
  4387. }, [_szsyTeacherDeskIconInfo[i]])
  4388. }, _frag); //
  4389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4392. }
  4393. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4394. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4395. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4396. continue
  4397. }
  4398. _content = $$("div", {
  4399. className: "U_MD_D_KO",
  4400. "onmousedown": U.UF.C.closure(function (obj) {
  4401. //防止拖動圖標即打開了桌面應用
  4402. U.MD.D.click(this, obj);
  4403. }, [_x010608TeacherDeskIconInfo[i]]),
  4404. "onclick": U.UF.C.closure(function (obj) {
  4405. //防止拖動圖標即打開了桌面應用
  4406. U.MD.D.click(this, obj);
  4407. }, [_x010608TeacherDeskIconInfo[i]])
  4408. }, _frag); //
  4409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4412. }
  4413. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4414. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4415. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4416. continue
  4417. }
  4418. _content = $$("div", {
  4419. className: "U_MD_D_KO",
  4420. "onmousedown": U.UF.C.closure(function (obj) {
  4421. //防止拖動圖標即打開了桌面應用
  4422. U.MD.D.click(this, obj);
  4423. }, [_x010611TeacherDeskIconInfo[i]]),
  4424. "onclick": U.UF.C.closure(function (obj) {
  4425. //防止拖動圖標即打開了桌面應用
  4426. U.MD.D.click(this, obj);
  4427. }, [_x010611TeacherDeskIconInfo[i]])
  4428. }, _frag); //
  4429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4432. }
  4433. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4434. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4435. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4436. continue
  4437. }
  4438. _content = $$("div", {
  4439. className: "U_MD_D_KO",
  4440. "onmousedown": U.UF.C.closure(function (obj) {
  4441. //防止拖动图标即打开了桌面应用
  4442. U.MD.D.click(this, obj);
  4443. }, [_x010612TeacherDeskIconInfo[i]]),
  4444. "onclick": U.UF.C.closure(function (obj) {
  4445. //防止拖动图标即打开了桌面应用
  4446. U.MD.D.click(this, obj);
  4447. }, [_x010612TeacherDeskIconInfo[i]])
  4448. }, _frag); //
  4449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4452. }
  4453. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4454. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4455. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4456. continue
  4457. }
  4458. _content = $$("div", {
  4459. className: "U_MD_D_KO",
  4460. "onmousedown": U.UF.C.closure(function (obj) {
  4461. //防止拖動圖標即打開了桌面應用
  4462. U.MD.D.click(this, obj);
  4463. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4464. "onclick": U.UF.C.closure(function (obj) {
  4465. //防止拖動圖標即打開了桌面應用
  4466. U.MD.D.click(this, obj);
  4467. }, [_tianyuanTeacherDeskIconInfo[i]])
  4468. }, _frag); //
  4469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4472. }
  4473. } else {
  4474. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4475. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4476. continue
  4477. }
  4478. _content = $$("div", {
  4479. className: "U_MD_D_KO",
  4480. "onmousedown": U.UF.C.closure(function (obj) {
  4481. //防止拖動圖標即打開了桌面應用
  4482. U.MD.D.click(this, obj);
  4483. }, [_teacherDesktopIconInfo[i]]),
  4484. "onclick": U.UF.C.closure(function (obj) {
  4485. //防止拖動圖標即打開了桌面應用
  4486. U.MD.D.click(this, obj);
  4487. }, [_teacherDesktopIconInfo[i]])
  4488. }, _frag); //
  4489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4492. }
  4493. }
  4494. } else {
  4495. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4496. _content = $$("div", {
  4497. className: "U_MD_D_KO",
  4498. style: { 'width': '124px', 'height': '145px' },
  4499. "onmousedown": U.UF.C.closure(function (obj) {
  4500. //防止拖動圖標即打開了桌面應用
  4501. U.MD.D.click(this, obj);
  4502. }, [_easyDesktopIconInfo[i]]),
  4503. "onclick": U.UF.C.closure(function (obj) {
  4504. //防止拖動圖標即打開了桌面應用
  4505. U.MD.D.click(this, obj);
  4506. }, [_easyDesktopIconInfo[i]])
  4507. }, _frag); //
  4508. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4511. }
  4512. }
  4513. if (type == 1) {
  4514. //加載好後給圖標定位
  4515. U.MD.D.iconPostion($(_frag).Child());
  4516. } else {
  4517. //加載好後給圖標定位
  4518. U.MD.D.iconPostion2($(_frag).Child());
  4519. }
  4520. //把圖標加載到頁面
  4521. el.appendChild(_frag);
  4522. }
  4523. /**
  4524. * 顯示任務欄
  4525. *
  4526. * @param {element} 桌面元素
  4527. */
  4528. U.MD.D.I.displayTaskbar = function (el) {
  4529. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4530. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4531. //任務欄位置變化
  4532. U.selectEl(el).css({ "bottom": "0px" });
  4533. //桌面位置變話
  4534. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4535. }
  4536. }
  4537. //#region 桌面圖標拖動邏輯
  4538. /**
  4539. * 桌面排列圖標
  4540. *
  4541. * @param {element} 桌面元素
  4542. * @param {object} 上下相距的距離
  4543. * @param {object} 左右相距的距離
  4544. * @return {object} 命名空間
  4545. */
  4546. U.MD.D.iconPostion = function (childs, top, left) {
  4547. var i; //用於循環處理
  4548. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4549. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4550. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4551. for (i = 0; i < childs.length; i++) {
  4552. //如果豎排top超過了範圍處理
  4553. if (top + 95 > US.height - 10) {
  4554. //left超過了頁面範圍處理,則向上重疊打印處理
  4555. if ((left + 180) > US.width) {
  4556. top -= 110;
  4557. left -= 90;
  4558. }
  4559. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4560. else {
  4561. left += 90;
  4562. top = 15;
  4563. };
  4564. }
  4565. //給圖標的位置賦值
  4566. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4567. if (i < childs.length - 1) {
  4568. //頁面圖標每次向下加95
  4569. top += 95;
  4570. }
  4571. }
  4572. //返回最後調用的圖標的位置
  4573. return [top, left];
  4574. }
  4575. /**
  4576. * 桌面排列圖標
  4577. *
  4578. * @param {element} 桌面元素
  4579. * @param {object} 上下相距的距離
  4580. * @param {object} 左右相距的距離
  4581. * @return {object} 命名空間
  4582. */
  4583. U.MD.D.iconPostion2 = function (childs, top, left) {
  4584. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4585. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4586. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4587. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4588. for (i = 0; i < childs.length; i++) {
  4589. //如果豎排top超過了範圍處理
  4590. if (left + 150 > US.width - 10) {
  4591. //left超過了頁面範圍處理,則向上重疊打印處理
  4592. if ((top + 180) > US.Height) {
  4593. top -= 150;
  4594. left -= 150;
  4595. }
  4596. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4597. else {
  4598. top += 150;
  4599. left = ol;
  4600. };
  4601. }
  4602. //給圖標的位置賦值
  4603. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4604. if (i < childs.length - 1) {
  4605. //頁面圖標每次向下加95
  4606. left += 150;
  4607. }
  4608. }
  4609. //返回最後調用的圖標的位置
  4610. return [top, left];
  4611. }
  4612. /**
  4613. * 桌面點擊事件邏輯
  4614. *
  4615. * @param {element} 桌面元素
  4616. * @param {object} 上下相距的距離
  4617. * @param {object} 左右相距的距離
  4618. * @return {object} 命名空間
  4619. */
  4620. U.MD.D.click = function (el, obj) {
  4621. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4622. var _userinfo = US.userInfo;
  4623. U.UF.EV.stopBubble(); //阻止向上冒泡
  4624. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4625. if (_buttonnumber < 2) {
  4626. //如果是click事件的處理
  4627. if (event.type == "click") {
  4628. //如果元素在mousemove事件中沒有移動則出發click事件
  4629. if (!U.MD.D.I.IsDrag) {
  4630. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4631. U.alert("請先登錄您的賬號!");
  4632. setTimeout(() => {
  4633. U.MD.U.L.login();
  4634. }, 2000);
  4635. } else {
  4636. //打開應用處理
  4637. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4638. }
  4639. }
  4640. }
  4641. //如果是mouse事件的處理
  4642. else {
  4643. if (US.Config.type == '1') {
  4644. //拖動處理,添加拖動和拖動結束事件
  4645. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4646. }
  4647. }
  4648. U.MD.D.I.IsDrag = false;
  4649. }
  4650. }
  4651. /**
  4652. * 拖動的處理
  4653. *
  4654. */
  4655. U.MD.D.iconMove = function () {
  4656. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4657. U.MD.D.I.IsDrag = true;
  4658. }
  4659. /**
  4660. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4661. *
  4662. * @param {element} 拖動的元素
  4663. * @return {object} 命名空間
  4664. */
  4665. U.MD.D.iconUp = function (el) {
  4666. var _top = 15,
  4667. _left = 20,
  4668. _margin,
  4669. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4670. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4671. if (_positioninfo["OT"] > 15) {
  4672. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4673. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4674. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4675. }
  4676. if (_positioninfo["OL"] > 20) {
  4677. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4678. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4679. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4680. }
  4681. //while循環判斷麼一個重疊的元素
  4682. do {
  4683. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4684. _top = _positioninfo[0] + 95; //得到定位後的top
  4685. _left = _positioninfo[1]; //得到定位後的left
  4686. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4687. }
  4688. /**
  4689. * 判斷拖動後圖標是否重疊
  4690. *
  4691. * @param {element} 拖動的元素
  4692. * @param {element} 桌面所有的元素
  4693. * @param {array} 拖動元素的位置
  4694. ----------[0] 上 top
  4695. ----------[1] 左 left
  4696. * @return {object} 命名空間
  4697. */
  4698. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4699. //循環所有的圖標
  4700. for (var i = 0; i < childs.length; i++) {
  4701. //判斷有沒有和該圖標誒子重疊的元素
  4702. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4703. return childs[i]; //如果有返回
  4704. }
  4705. }
  4706. }
  4707. //#endregion
  4708. //#endregion
  4709. //#region 桌面應用
  4710. /**
  4711. * 打開應用
  4712. *
  4713. * @param {string} 類型
  4714. -----------------Disk 網盤系統
  4715. -----------------PDisk 學習系統網盤
  4716. -----------------Poto 圖片
  4717. -----------------Video 視頻
  4718. -----------------Music 音樂
  4719. -----------------Word word
  4720. -----------------Excel excel
  4721. -----------------Txt 記事本
  4722. -----------------PB 學習系統
  4723. -----------------Blog 朋友圈系統
  4724. -----------------FTP ftp系統
  4725. -----------------Group 好友群
  4726. -----------------SY 首頁系統
  4727. -----------------Set 個人設置
  4728. -----------------XSet 系統設置
  4729. -----------------App 我們所有的app
  4730. -----------------BC c.1473.cn 平臺
  4731. -----------------CWeb d.1473.cn 變成平臺
  4732. -----------------其他的外聯系統 我們統一用iframe打開
  4733. * @param {array} 類型
  4734. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4735. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4736. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4737. 如果第一個參數為其他,則無第二個參數
  4738. * @returns {array}
  4739. */
  4740. window.addEventListener('message', function (e) { // 監聽 message 事件
  4741. // alert(e.data.type);
  4742. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4743. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4744. //3是展示全部階段 2學生 1老師 4專家
  4745. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4746. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4747. //3是展示全部階段 2學生 1老師 4專家
  4748. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4749. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4750. //3是展示全部階段 2學生 1老師 4專家
  4751. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4752. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4753. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4754. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4755. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4756. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4757. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4758. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4759. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4760. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4761. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4762. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4763. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4764. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4765. //3是展示全部階段 2學生 1老師 4專家
  4766. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4767. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4768. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4769. U.MD.D.I.selectUser();
  4770. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4771. var _formel = document.getElementById("study");
  4772. U.UF.F.windowZooming(_formel);
  4773. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4774. var _formel = document.getElementById("studyDetail");
  4775. U.UF.F.windowZooming(_formel);
  4776. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4777. var _formel = document.getElementById("studyDetail");
  4778. U.UF.F.windowZooming(_formel);
  4779. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4780. var _formel = document.getElementById("studentStudy");
  4781. U.UF.F.windowZooming(_formel);
  4782. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4783. // var _formel = document.getElementById("study");
  4784. //如果最大化了,那麼就把他縮小
  4785. // if (_formel.ismaximize) {
  4786. // return;
  4787. // }
  4788. // U.UF.F.windowZooming(_formel);
  4789. // U.UF.F.topWindow(_formel);
  4790. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4791. // var _formel = document.getElementById("studyDetail");
  4792. //如果最大化了,那麼就把他縮小
  4793. // if (_formel.ismaximize) {
  4794. // return;
  4795. // }
  4796. // U.UF.F.windowZooming(_formel);
  4797. // U.UF.F.topWindow(_formel);
  4798. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4799. // var _formel = document.getElementById("studentStudy");
  4800. // if (_formel.ismaximize) {
  4801. // return;
  4802. // }
  4803. // U.UF.F.windowZooming(_formel);
  4804. // U.UF.F.topWindow(_formel);
  4805. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4806. var _formel = document.getElementById("study");
  4807. // if (_formel.ismaximize) {
  4808. // return;
  4809. // }
  4810. // U.UF.F.windowZooming(_formel);
  4811. U.UF.F.topWindow(_formel);
  4812. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4813. var _formel = document.getElementById("studentIndex");
  4814. U.UF.F.windowZooming(_formel);
  4815. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4816. var _formel = document.getElementById("studyDetailS");
  4817. U.UF.F.windowZooming(_formel);
  4818. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4819. var _formel = document.getElementById("studioIndex");
  4820. U.UF.F.windowZooming(_formel);
  4821. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4822. var _formel = document.getElementById("studyDetailStudio");
  4823. U.UF.F.windowZooming(_formel);
  4824. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4825. var _formel = document.getElementById("studyDetailStudio");
  4826. U.UF.F.windowZooming(_formel);
  4827. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4828. var _formel = document.getElementById("studyDetailNT");
  4829. U.UF.F.windowZooming(_formel);
  4830. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4831. var _formel = document.getElementById("studyDetailS");
  4832. U.UF.F.windowZooming(_formel);
  4833. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4834. var _formel = document.getElementById("studyDetailS");
  4835. U.UF.F.topWindow(_formel);
  4836. } else if (e.data.tools && e.data.tools == "1") {
  4837. // U.MD.D.I.openApplication("whiteboard")
  4838. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4839. } else if (e.data.tools && e.data.tools == "2") {
  4840. U.MD.D.I.openApplication("note")
  4841. } else if (e.data.tools && e.data.tools == "3") {
  4842. // U.MD.D.I.openApplication("mind")
  4843. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4844. } else if (e.data.tools && e.data.tools == "4") {
  4845. U.MD.D.I.openApplication("investigation")
  4846. } else if (e.data.tools && e.data.tools == "6") {
  4847. // U.MD.D.I.openApplication("doc")
  4848. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4849. } else if (e.data.tools && e.data.tools == "7") {
  4850. // U.MD.D.I.openApplication("mindNetwork")
  4851. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4852. } else if (e.data.tools && e.data.tools == "8") {
  4853. U.MD.D.I.openApplication("library")
  4854. } else if (e.data.tools && e.data.tools == "17") {
  4855. U.MD.D.I.openApplication("stuLibrary")
  4856. } else if (e.data.tools && e.data.tools == "18") {
  4857. U.MD.D.I.openApplication("train")
  4858. } else if (e.data.tools && e.data.tools == "21") {
  4859. U.MD.D.I.openApplication("program")
  4860. } else if (e.data.tools && e.data.tools == "22") {
  4861. U.MD.D.I.openApplication("AIprogram2")
  4862. } else if (e.data.tools && e.data.tools == "23") {
  4863. U.MD.D.I.openApplication("Pythonprogram")
  4864. } else if (e.data.tools && e.data.tools == "24") {
  4865. U.MD.D.I.openApplication("AIprogram")
  4866. } else if (e.data.tools && e.data.tools == "25") {
  4867. U.MD.D.I.openApplication("sys")
  4868. } else if (e.data.tools && e.data.tools == "26") {
  4869. // U.MD.D.I.openApplication("courseDesign")
  4870. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4871. } else if (e.data.tools && e.data.tools == "31") {
  4872. U.MD.D.I.openApplication("netWorkPanel")
  4873. } else if (e.data.tools && e.data.tools == "32") {
  4874. U.MD.D.I.openApplication("codeEdit")
  4875. } else if (e.data.tools && e.data.tools == "57") {
  4876. U.MD.D.I.openApplication("CocoPi")
  4877. } else if (e.data.tools && e.data.tools == "63") {
  4878. U.MD.D.I.openApplication("Wood")
  4879. } else if (e.data.tools && e.data.tools == "58") {
  4880. U.MD.D.I.openApplication("car")
  4881. } else if (e.data.tools && e.data.tools == "59") {
  4882. U.MD.D.I.openApplication("lineSearch")
  4883. } else if (e.data.tools && e.data.tools == "60") {
  4884. U.MD.D.I.openApplication("deepLearning")
  4885. } else if (e.data.tools && e.data.tools == "61") {
  4886. U.MD.D.I.openApplication("allHistory")
  4887. } else if (e.data.tools && e.data.tools == "28") {
  4888. U.MD.D.I.openApplication("translation")
  4889. } else if (e.data.tools && e.data.tools == "37") {
  4890. U.MD.D.I.openApplication("mohe")
  4891. } else if (e.data.tools && e.data.tools == "38") {
  4892. U.MD.D.I.openApplication("24game")
  4893. } else if (e.data.tools && e.data.tools == "39") {
  4894. U.MD.D.I.openApplication("GeoGebra")
  4895. } else if (e.data.tools && e.data.tools == "43") {
  4896. U.MD.D.I.openApplication("studentEvaluate")
  4897. } else if (e.data.tools && e.data.tools == "44") {
  4898. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4899. } else if (e.data.tools && e.data.tools == "46") {
  4900. U.MD.D.I.openApplication("project")
  4901. } else if (e.data.tools && e.data.tools == "71") {
  4902. U.MD.D.I.openApplication("aigptCourse")
  4903. } else if (e.data.tools && e.data.tools == "72") {
  4904. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  4905. } else if (e.data.tools && e.data.tools == "1s") {
  4906. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4907. } else if (e.data.tools && e.data.tools == "3s") {
  4908. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4909. } else if (e.data.tools && e.data.tools == "6s") {
  4910. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4911. } else if (e.data.tools && e.data.tools == "1studio") {
  4912. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4913. } else if (e.data.tools && e.data.tools == "3studio") {
  4914. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4915. } else if (e.data.tools && e.data.tools == "6studio") {
  4916. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4917. } else if (e.data.tools && e.data.tools == "3y") {
  4918. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4919. } else if (e.data.tools && e.data.tools == "1y") {
  4920. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4921. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4922. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4923. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4924. U.MD.D.I.openApplication("AIAnalyse")
  4925. } else if (e.data.tools && e.data.tools == "1teacher") {
  4926. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4927. } else if (e.data.tools && e.data.tools == "3teacher") {
  4928. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4929. } else if (e.data.tools && e.data.tools == "7teacher") {
  4930. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4931. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4932. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4933. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4934. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4935. } else if (e.data.tools && e.data.tools == "1E") {
  4936. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4937. } else if (e.data.tools && e.data.tools == "3E") {
  4938. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4939. } else if (e.data.tools && e.data.tools == "57y") {
  4940. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4941. } else if (e.data.tools && e.data.tools == "57u") {
  4942. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4943. } else if (e.data.tools && e.data.tools == "57teacher") {
  4944. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4945. } else if (e.data.tools && e.data.tools == "64") {
  4946. U.MD.D.I.openApplication("AIChat")
  4947. } else if (e.data.tools && e.data.tools == "66") {
  4948. U.MD.D.I.openApplication("formulaEdi")
  4949. } else if (e.data.tools && e.data.tools == "67") {
  4950. U.MD.D.I.openApplication("molStr")
  4951. } else if (e.data.tools && e.data.tools == "68") {
  4952. U.MD.D.I.openApplication("timeAxis")
  4953. } else if (e.data.tools && e.data.tools == "openCourse") {
  4954. let _data = {
  4955. typea: e.data.typea || '',
  4956. typeb: e.data.typeb || '',
  4957. typed: e.data.typed || '',
  4958. }
  4959. U.MD.D.I.openInApplication("index", _data)
  4960. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4961. let _data = {
  4962. classid: e.data.classid || '',
  4963. }
  4964. U.MD.D.I.openInApplication("dataClass", _data)
  4965. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4966. let _data = {
  4967. cid: e.data.cid || '',
  4968. gid: e.data.gid || '',
  4969. }
  4970. U.MD.D.I.openInApplication("opencCscl", _data)
  4971. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4972. U.MD.D.I.openApplication("dataBoardTest")
  4973. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4974. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4975. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4976. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4977. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4978. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4979. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4980. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4981. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4982. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4983. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4984. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4985. }else if (e.data.tools && e.data.tools == "loginSz") {
  4986. U.MD.D.I.openInApplication("loginSz")
  4987. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4988. if($('#classroom_observation_board')[0]){
  4989. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4990. }
  4991. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4992. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4993. if($('#classroom_observation_ob_comment')[0]){
  4994. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4995. }
  4996. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4997. }else if (e.data.tools && e.data.tools == "logout"){
  4998. U.MD.U.LO.logoutSystem()
  4999. }else if (e.data.tools && e.data.tools == "getLogin"){
  5000. let _iframe = $('#UI_Login')[0];
  5001. if (_iframe) {
  5002. var userInfo = US.userInfo;
  5003. var type = 2
  5004. if(userInfo && userInfo.userid){
  5005. type = 1
  5006. }
  5007. _contentWindow = _iframe.contentWindow;
  5008. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5009. }
  5010. }
  5011. });
  5012. U.MD.D.I.selectUser = function () {
  5013. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5014. if (res.value[0].length > 0) {
  5015. US.userInfo = res.value[0][0];
  5016. $(".userName")[0].innerHTML = US.userInfo.username;
  5017. }
  5018. }, [], { "type": "GET", "withCredentials": true });
  5019. }
  5020. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5021. var _userinfo = US.userInfo, //登錄用戶信息
  5022. _userid = US.userInfo.userid, //登錄用戶id
  5023. _oid = _userinfo.organizeid,
  5024. _type = US.userInfo.type,
  5025. _org = US.userInfo.org,
  5026. _role = US.userInfo.role,
  5027. _classId = US.userInfo.classid;
  5028. if (_type == 4) {
  5029. tType = 4
  5030. }
  5031. switch (str) {
  5032. case "studyDetailNT": //無終端模式
  5033. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5034. setTimeout(() => {
  5035. U.MD.U.L.login();
  5036. }, 2000);
  5037. } else {
  5038. _formdiv = new U.UF.UI.form(
  5039. "課程詳情",
  5040. $$("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 }), {
  5041. "id": "studyDetailNT",
  5042. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //創建窗體
  5047. _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); } }
  5048. break;
  5049. }
  5050. case "studyDetail":
  5051. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5052. setTimeout(() => {
  5053. U.MD.U.L.login();
  5054. }, 2000);
  5055. } else {
  5056. _formdiv = new U.UF.UI.form(
  5057. "課程詳情",
  5058. $$("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 }), {
  5059. "id": "studyDetail",
  5060. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5066. break;
  5067. }
  5068. case "studyDetailTrain":
  5069. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5070. setTimeout(() => {
  5071. U.MD.U.L.login();
  5072. }, 2000);
  5073. } else {
  5074. _formdiv = new U.UF.UI.form(
  5075. "培訓詳情",
  5076. $$("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 }), {
  5077. "id": "studyDetailTrain",
  5078. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5079. "onresize": function () { }
  5080. }, {
  5081. closecallback: function () { }
  5082. }, { "style": { "height": "36px" } }).form; //創建窗體
  5083. _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); } }
  5084. break;
  5085. }
  5086. case "studyDetailS":
  5087. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5088. setTimeout(() => {
  5089. U.MD.U.L.login();
  5090. }, 2000);
  5091. } else {
  5092. _formdiv = new U.UF.UI.form(
  5093. "項目詳情",
  5094. $$("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 }), {
  5095. "id": "studyDetailS",
  5096. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5097. "onresize": function () { }
  5098. }, {
  5099. closecallback: function () { }
  5100. }, { "style": { "height": "36px" } }).form; //創建窗體
  5101. _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); } }
  5102. break;
  5103. }
  5104. case "studyDetailStudio":
  5105. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5106. setTimeout(() => {
  5107. U.MD.U.L.login();
  5108. }, 2000);
  5109. } else {
  5110. _formdiv = new U.UF.UI.form(
  5111. "工作詳情",
  5112. $$("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 }), {
  5113. "id": "studyDetailStudio",
  5114. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5115. "onresize": function () { }
  5116. }, {
  5117. closecallback: function () { }
  5118. }, { "style": { "height": "36px" } }).form; //創建窗體
  5119. _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); } }
  5120. break;
  5121. }
  5122. case "studyDetailS5":
  5123. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5124. setTimeout(() => {
  5125. U.MD.U.L.login();
  5126. }, 2000);
  5127. } else {
  5128. _formdiv = new U.UF.UI.form(
  5129. "項目詳情",
  5130. $$("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 }), {
  5131. "id": "studyDetailS",
  5132. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5133. "onresize": function () { }
  5134. }, {
  5135. closecallback: function () { }
  5136. }, { "style": { "height": "36px" } }).form; //創建窗體
  5137. _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); } }
  5138. break;
  5139. }
  5140. case "studyDetailGM":
  5141. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5142. setTimeout(() => {
  5143. U.MD.U.L.login();
  5144. }, 2000);
  5145. } else {
  5146. _formdiv = new U.UF.UI.form(
  5147. "課程詳情",
  5148. $$("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 }), {
  5149. "id": "studyDetail",
  5150. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5151. "onresize": function () { }
  5152. }, {
  5153. closecallback: function () { }
  5154. }, { "style": { "height": "36px" } }).form; //創建窗體
  5155. _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); } }
  5156. break;
  5157. }
  5158. case "hanUrl":
  5159. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5160. setTimeout(() => {
  5161. U.MD.U.L.login();
  5162. }, 2000);
  5163. } else {
  5164. _formdiv = new U.UF.UI.form(
  5165. "漢字宮",
  5166. $$("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" }), {
  5167. "id": "hanUrl",
  5168. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5169. "onresize": function () { }
  5170. }, {
  5171. closecallback: function () { }
  5172. }, { "style": { "height": "36px" } }).form; //創建窗體
  5173. _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); } }
  5174. break;
  5175. }
  5176. case "index":
  5177. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5178. setTimeout(() => {
  5179. U.MD.U.L.login();
  5180. }, 2000);
  5181. } else {
  5182. _formdiv = new U.UF.UI.form(
  5183. "課程中心",
  5184. $$("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 }), {
  5185. "id": "study",
  5186. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5187. "onresize": function () { }
  5188. }, {
  5189. closecallback: function () { }
  5190. }, { "style": { "height": "36px" } }).form; //創建窗體
  5191. _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); } }
  5192. break;
  5193. }
  5194. case "dataClass":
  5195. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5196. setTimeout(() => {
  5197. U.MD.U.L.login();
  5198. }, 2000);
  5199. } else {
  5200. _formdiv = new U.UF.UI.form(
  5201. "數據報告",
  5202. $$("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 }), {
  5203. "id": "dataClass",
  5204. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5205. "onresize": function () { }
  5206. }, {
  5207. closecallback: function () { }
  5208. }, { "style": { "height": "36px" } }).form; //創建窗體
  5209. _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); } }
  5210. break;
  5211. }
  5212. case "opencCscl":
  5213. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5214. setTimeout(() => {
  5215. U.MD.U.L.login();
  5216. }, 2000);
  5217. } else {
  5218. _formdiv = new U.UF.UI.form(
  5219. "協同建構",
  5220. $$("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 }), {
  5221. "id": "futureClass",
  5222. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5223. "onresize": function () { }
  5224. }, {
  5225. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5226. }, { "style": { "height": "36px" } }).form; //創建窗體
  5227. _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); } }
  5228. break;
  5229. }
  5230. case "openCourseUpdate":
  5231. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5232. setTimeout(() => {
  5233. U.MD.U.L.login();
  5234. }, 2000);
  5235. } else {
  5236. _formdiv = new U.UF.UI.form(
  5237. "課程管理",
  5238. $$("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 }), {
  5239. "id": "openCourseUpdate",
  5240. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5241. "onresize": function () { }
  5242. }, {
  5243. closecallback: function () { }
  5244. }, { "style": { "height": "36px" } }).form; //創建窗體
  5245. break;
  5246. }
  5247. case "openNewCourseUpdate":
  5248. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5249. setTimeout(() => {
  5250. U.MD.U.L.login();
  5251. }, 2000);
  5252. } else {
  5253. _formdiv = new U.UF.UI.form(
  5254. "課程管理",
  5255. $$("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 }), {
  5256. "id": "openCourseUpdate",
  5257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //創建窗體
  5262. break;
  5263. }
  5264. case "openCourseEUpdate":
  5265. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5266. setTimeout(() => {
  5267. U.MD.U.L.login();
  5268. }, 2000);
  5269. } else {
  5270. _formdiv = new U.UF.UI.form(
  5271. "課程管理",
  5272. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5273. "id": "openCourseUpdate",
  5274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5275. "onresize": function () { }
  5276. }, {
  5277. closecallback: function () { }
  5278. }, { "style": { "height": "36px" } }).form; //創建窗體
  5279. break;
  5280. }
  5281. case "openCourseAiUpdate":
  5282. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5283. setTimeout(() => {
  5284. U.MD.U.L.login();
  5285. }, 2000);
  5286. } else {
  5287. _formdiv = new U.UF.UI.form(
  5288. "課程管理",
  5289. $$("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 }), {
  5290. "id": "openCourseUpdate",
  5291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5292. "onresize": function () { }
  5293. }, {
  5294. closecallback: function () { }
  5295. }, { "style": { "height": "36px" } }).form; //創建窗體
  5296. break;
  5297. }
  5298. case "openCourseAiUpdate2":
  5299. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5300. setTimeout(() => {
  5301. U.MD.U.L.login();
  5302. }, 2000);
  5303. } else {
  5304. _formdiv = new U.UF.UI.form(
  5305. "課程管理",
  5306. $$("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/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5307. "id": "openCourseUpdate",
  5308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5309. "onresize": function () { }
  5310. }, {
  5311. closecallback: function () { }
  5312. }, { "style": { "height": "36px" } }).form; //創建窗體
  5313. break;
  5314. }
  5315. case "openCourseNewUpdate":
  5316. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5317. setTimeout(() => {
  5318. U.MD.U.L.login();
  5319. }, 2000);
  5320. } else {
  5321. _formdiv = new U.UF.UI.form(
  5322. "課程管理",
  5323. $$("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 }), {
  5324. "id": "openCourseUpdate",
  5325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //創建窗體
  5330. break;
  5331. }
  5332. case "inviteLoginSz":
  5333. _formdiv = new U.UF.UI.form(
  5334. "隨機碼登錄",
  5335. $$("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 }), {
  5336. "id": "loginSz",
  5337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5338. "onresize": function () { }
  5339. }, {
  5340. closecallback: function () { }
  5341. }, { "style": { "height": "36px" } }).form; //創建窗體
  5342. break;
  5343. case "loginSz":
  5344. _formdiv = new U.UF.UI.form(
  5345. "教師登錄",
  5346. $$("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" }), {
  5347. "id": "loginSz",
  5348. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //創建窗體
  5353. break;
  5354. case "teacher":
  5355. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5356. setTimeout(() => {
  5357. U.MD.U.L.login();
  5358. }, 2000);
  5359. } else {
  5360. _formdiv = new U.UF.UI.form(
  5361. "教師管理",
  5362. $$("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 }), {
  5363. "id": "teacher",
  5364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5365. "onresize": function () { }
  5366. }, {
  5367. closecallback: function () { }
  5368. }, { "style": { "height": "36px" } }).form; //創建窗體
  5369. break;
  5370. }
  5371. case "dataBoardSZArea":
  5372. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5373. setTimeout(() => {
  5374. U.MD.U.L.login();
  5375. }, 2000);
  5376. } else {
  5377. _formdiv = new U.UF.UI.form(
  5378. "綜合數據看板",
  5379. $$("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 }), {
  5380. "id": "dataBoardSZArea",
  5381. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5382. "onresize": function () { }
  5383. }, {
  5384. closecallback: function () { }
  5385. }, { "style": { "height": "36px" } }).form; //創建窗體
  5386. break;
  5387. }
  5388. case "dataBoardSZCity":
  5389. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5390. setTimeout(() => {
  5391. U.MD.U.L.login();
  5392. }, 2000);
  5393. } else {
  5394. _formdiv = new U.UF.UI.form(
  5395. "綜合數據看板",
  5396. $$("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 }), {
  5397. "id": "dataBoardSZCity",
  5398. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //創建窗體
  5403. break;
  5404. }
  5405. case "classroom_observation_board":
  5406. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5407. setTimeout(() => {
  5408. U.MD.U.L.login();
  5409. }, 2000);
  5410. } else {
  5411. _formdiv = new U.UF.UI.form(
  5412. "課堂觀察",
  5413. $$("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 }), {
  5414. "id": "classroom_observation_board",
  5415. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5416. "onresize": function () { }
  5417. }, {
  5418. closecallback: function () { }
  5419. }, { "style": { "height": "36px" } }).form; //創建窗體
  5420. break;
  5421. }
  5422. case "classroom_observation_ob_comment":
  5423. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5424. setTimeout(() => {
  5425. U.MD.U.L.login();
  5426. }, 2000);
  5427. } else {
  5428. _formdiv = new U.UF.UI.form(
  5429. "課堂審核",
  5430. $$("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 }), {
  5431. "id": "classroom_observation_ob_comment",
  5432. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5433. "onresize": function () { }
  5434. }, {
  5435. closecallback: function () { }
  5436. }, { "style": { "height": "36px" } }).form; //創建窗體
  5437. break;
  5438. }
  5439. case "gptConfig":
  5440. _formdiv = new U.UF.UI.form(
  5441. data.name ? data.name : "应用中心",
  5442. $$("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": data.url }), {
  5443. "id": "gptConfig" + data.id,
  5444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. break;
  5450. }
  5451. }
  5452. U.MD.D.I.openApplication = function (str, obj, info) {
  5453. obj = obj || {};
  5454. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5455. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5456. _userinfo = US.userInfo, //登錄用戶信息
  5457. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5458. _oid = obj.organizeid || _userinfo.organizeid,
  5459. _type = US.userInfo.type,
  5460. _org = US.userInfo.org,
  5461. _role = US.userInfo.role,
  5462. _classId = US.userInfo.classid,
  5463. _TscreenType = 1
  5464. _screenType = 2,
  5465. _SscreenType = 3;
  5466. let iframeBool = true
  5467. if(U.UF.UI.form.allForm[str]){
  5468. iframeBool = false
  5469. }
  5470. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5471. return;
  5472. }
  5473. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5474. switch (str) {
  5475. case "studnetProject": //好友打開
  5476. _formdiv = new U.UF.UI.form(
  5477. "我的項目",
  5478. $$("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 }), {
  5479. "id": "studnetProject",
  5480. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //創建窗體
  5485. _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); } }
  5486. break;
  5487. case "studentEvaluate": //好友打開
  5488. _formdiv = new U.UF.UI.form(
  5489. "我的評價",
  5490. $$("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 }), {
  5491. "id": "studentEvaluate",
  5492. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { }
  5496. }, { "style": { "height": "36px" } }).form; //創建窗體
  5497. _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); } }
  5498. break;
  5499. case "my":
  5500. _formdiv = new U.UF.UI.form(
  5501. "我的資料",
  5502. $$("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 }), {
  5503. "id": "my",
  5504. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5505. "onresize": function () { }
  5506. }, {
  5507. closecallback: function () { }
  5508. }, { "style": { "height": "36px" } }).form; //創建窗體
  5509. _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); } }
  5510. break;
  5511. case "program":
  5512. _formdiv = new U.UF.UI.form(
  5513. "編程平臺",
  5514. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5515. "id": "program",
  5516. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5517. "onresize": function () { }
  5518. }, {
  5519. closecallback: function () { }
  5520. }, { "style": { "height": "36px" } }).form; //創建窗體
  5521. _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); } }
  5522. break;
  5523. case "library":
  5524. _formdiv = new U.UF.UI.form(
  5525. "素材庫",
  5526. $$("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 }), {
  5527. "id": "library",
  5528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5529. "onresize": function () { }
  5530. }, {
  5531. closecallback: function () { }
  5532. }, { "style": { "height": "36px" } }).form; //創建窗體
  5533. _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); } }
  5534. break;
  5535. case "whiteboard":
  5536. _formdiv = new U.UF.UI.form(
  5537. "電子白板",
  5538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5539. "id": "whiteboard",
  5540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //創建窗體
  5545. _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); } }
  5546. break;
  5547. case "investigation":
  5548. _formdiv = new U.UF.UI.form(
  5549. "問卷調查",
  5550. $$("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 }), {
  5551. "id": "investigation",
  5552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //創建窗體
  5557. _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); } }
  5558. break;
  5559. case "note":
  5560. _formdiv = new U.UF.UI.form(
  5561. "便簽分類",
  5562. $$("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 }), {
  5563. "id": "note",
  5564. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //創建窗體
  5569. _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); } }
  5570. break;
  5571. // case "score":
  5572. // _formdiv = new U.UF.UI.form(
  5573. // "量規評分",
  5574. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5575. // "id": "score",
  5576. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5577. // "onresize": function() {}
  5578. // }, {
  5579. // closecallback: function() {}
  5580. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5581. // _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); } }
  5582. // break;
  5583. case "mind":
  5584. _formdiv = new U.UF.UI.form(
  5585. "思維導圖",
  5586. $$("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"
  5587. "id": "mind",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //創建窗體
  5593. _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); } }
  5594. break;
  5595. case "doc":
  5596. // U.MD.D.I.isRoom();
  5597. _formdiv = new U.UF.UI.form(
  5598. "協同文檔",
  5599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5600. "id": "doc",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //創建窗體
  5606. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5607. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5608. // })
  5609. _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); } }
  5610. break;
  5611. case "studentStudy":
  5612. _formdiv = new U.UF.UI.form(
  5613. "課程中心",
  5614. $$("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
  5615. "id": "studentStudy",
  5616. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //創建窗體
  5621. _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); } }
  5622. break;
  5623. case "train": //好友打開
  5624. _formdiv = new U.UF.UI.form(
  5625. "訓練平臺",
  5626. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5627. "id": "train",
  5628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //創建窗體
  5633. _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); } }
  5634. break;
  5635. case "mindNetwork": //好友打開
  5636. _formdiv = new U.UF.UI.form(
  5637. "思維網格",
  5638. $$("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 }), {
  5639. "id": "mindNetwork",
  5640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5641. "onresize": function () { }
  5642. }, {
  5643. closecallback: function () { }
  5644. }, { "style": { "height": "36px" } }).form; //創建窗體
  5645. _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); } }
  5646. break;
  5647. case "studentClassRoom": //好友打開
  5648. _formdiv = new U.UF.UI.form(
  5649. "實時課堂",
  5650. $$("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 }), {
  5651. "id": "studentClassRoom",
  5652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, { "style": { "height": "36px" } }).form; //創建窗體
  5657. _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); } }
  5658. setTimeout(() => {
  5659. U.UF.F.windowZooming(_formdiv)
  5660. }, 0);
  5661. break;
  5662. }
  5663. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5664. switch (str) {
  5665. case "studnetProject": //好友打開
  5666. _formdiv = new U.UF.UI.form(
  5667. "我的項目",
  5668. $$("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 }), {
  5669. "id": "studnetProject",
  5670. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5671. "onresize": function () { }
  5672. }, {
  5673. closecallback: function () { }
  5674. }, { "style": { "height": "36px" } }).form; //創建窗體
  5675. _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); } }
  5676. break;
  5677. case "studentEvaluate": //好友打開
  5678. _formdiv = new U.UF.UI.form(
  5679. "我的評價",
  5680. $$("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 }), {
  5681. "id": "studentEvaluate",
  5682. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5683. "onresize": function () { }
  5684. }, {
  5685. closecallback: function () { }
  5686. }, { "style": { "height": "36px" } }).form; //創建窗體
  5687. _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); } }
  5688. break;
  5689. case "my":
  5690. _formdiv = new U.UF.UI.form(
  5691. "我的資料",
  5692. $$("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 }), {
  5693. "id": "my",
  5694. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, { "style": { "height": "36px" } }).form; //創建窗體
  5699. _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); } }
  5700. break;
  5701. case "program":
  5702. _formdiv = new U.UF.UI.form(
  5703. "編程平臺",
  5704. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5705. "id": "program",
  5706. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5707. "onresize": function () { }
  5708. }, {
  5709. closecallback: function () { }
  5710. }, { "style": { "height": "36px" } }).form; //創建窗體
  5711. _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); } }
  5712. break;
  5713. case "library":
  5714. _formdiv = new U.UF.UI.form(
  5715. "素材庫",
  5716. $$("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 }), {
  5717. "id": "library",
  5718. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5719. "onresize": function () { }
  5720. }, {
  5721. closecallback: function () { }
  5722. }, { "style": { "height": "36px" } }).form; //創建窗體
  5723. _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); } }
  5724. break;
  5725. case "whiteboard":
  5726. _formdiv = new U.UF.UI.form(
  5727. "電子白板",
  5728. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5729. "id": "whiteboard",
  5730. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5731. "onresize": function () { }
  5732. }, {
  5733. closecallback: function () { }
  5734. }, { "style": { "height": "36px" } }).form; //創建窗體
  5735. _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); } }
  5736. break;
  5737. case "investigation":
  5738. _formdiv = new U.UF.UI.form(
  5739. "問卷調查",
  5740. $$("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 }), {
  5741. "id": "investigation",
  5742. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5743. "onresize": function () { }
  5744. }, {
  5745. closecallback: function () { }
  5746. }, { "style": { "height": "36px" } }).form; //創建窗體
  5747. _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); } }
  5748. break;
  5749. case "note":
  5750. _formdiv = new U.UF.UI.form(
  5751. "便簽分類",
  5752. $$("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 }), {
  5753. "id": "note",
  5754. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5755. "onresize": function () { }
  5756. }, {
  5757. closecallback: function () { }
  5758. }, { "style": { "height": "36px" } }).form; //創建窗體
  5759. _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); } }
  5760. break;
  5761. // case "score":
  5762. // _formdiv = new U.UF.UI.form(
  5763. // "量規評分",
  5764. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5765. // "id": "score",
  5766. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5767. // "onresize": function() {}
  5768. // }, {
  5769. // closecallback: function() {}
  5770. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5771. // _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); } }
  5772. // break;
  5773. case "mind":
  5774. _formdiv = new U.UF.UI.form(
  5775. "思維導圖",
  5776. $$("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"
  5777. "id": "mind",
  5778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5779. "onresize": function () { }
  5780. }, {
  5781. closecallback: function () { }
  5782. }, { "style": { "height": "36px" } }).form; //創建窗體
  5783. _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); } }
  5784. break;
  5785. case "doc":
  5786. // U.MD.D.I.isRoom();
  5787. _formdiv = new U.UF.UI.form(
  5788. "協同文檔",
  5789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5790. "id": "doc",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //創建窗體
  5796. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5797. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5798. })
  5799. _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); } }
  5800. break;
  5801. case "train": //好友打開
  5802. _formdiv = new U.UF.UI.form(
  5803. "訓練平臺",
  5804. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5805. "id": "train",
  5806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //創建窗體
  5811. _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); } }
  5812. break;
  5813. case "studentStudy":
  5814. _formdiv = new U.UF.UI.form(
  5815. "課程中心",
  5816. $$("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
  5817. "id": "studentStudy",
  5818. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5819. "onresize": function () { }
  5820. }, {
  5821. closecallback: function () { }
  5822. }, { "style": { "height": "36px" } }).form; //創建窗體
  5823. _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); } }
  5824. break;
  5825. case "mindNetwork": //好友打開
  5826. _formdiv = new U.UF.UI.form(
  5827. "思維網格",
  5828. $$("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 }), {
  5829. "id": "mindNetwork",
  5830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5831. "onresize": function () { }
  5832. }, {
  5833. closecallback: function () { }
  5834. }, { "style": { "height": "36px" } }).form; //創建窗體
  5835. _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); } }
  5836. break;
  5837. case "studentClassRoom": //好友打開
  5838. _formdiv = new U.UF.UI.form(
  5839. "實時課堂",
  5840. $$("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 }), {
  5841. "id": "studentClassRoom",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { }
  5846. }, { "style": { "height": "36px" } }).form; //創建窗體
  5847. _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); } }
  5848. setTimeout(() => {
  5849. U.UF.F.windowZooming(_formdiv)
  5850. }, 0);
  5851. break;
  5852. }
  5853. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5854. //選擇應用處理
  5855. switch (str) {
  5856. case "project": //好友打開
  5857. _formdiv = new U.UF.UI.form(
  5858. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5859. $$("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 }), {
  5860. "id": "project",
  5861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //創建窗體
  5866. _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); } }
  5867. break;
  5868. case "student":
  5869. _formdiv = new U.UF.UI.form(
  5870. "學生管理",
  5871. $$("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 }), {
  5872. "id": "student",
  5873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { }
  5877. }, { "style": { "height": "36px" } }).form; //創建窗體
  5878. _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); } }
  5879. break;
  5880. case "evaluate":
  5881. _formdiv = new U.UF.UI.form(
  5882. "學生評價",
  5883. $$("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 }), {
  5884. "id": "evaluate",
  5885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5886. "onresize": function () { }
  5887. }, {
  5888. closecallback: function () { }
  5889. }, { "style": { "height": "36px" } }).form; //創建窗體
  5890. _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); } }
  5891. break;
  5892. case "sys":
  5893. _formdiv = new U.UF.UI.form(
  5894. "目標管理",
  5895. $$("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 }), {
  5896. "id": "sys",
  5897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5898. "onresize": function () { }
  5899. }, {
  5900. closecallback: function () { }
  5901. }, { "style": { "height": "36px" } }).form; //創建窗體
  5902. _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); } }
  5903. break;
  5904. case "courseDesign":
  5905. _formdiv = new U.UF.UI.form(
  5906. "項目設計",
  5907. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5908. "id": "courseDesign",
  5909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //創建窗體
  5914. _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); } }
  5915. break;
  5916. case "program":
  5917. _formdiv = new U.UF.UI.form(
  5918. "編程平臺",
  5919. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5920. "id": "program",
  5921. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. closecallback: function () { }
  5925. }, { "style": { "height": "36px" } }).form; //創建窗體
  5926. _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); } }
  5927. break;
  5928. case "class":
  5929. _formdiv = new U.UF.UI.form(
  5930. "班級管理",
  5931. $$("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 }), {
  5932. "id": "class",
  5933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5934. "onresize": function () { }
  5935. }, {
  5936. closecallback: function () { }
  5937. }, { "style": { "height": "36px" } }).form; //創建窗體
  5938. _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); } }
  5939. break;
  5940. case "Grade":
  5941. _formdiv = new U.UF.UI.form(
  5942. "年級管理",
  5943. $$("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 }), {
  5944. "id": "Grade",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //創建窗體
  5950. _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); } }
  5951. break;
  5952. case "teacherOffice":
  5953. _formdiv = new U.UF.UI.form(
  5954. "教研室",
  5955. $$("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 }), {
  5956. "id": "teacherOffice",
  5957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5958. "onresize": function () { }
  5959. }, {
  5960. closecallback: function () { }
  5961. }, { "style": { "height": "36px" } }).form; //創建窗體
  5962. _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); } }
  5963. break;
  5964. case "my":
  5965. _formdiv = new U.UF.UI.form(
  5966. "我的資料",
  5967. $$("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 }), {
  5968. "id": "my",
  5969. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5970. "onresize": function () { }
  5971. }, {
  5972. closecallback: function () { }
  5973. }, { "style": { "height": "36px" } }).form; //創建窗體
  5974. _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); } }
  5975. break;
  5976. case "notice":
  5977. _formdiv = new U.UF.UI.form(
  5978. "通知公告",
  5979. $$("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 }), {
  5980. "id": "notice",
  5981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //創建窗體
  5986. _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); } }
  5987. break;
  5988. case "library":
  5989. _formdiv = new U.UF.UI.form(
  5990. "素材庫",
  5991. $$("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 }), {
  5992. "id": "library",
  5993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //創建窗體
  5998. _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); } }
  5999. break;
  6000. case "whiteboard":
  6001. _formdiv = new U.UF.UI.form(
  6002. "電子白板",
  6003. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6004. "id": "whiteboard",
  6005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //創建窗體
  6010. _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); } }
  6011. break;
  6012. case "investigation":
  6013. _formdiv = new U.UF.UI.form(
  6014. "問卷調查",
  6015. $$("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 }), {
  6016. "id": "investigation",
  6017. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, { "style": { "height": "36px" } }).form; //創建窗體
  6022. _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); } }
  6023. break;
  6024. case "note":
  6025. _formdiv = new U.UF.UI.form(
  6026. "便簽分類",
  6027. $$("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 }), {
  6028. "id": "note",
  6029. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. closecallback: function () { }
  6033. }, { "style": { "height": "36px" } }).form; //創建窗體
  6034. _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); } }
  6035. break;
  6036. // case "score":
  6037. // _formdiv = new U.UF.UI.form(
  6038. // "量規評分",
  6039. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6040. // "id": "score",
  6041. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6042. // "onresize": function() {}
  6043. // }, {
  6044. // closecallback: function() {}
  6045. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6046. // _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); } }
  6047. // break;
  6048. case "mind":
  6049. _formdiv = new U.UF.UI.form(
  6050. "思維導圖",
  6051. $$("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"
  6052. "id": "mind",
  6053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6054. "onresize": function () { }
  6055. }, {
  6056. closecallback: function () { }
  6057. }, { "style": { "height": "36px" } }).form; //創建窗體
  6058. _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); } }
  6059. break;
  6060. case "doc":
  6061. // U.MD.D.I.isRoom();
  6062. _formdiv = new U.UF.UI.form(
  6063. "協同文檔",
  6064. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6065. "id": "doc",
  6066. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6067. "onresize": function () { }
  6068. }, {
  6069. closecallback: function () { }
  6070. }, { "style": { "height": "36px" } }).form; //創建窗體
  6071. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6072. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6073. })
  6074. _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); } }
  6075. break;
  6076. case "study":
  6077. _formdiv = new U.UF.UI.form(
  6078. "課程中心",
  6079. $$("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
  6080. "id": "study",
  6081. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //創建窗體
  6086. _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); } }
  6087. break;
  6088. case "mindNetwork": //好友打開
  6089. _formdiv = new U.UF.UI.form(
  6090. "思維網格",
  6091. $$("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 }), {
  6092. "id": "mindNetwork",
  6093. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //創建窗體
  6098. _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); } }
  6099. break;
  6100. case "train": //好友打開
  6101. _formdiv = new U.UF.UI.form(
  6102. "訓練平臺",
  6103. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6104. "id": "mindNetwork",
  6105. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, { "style": { "height": "36px" } }).form; //創建窗體
  6110. _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); } }
  6111. break;
  6112. case "teacherClassRoom": //好友打開
  6113. _formdiv = new U.UF.UI.form(
  6114. "實時課堂",
  6115. $$("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 }), {
  6116. "id": "teacherClassRoom",
  6117. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //創建窗體
  6122. _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); } }
  6123. setTimeout(() => {
  6124. U.UF.F.windowZooming(_formdiv)
  6125. }, 0);
  6126. break;
  6127. }
  6128. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6129. switch (str) {
  6130. case "project": //好友打開
  6131. _formdiv = new U.UF.UI.form(
  6132. "課程管理",
  6133. $$("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 }), {
  6134. "id": "project",
  6135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //創建窗體
  6140. _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); } }
  6141. break;
  6142. case "evaluate":
  6143. _formdiv = new U.UF.UI.form(
  6144. "學生評價",
  6145. $$("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 }), {
  6146. "id": "evaluate",
  6147. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //創建窗體
  6152. _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); } }
  6153. break;
  6154. case "notice":
  6155. _formdiv = new U.UF.UI.form(
  6156. "通知公告",
  6157. $$("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 }), {
  6158. "id": "notice",
  6159. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //創建窗體
  6164. _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); } }
  6165. break;
  6166. case "stuLibrary":
  6167. _formdiv = new U.UF.UI.form(
  6168. "學習資料",
  6169. $$("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 }), {
  6170. "id": "stuLibrary",
  6171. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //創建窗體
  6176. _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); } }
  6177. break;
  6178. case "program":
  6179. _formdiv = new U.UF.UI.form(
  6180. "編程平臺",
  6181. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6182. "id": "program",
  6183. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //創建窗體
  6188. _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); } }
  6189. break;
  6190. case "whiteboard":
  6191. _formdiv = new U.UF.UI.form(
  6192. "電子白板",
  6193. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6194. "id": "whiteboard",
  6195. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //創建窗體
  6200. _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); } }
  6201. break;
  6202. case "investigation":
  6203. _formdiv = new U.UF.UI.form(
  6204. "問卷調查",
  6205. $$("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 }), {
  6206. "id": "investigation",
  6207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, { "style": { "height": "36px" } }).form; //創建窗體
  6212. _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); } }
  6213. break;
  6214. case "mind":
  6215. _formdiv = new U.UF.UI.form(
  6216. "思維導圖",
  6217. $$("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"
  6218. "id": "mind",
  6219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6220. "onresize": function () { }
  6221. }, {
  6222. closecallback: function () { }
  6223. }, { "style": { "height": "36px" } }).form; //創建窗體
  6224. _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); } }
  6225. break;
  6226. case "doc":
  6227. // U.MD.D.I.isRoom();
  6228. _formdiv = new U.UF.UI.form(
  6229. "協同文檔",
  6230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6231. "id": "doc",
  6232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //創建窗體
  6237. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6238. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6239. })
  6240. _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); } }
  6241. break;
  6242. case "study":
  6243. _formdiv = new U.UF.UI.form(
  6244. "課程中心",
  6245. $$("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
  6246. "id": "study",
  6247. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, { "style": { "height": "36px" } }).form; //創建窗體
  6252. _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); } }
  6253. break;
  6254. case "mindNetwork": //好友打開
  6255. _formdiv = new U.UF.UI.form(
  6256. "思維網格",
  6257. $$("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 }), {
  6258. "id": "mindNetwork",
  6259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6260. "onresize": function () { }
  6261. }, {
  6262. closecallback: function () { }
  6263. }, { "style": { "height": "36px" } }).form; //創建窗體
  6264. _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); } }
  6265. break;
  6266. case "train": //好友打開
  6267. _formdiv = new U.UF.UI.form(
  6268. "訓練平臺",
  6269. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6270. "id": "train",
  6271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6272. "onresize": function () { }
  6273. }, {
  6274. closecallback: function () { }
  6275. }, { "style": { "height": "36px" } }).form; //創建窗體
  6276. _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); } }
  6277. break;
  6278. case "sys":
  6279. _formdiv = new U.UF.UI.form(
  6280. "目標管理",
  6281. $$("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 }), {
  6282. "id": "sys",
  6283. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6284. "onresize": function () { }
  6285. }, {
  6286. closecallback: function () { }
  6287. }, { "style": { "height": "36px" } }).form; //創建窗體
  6288. _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); } }
  6289. break;
  6290. case "courseDesign":
  6291. _formdiv = new U.UF.UI.form(
  6292. "項目設計",
  6293. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6294. "id": "courseDesign",
  6295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6296. "onresize": function () { }
  6297. }, {
  6298. closecallback: function () { }
  6299. }, { "style": { "height": "36px" } }).form; //創建窗體
  6300. _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); } }
  6301. break;
  6302. }
  6303. } else if (!_type) {
  6304. switch (str) {
  6305. case "my":
  6306. _formdiv = new U.UF.UI.form(
  6307. "我的資料",
  6308. $$("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 }), {
  6309. "id": "my",
  6310. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6316. break;
  6317. }
  6318. }
  6319. switch (str) {
  6320. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6321. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6322. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6323. case "formulaEdi": //公式編輯
  6324. _formdiv = new U.UF.UI.form(
  6325. "公式編輯",
  6326. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6327. "id": "formulaEdi",
  6328. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6329. "onresize": function () { }
  6330. }, {
  6331. closecallback: function () { }
  6332. }, { "style": { "height": "36px" } }).form; //創建窗體
  6333. _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); } }
  6334. break;
  6335. case "molStr": //分子結構
  6336. _formdiv = new U.UF.UI.form(
  6337. "分子結構",
  6338. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6339. "id": "molStr",
  6340. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //創建窗體
  6345. _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); } }
  6346. break;
  6347. case "timeAxis": //時間軸
  6348. _formdiv = new U.UF.UI.form(
  6349. "時間軸",
  6350. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6351. "id": "timeAxis",
  6352. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //創建窗體
  6357. _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); } }
  6358. break;
  6359. case "AIprogram2": //AI體驗
  6360. _formdiv = new U.UF.UI.form(
  6361. "AI體驗",
  6362. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6363. "id": "AIprogram2",
  6364. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6365. "onresize": function () { }
  6366. }, {
  6367. closecallback: function () { }
  6368. }, { "style": { "height": "36px" } }).form; //創建窗體
  6369. _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); } }
  6370. break;
  6371. case "Pythonprogram": //python編程
  6372. _formdiv = new U.UF.UI.form(
  6373. "Python編程",
  6374. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6375. "id": "Pythonprogram",
  6376. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6377. "onresize": function () { }
  6378. }, {
  6379. closecallback: function () { }
  6380. }, { "style": { "height": "36px" } }).form; //創建窗體
  6381. _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); } }
  6382. break;
  6383. case "AIprogram": //ai編程
  6384. _formdiv = new U.UF.UI.form(
  6385. "AI編程平臺",
  6386. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6387. "id": "AIprogram",
  6388. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, { "style": { "height": "36px" } }).form; //創建窗體
  6393. _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); } }
  6394. break;
  6395. case "CocoPi": //CocoPi
  6396. _formdiv = new U.UF.UI.form(
  6397. "CocoPi",
  6398. $$("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" }), {
  6399. "id": "CocoPi",
  6400. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6401. "onresize": function () { }
  6402. }, {
  6403. closecallback: function () { }
  6404. }, { "style": { "height": "36px" } }).form; //創建窗體
  6405. _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); } }
  6406. break;
  6407. case "Wood": //Wood
  6408. _formdiv = new U.UF.UI.form(
  6409. "海龜編程",
  6410. $$("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/" }), {
  6411. "id": "Wood",
  6412. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, { "style": { "height": "36px" } }).form; //創建窗體
  6417. _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); } }
  6418. break;
  6419. case "car": //模擬駕駛
  6420. _formdiv = new U.UF.UI.form(
  6421. "模擬駕駛",
  6422. $$("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/" }), {
  6423. "id": "car",
  6424. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, { "style": { "height": "36px" } }).form; //創建窗體
  6429. _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); } }
  6430. break;
  6431. case "lineSearch": //路徑搜索
  6432. _formdiv = new U.UF.UI.form(
  6433. "路徑搜索",
  6434. $$("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/" }), {
  6435. "id": "lineSearch",
  6436. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6437. "onresize": function () { }
  6438. }, {
  6439. closecallback: function () { }
  6440. }, { "style": { "height": "36px" } }).form; //創建窗體
  6441. _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); } }
  6442. break;
  6443. case "deepLearning": //深度學習
  6444. _formdiv = new U.UF.UI.form(
  6445. "深度學習",
  6446. $$("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/#" }), {
  6447. "id": "deepLearning",
  6448. "style": { "width": "70%", "height": "90%", "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/deepLearning.png)" }, "name": "深度學習", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6454. break;
  6455. case "allHistory": //深度學習
  6456. _formdiv = new U.UF.UI.form(
  6457. "全歷史",
  6458. $$("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/" }), {
  6459. "id": "allHistory",
  6460. "style": { "width": "70%", "height": "90%", "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/allHistory.png)" }, "name": "全歷史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6466. break;
  6467. case "chatPDF": //ai編程
  6468. _formdiv = new U.UF.UI.form(
  6469. "chatPDF",
  6470. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6471. "id": "chatPDF",
  6472. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //創建窗體
  6477. _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); } }
  6478. break;
  6479. case "resources": //國家教育
  6480. _formdiv = new U.UF.UI.form(
  6481. "國家教育",
  6482. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6483. "id": "resources",
  6484. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //創建窗體
  6489. _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); } }
  6490. break;
  6491. case "codeEdit": //源碼編輯
  6492. _formdiv = new U.UF.UI.form(
  6493. "源碼編輯",
  6494. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6495. "id": "codeEdit",
  6496. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //創建窗體
  6501. _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); } }
  6502. break; //
  6503. case "MindMap": //MindMap
  6504. _formdiv = new U.UF.UI.form(
  6505. "MindMap",
  6506. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6507. "id": "MindMap",
  6508. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //創建窗體
  6513. _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); } }
  6514. break;
  6515. case "netWorkPanel": //netWorkPanel
  6516. _formdiv = new U.UF.UI.form(
  6517. "netWorkPanel",
  6518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6519. "id": "netWorkPanel",
  6520. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, { "style": { "height": "36px" } }).form; //創建窗體
  6525. _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); } }
  6526. break;
  6527. case "GeoGebra": //GeoGebra
  6528. _formdiv = new U.UF.UI.form(
  6529. "GeoGebra",
  6530. $$("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" }), {
  6531. "id": "GeoGebra",
  6532. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6533. "onresize": function () { }
  6534. }, {
  6535. closecallback: function () { }
  6536. }, { "style": { "height": "36px" } }).form; //創建窗體
  6537. _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); } }
  6538. break;
  6539. case "translation": //翻譯
  6540. _formdiv = new U.UF.UI.form(
  6541. "翻譯",
  6542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6543. "id": "translation",
  6544. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6545. "onresize": function () { }
  6546. }, {
  6547. closecallback: function () { }
  6548. }, { "style": { "height": "36px" } }).form; //創建窗體
  6549. _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); } }
  6550. break;
  6551. case "mohe": //魔盒
  6552. _formdiv = new U.UF.UI.form(
  6553. "魔盒識字",
  6554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6555. "id": "mohe",
  6556. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, { "style": { "height": "36px" } }).form; //創建窗體
  6561. _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); } }
  6562. break;
  6563. case "24game": //24點
  6564. _formdiv = new U.UF.UI.form(
  6565. "24點",
  6566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6567. "id": "24game",
  6568. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6569. "onresize": function () { }
  6570. }, {
  6571. closecallback: function () { }
  6572. }, { "style": { "height": "36px" } }).form; //創建窗體
  6573. _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); } }
  6574. break;
  6575. case "case":
  6576. _formdiv = new U.UF.UI.form(
  6577. "課程進展",
  6578. $$("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 }), {
  6579. "id": "case",
  6580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //創建窗體
  6585. _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); } }
  6586. break;
  6587. case "snf":
  6588. _formdiv = new U.UF.UI.form(
  6589. "賽諾梵",
  6590. $$("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" }), {
  6591. "id": "snf",
  6592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //創建窗體
  6597. _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); } }
  6598. break;
  6599. case "hanFamily":
  6600. _formdiv = new U.UF.UI.form(
  6601. "漢字家族",
  6602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6603. "id": "hanFamily",
  6604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, { "style": { "height": "36px" } }).form; //創建窗體
  6609. _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); } }
  6610. break;
  6611. case "hanClassics":
  6612. _formdiv = new U.UF.UI.form(
  6613. "國學經典",
  6614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6615. "id": "hanClassics",
  6616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //創建窗體
  6621. _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); } }
  6622. break;
  6623. case "hanTraining":
  6624. _formdiv = new U.UF.UI.form(
  6625. "筆畫訓練",
  6626. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6627. "id": "hanTraining",
  6628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //創建窗體
  6633. _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); } }
  6634. break;
  6635. case "hanClass":
  6636. _formdiv = new U.UF.UI.form(
  6637. "書法課堂",
  6638. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6639. "id": "hanClass",
  6640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //創建窗體
  6645. _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); } }
  6646. break;
  6647. case "han":
  6648. _formdiv = new U.UF.UI.form(
  6649. "漢字宮",
  6650. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6651. "id": "han",
  6652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, { "style": { "height": "36px" } }).form; //創建窗體
  6657. _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); } }
  6658. break;
  6659. case "projectGM": //課程管理
  6660. _formdiv = new U.UF.UI.form(
  6661. "課程管理",
  6662. $$("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 }), {
  6663. "id": "projectGM",
  6664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //創建窗體
  6669. _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); } }
  6670. break;
  6671. case "studyGM": //課程中心
  6672. _formdiv = new U.UF.UI.form(
  6673. "課程中心",
  6674. $$("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
  6675. "id": "study",
  6676. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //創建窗體
  6681. _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); } }
  6682. break;
  6683. // studentGM
  6684. case "studentGM": //學生管理
  6685. _formdiv = new U.UF.UI.form(
  6686. "學生管理",
  6687. $$("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 }), {
  6688. "id": "studentGM",
  6689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //創建窗體
  6694. _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); } }
  6695. break;
  6696. case "evaluateGM": //學生評價
  6697. _formdiv = new U.UF.UI.form(
  6698. "學生評價",
  6699. $$("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 }), {
  6700. "id": "evaluateGM",
  6701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //創建窗體
  6706. _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); } }
  6707. break;
  6708. // classGM
  6709. case "classGM": //班級管理
  6710. _formdiv = new U.UF.UI.form(
  6711. "班級管理",
  6712. $$("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 }), {
  6713. "id": "classGM",
  6714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //創建窗體
  6719. _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); } }
  6720. break;
  6721. // dataGM
  6722. case "dataGM":
  6723. _formdiv = new U.UF.UI.form(
  6724. "我的資料",
  6725. $$("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 }), {
  6726. "id": "dataGM",
  6727. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6728. "onresize": function () { }
  6729. }, {
  6730. closecallback: function () { }
  6731. }, { "style": { "height": "36px" } }).form; //創建窗體
  6732. _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); } }
  6733. break;
  6734. // caseGM
  6735. case "caseGM": //課程進展
  6736. _formdiv = new U.UF.UI.form(
  6737. "課程進展",
  6738. $$("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 }), {
  6739. "id": "caseGM",
  6740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6741. "onresize": function () { }
  6742. }, {
  6743. closecallback: function () { }
  6744. }, { "style": { "height": "36px" } }).form; //創建窗體
  6745. _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); } }
  6746. break;
  6747. // meterialGM
  6748. case "meterialGM": //素材庫
  6749. _formdiv = new U.UF.UI.form(
  6750. "素材庫",
  6751. $$("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 }), {
  6752. "id": "meterialGM",
  6753. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6754. "onresize": function () { }
  6755. }, {
  6756. closecallback: function () { }
  6757. }, { "style": { "height": "36px" } }).form; //創建窗體
  6758. _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); } }
  6759. break;
  6760. // evaluateSGM
  6761. case "evaluateSGM": //我的評價
  6762. _formdiv = new U.UF.UI.form(
  6763. "我的評價",
  6764. $$("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 }), {
  6765. "id": "evaluateSGM",
  6766. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6767. "onresize": function () { }
  6768. }, {
  6769. closecallback: function () { }
  6770. }, { "style": { "height": "36px" } }).form; //創建窗體
  6771. _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); } }
  6772. break;
  6773. case "jupyter": //jupyter
  6774. _formdiv = new U.UF.UI.form(
  6775. "jupyter",
  6776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6777. "id": "jupyter",
  6778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //創建窗體
  6783. _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); } }
  6784. break;
  6785. case "number": //數字實驗室
  6786. _formdiv = new U.UF.UI.form(
  6787. "數字實驗室",
  6788. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6789. "id": "number",
  6790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //創建窗體
  6795. _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); } }
  6796. break;
  6797. case "studentCourse": //項目管理 學生
  6798. _formdiv = new U.UF.UI.form(
  6799. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6800. $$("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 }), {
  6801. "id": "studentCourse",
  6802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //創建窗體
  6807. _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); } }
  6808. break;
  6809. case "studentCourseS": //項目管理 老師
  6810. _formdiv = new U.UF.UI.form(
  6811. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6812. $$("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 }), {
  6813. "id": "studentCourseS",
  6814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //創建窗體
  6819. _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); } }
  6820. break;
  6821. case "studentIndex": //項目中心
  6822. _formdiv = new U.UF.UI.form(
  6823. "項目中心",
  6824. $$("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 }), {
  6825. "id": "studentIndex",
  6826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //創建窗體
  6831. _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); } }
  6832. break;
  6833. case "CaseDesignS":
  6834. _formdiv = new U.UF.UI.form(
  6835. "項目進展",
  6836. $$("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 }), {
  6837. "id": "case",
  6838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //創建窗體
  6843. _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); } }
  6844. break;
  6845. case "tcStudent": //騰訊學生管理
  6846. _formdiv = new U.UF.UI.form(
  6847. "學生管理",
  6848. $$("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 }), {
  6849. "id": "tcStudent",
  6850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6851. "onresize": function () { }
  6852. }, {
  6853. closecallback: function () { }
  6854. }, { "style": { "height": "36px" } }).form; //創建窗體
  6855. _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); } }
  6856. break;
  6857. case "tcSchool": //騰訊學校管理
  6858. _formdiv = new U.UF.UI.form(
  6859. "學校管理",
  6860. $$("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 }), {
  6861. "id": "tcSchool",
  6862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //創建窗體
  6867. _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); } }
  6868. break;
  6869. case "tcTeacher": //騰訊學校管理
  6870. _formdiv = new U.UF.UI.form(
  6871. "教師管理",
  6872. $$("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 }), {
  6873. "id": "tcTeacher",
  6874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //創建窗體
  6879. _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); } }
  6880. break;
  6881. case "teacher":
  6882. _formdiv = new U.UF.UI.form(
  6883. "教師管理",
  6884. $$("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 }), {
  6885. "id": "teacher",
  6886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6887. "onresize": function () { }
  6888. }, {
  6889. closecallback: function () { }
  6890. }, { "style": { "height": "36px" } }).form; //創建窗體
  6891. _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); } }
  6892. break;
  6893. case "tcData": //騰訊我的資料
  6894. _formdiv = new U.UF.UI.form(
  6895. "我的資料",
  6896. $$("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 }), {
  6897. "id": "tcData",
  6898. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //創建窗體
  6903. _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); } }
  6904. break;
  6905. case "tcNotice": //騰訊消息通知
  6906. _formdiv = new U.UF.UI.form(
  6907. "消息通知",
  6908. $$("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 }), {
  6909. "id": "tcNotice",
  6910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6911. "onresize": function () { }
  6912. }, {
  6913. closecallback: function () { }
  6914. }, { "style": { "height": "36px" } }).form; //創建窗體
  6915. _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); } }
  6916. break;
  6917. case "myReport": //好友打開
  6918. _formdiv = new U.UF.UI.form(
  6919. "我的評價",
  6920. $$("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 }), {
  6921. "id": "myReport",
  6922. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6923. "onresize": function () { }
  6924. }, {
  6925. closecallback: function () { }
  6926. }, { "style": { "height": "36px" } }).form; //創建窗體
  6927. _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); } }
  6928. break;
  6929. case "learnAna": //好友打開
  6930. _formdiv = new U.UF.UI.form(
  6931. "學習分析",
  6932. $$("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 }), {
  6933. "id": "learnAna",
  6934. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6935. "onresize": function () { }
  6936. }, {
  6937. closecallback: function () { }
  6938. }, { "style": { "height": "36px" } }).form; //創建窗體
  6939. _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); } }
  6940. break;
  6941. case "AIChat": //AI共創
  6942. _formdiv = new U.UF.UI.form(
  6943. "AI共創",
  6944. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  6945. "id": "AIChat",
  6946. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6947. "onresize": function () { }
  6948. }, {
  6949. istop: true,
  6950. closecallback: function () { $("#aichat_icon").remove(); },
  6951. narrowcallback: function () {
  6952. if (!$("#aichat_icon")[0]) {
  6953. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6954. }
  6955. },
  6956. }, { "style": { "height": "36px" } }).form; //創建窗體
  6957. _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); } }
  6958. break;
  6959. case "ainew": //AI共創
  6960. _formdiv = new U.UF.UI.form(
  6961. "AI協同",
  6962. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  6963. "id": "ainew",
  6964. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6965. "onresize": function () { }
  6966. }, {
  6967. closecallback: function () { }
  6968. }, { "style": { "height": "36px" } }).form; //創建窗體
  6969. _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); } }
  6970. break;
  6971. case "gpt4": //gpt4
  6972. _formdiv = new U.UF.UI.form(
  6973. "AI助手",
  6974. $$("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 }), {
  6975. "id": "gpt4",
  6976. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //創建窗體
  6981. _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); } }
  6982. break;
  6983. case "aigpt": //gpt4
  6984. _formdiv = new U.UF.UI.form(
  6985. "AI助手+",
  6986. $$("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 }), {
  6987. "id": "aigpt",
  6988. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6989. "onresize": function () { }
  6990. }, {
  6991. closecallback: function () {
  6992. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6993. }
  6994. }, { "style": { "height": "36px" } }).form; //創建窗體
  6995. _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); } }
  6996. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6997. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6998. })
  6999. break;
  7000. case "aiKnowledge": //aiKnowledge
  7001. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  7002. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7003. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7004. }
  7005. _formdiv = new U.UF.UI.form(
  7006. "知識建構",
  7007. $$("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": _url }), {
  7008. "id": "aiKnowledge",
  7009. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7010. "onresize": function () { }
  7011. }, {
  7012. closecallback: function () { }
  7013. }, { "style": { "height": "36px" } }).form; //創建窗體
  7014. _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); } }
  7015. break;
  7016. case "futureClass": //AI共創
  7017. _formdiv = new U.UF.UI.form(
  7018. "協同建構",
  7019. $$("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.cn
  7020. "id": "synergyCourse",
  7021. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7022. "onresize": function () { }
  7023. }, {
  7024. closecallback: function () {
  7025. $("iframe", _formdiv)[0].contentWindow.loginout();
  7026. }
  7027. }, { "style": { "height": "36px" } }).form; //創建窗體
  7028. _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); } }
  7029. break;
  7030. case "aiagent": //ai agent
  7031. _formdiv = new U.UF.UI.form(
  7032. "AI Agent",
  7033. $$("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" }), {
  7034. "id": "AIAgent",
  7035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7036. "onresize": function () { }
  7037. }, {
  7038. closecallback: function () { }
  7039. }, { "style": { "height": "36px" } }).form; //創建窗體
  7040. _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); } }
  7041. break;
  7042. case "dataBoard": //數據看板
  7043. _formdiv = new U.UF.UI.form(
  7044. "數據看板",
  7045. $$("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 }), {
  7046. "id": "dataBoard",
  7047. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7048. "onresize": function () { }
  7049. }, {
  7050. closecallback: function () { }
  7051. }, { "style": { "height": "36px" } }).form; //創建窗體
  7052. _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); } }
  7053. break;
  7054. case "dataBoardSies": //數據融合
  7055. _formdiv = new U.UF.UI.form(
  7056. "數據融合",
  7057. $$("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 }), {
  7058. "id": "dataBoardSies",
  7059. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7060. "onresize": function () { }
  7061. }, {
  7062. closecallback: function () { }
  7063. }, { "style": { "height": "36px" } }).form; //創建窗體
  7064. _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); } }
  7065. break;
  7066. case "dataBoardNew": //數據看板
  7067. _formdiv = new U.UF.UI.form(
  7068. "綜合看板",
  7069. $$("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 }), {
  7070. "id": "dataBoardNew",
  7071. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7072. "onresize": function () { }
  7073. }, {
  7074. closecallback: function () { }
  7075. }, { "style": { "height": "36px" } }).form; //創建窗體
  7076. _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); } }
  7077. break;
  7078. case "dataBoardTest": //數據看板
  7079. _formdiv = new U.UF.UI.form(
  7080. "評測看板",
  7081. $$("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 }), {
  7082. "id": "dataBoardTest",
  7083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7084. "onresize": function () { }
  7085. }, {
  7086. closecallback: function () { }
  7087. }, { "style": { "height": "36px" } }).form; //創建窗體
  7088. _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); } }
  7089. break;
  7090. case "AIAnalyse": //AI共創
  7091. _formdiv = new U.UF.UI.form(
  7092. "AI分析",
  7093. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  7094. "id": "AIAnalyse",
  7095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7096. "onresize": function () { }
  7097. }, {
  7098. closecallback: function () { }
  7099. }, { "style": { "height": "36px" } }).form; //創建窗體
  7100. _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); } }
  7101. break;
  7102. case "studioCourse": //AI共創
  7103. _formdiv = new U.UF.UI.form(
  7104. "工作管理",
  7105. $$("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 }), {
  7106. "id": "studioCourse",
  7107. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7108. "onresize": function () { }
  7109. }, {
  7110. closecallback: function () { }
  7111. }, { "style": { "height": "36px" } }).form; //創建窗體
  7112. _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); } }
  7113. break;
  7114. case "studioIndex": //AI共創
  7115. _formdiv = new U.UF.UI.form(
  7116. "工作中心",
  7117. $$("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 }), {
  7118. "id": "studioIndex",
  7119. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7120. "onresize": function () { }
  7121. }, {
  7122. closecallback: function () { }
  7123. }, { "style": { "height": "36px" } }).form; //創建窗體
  7124. _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); } }
  7125. break;
  7126. case "source":
  7127. _formdiv = new U.UF.UI.form(
  7128. "教學資源",
  7129. $$("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 }), {
  7130. "id": "source",
  7131. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7132. "onresize": function () { }
  7133. }, {
  7134. closecallback: function () { }
  7135. }, { "style": { "height": "36px" } }).form; //創建窗體
  7136. _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); } }
  7137. break;
  7138. case "testTeacher":
  7139. _formdiv = new U.UF.UI.form(
  7140. "智能表單",
  7141. $$("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 }), {
  7142. "id": "testTeacher",
  7143. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7144. "onresize": function () { }
  7145. }, {
  7146. closecallback: function () { }
  7147. }, { "style": { "height": "36px" } }).form; //創建窗體
  7148. _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); } }
  7149. break;
  7150. case "testStudent":
  7151. _formdiv = new U.UF.UI.form(
  7152. "教師中心",
  7153. $$("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 }), {
  7154. "id": "testStudent",
  7155. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7156. "onresize": function () { }
  7157. }, {
  7158. closecallback: function () { }
  7159. }, { "style": { "height": "36px" } }).form; //創建窗體
  7160. _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); } }
  7161. break;
  7162. case "testTeacherSies":
  7163. _formdiv = new U.UF.UI.form(
  7164. "教師管理",
  7165. $$("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 }), {
  7166. "id": "testTeacherSies",
  7167. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7168. "onresize": function () { }
  7169. }, {
  7170. closecallback: function () { }
  7171. }, { "style": { "height": "36px" } }).form; //創建窗體
  7172. _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); } }
  7173. break;
  7174. case "testStudentSies":
  7175. _formdiv = new U.UF.UI.form(
  7176. "教師中心",
  7177. $$("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 }), {
  7178. "id": "testStudentSies",
  7179. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7180. "onresize": function () { }
  7181. }, {
  7182. closecallback: function () { }
  7183. }, { "style": { "height": "36px" } }).form; //創建窗體
  7184. _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); } }
  7185. break;
  7186. case "ytpbl": //消息通知
  7187. _formdiv = new U.UF.UI.form(
  7188. "案例征集",
  7189. $$("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 }), {
  7190. "id": "ytpbl",
  7191. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7192. "onresize": function () { }
  7193. }, {
  7194. closecallback: function () { }
  7195. }, { "style": { "height": "36px" } }).form; //創建窗體
  7196. _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); } }
  7197. // 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");
  7198. break;
  7199. case "aiCourseResource": //人工智能窗體
  7200. _formdiv = new U.UF.UI.form(
  7201. false,
  7202. $$("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 }), {
  7203. "id": "aiCourseResource",
  7204. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7205. "onresize": function () { },
  7206. "isdrag": false,
  7207. }, {
  7208. closecallback: function () { }
  7209. }, { "style": { "height": "36px" } }).form; //創建窗體
  7210. _taskbar = ''
  7211. break;
  7212. case "szdjgCocooroboX": //圖形化編程
  7213. _formdiv = new U.UF.UI.form(
  7214. "圖形化編程",
  7215. $$("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" }), {
  7216. "id": "szdjgCocooroboX",
  7217. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7218. "onresize": function () { }
  7219. }, {
  7220. closecallback: function () { }
  7221. }, { "style": { "height": "36px" } }).form; //創建窗體
  7222. _taskbar = ''
  7223. break;
  7224. case "szdjgPython": //python編程
  7225. _formdiv = new U.UF.UI.form(
  7226. "Python編程",
  7227. $$("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" }), {
  7228. "id": "szdjgPython",
  7229. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7230. "onresize": function () { }
  7231. }, {
  7232. closecallback: function () { }
  7233. }, { "style": { "height": "36px" } }).form; //創建窗體
  7234. _taskbar = ''
  7235. break;
  7236. case "Record":
  7237. _formdiv = new U.UF.UI.form(
  7238. "觀察記錄",
  7239. $$("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 }), {
  7240. "id": "Record",
  7241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7242. "onresize": function () { }
  7243. }, {
  7244. closecallback: function () { }
  7245. }, { "style": { "height": "36px" } }).form; //創建窗體
  7246. _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); } }
  7247. break;
  7248. case "aigptCourse":
  7249. _formdiv = new U.UF.UI.form(
  7250. "AI智能體",
  7251. $$("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' }), {
  7252. "id": "aigptCourse",
  7253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7254. "onresize": function () { }
  7255. }, {
  7256. closecallback: function () { }
  7257. }, { "style": { "height": "36px" } }).form; //創建窗體
  7258. _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); } }
  7259. break;
  7260. case "classroomObservation":
  7261. _formdiv = new U.UF.UI.form(
  7262. "課堂觀察",
  7263. $$("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 }), {
  7264. "id": "classroomObservation",
  7265. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7266. "onresize": function () { }
  7267. }, {
  7268. closecallback: function () { }
  7269. }, { "style": { "height": "36px" } }).form; //創建窗體
  7270. _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); } }
  7271. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7272. break;
  7273. case "pblCourse":
  7274. _formdiv = new U.UF.UI.form(
  7275. "學生PBL",
  7276. $$("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 }), {
  7277. "id": "pblCourse",
  7278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7279. "onresize": function () { }
  7280. }, {
  7281. closecallback: function () { }
  7282. }, { "style": { "height": "36px" } }).form; //創建窗體
  7283. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "學生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7284. break;
  7285. case "appStore":
  7286. U.MD.D.addOp('','cocoflowOpen','')
  7287. _formdiv = new U.UF.UI.form(
  7288. "CocoFlow",
  7289. $$("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": "//cloud.cocorobo.hk/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7290. "id": "appStore",
  7291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7292. "onresize": function () { }
  7293. }, {
  7294. closecallback: function () { }
  7295. }, { "style": { "height": "36px" } }).form; //創建窗體
  7296. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7297. break;
  7298. case "sassPlatform":
  7299. _formdiv = new U.UF.UI.form(
  7300. "Sass通用後臺管理",
  7301. $$("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/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7302. "id": "sassPlatform",
  7303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7304. "onresize": function () { }
  7305. }, {
  7306. closecallback: function () { }
  7307. }, { "style": { "height": "36px" } }).form; //創建窗體
  7308. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7309. break;
  7310. case "EDU":
  7311. _formdiv = new U.UF.UI.form(
  7312. "EDU",
  7313. $$("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": "//edu.cocorobo.cn" }), {
  7314. "id": "EDU",
  7315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7316. "onresize": function () { }
  7317. }, {
  7318. closecallback: function () { }
  7319. }, { "style": { "height": "36px" } }).form; //創建窗體
  7320. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7321. break;
  7322. case "knowledge":
  7323. _formdiv = new U.UF.UI.form(
  7324. "知識庫",
  7325. $$("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://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7326. "id": "knowledge",
  7327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7328. "onresize": function () { }
  7329. }, {
  7330. closecallback: function () { }
  7331. }, { "style": { "height": "36px" } }).form; //創建窗體
  7332. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7333. break;
  7334. case "userExamine":
  7335. _formdiv = new U.UF.UI.form(
  7336. "賬號申請",
  7337. $$("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": "//user.cocorobo.cn/#/examineDialog" }), {
  7338. "id": "userExamine",
  7339. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7340. "onresize": function () { }
  7341. }, {
  7342. closecallback: function () { }
  7343. }, { "style": { "height": "36px" } }).form; //創建窗體
  7344. break;
  7345. }
  7346. //U.MD.D.I.openClick(str);
  7347. //如果有任務欄信息
  7348. if (_taskbar) {
  7349. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7350. }
  7351. if(iframeBool){
  7352. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7353. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7354. // console.log("iframe進入");
  7355. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7356. // };
  7357. setTimeout(() => {
  7358. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7359. }, 2000);
  7360. }
  7361. }
  7362. // U.MD.D.I.openClick = function(str){
  7363. // var click = '';
  7364. // switch(str){
  7365. // case 'friend':
  7366. // click = '我的好友';
  7367. // break;
  7368. // case 'domain':
  7369. // click = '域名管理';
  7370. // break;
  7371. // case 'disk':
  7372. // click = '我的雲盤';
  7373. // break;
  7374. // case 'word':
  7375. // click = 'Word';
  7376. // break;
  7377. // case 'excel':
  7378. // click = 'Execl';
  7379. // break;
  7380. // case 'txt':
  7381. // click = '文本文件';
  7382. // break;
  7383. // case 'lookupFriend':
  7384. // click = '查找好友';
  7385. // break;
  7386. // case 'ftp':
  7387. // click = 'FTP';
  7388. // break;
  7389. // case 'group':
  7390. // click = '群組';
  7391. // break;
  7392. // case 'set':
  7393. // click = '我的設置';
  7394. // break;
  7395. // case 'systemSet':
  7396. // click = '系統設置';
  7397. // break;
  7398. // case 'boomYun':
  7399. // click = '互聯辦公';
  7400. // break;
  7401. // case 'xz':
  7402. // click = '雲端下載';
  7403. // break;
  7404. // case 'client':
  7405. // click = '有思瀏覽器';
  7406. // break;
  7407. // case 'backEndProgramming':
  7408. // click = '在線後臺編程';
  7409. // break;
  7410. // case 'frontEndProgramming':
  7411. // click = '在線前端編程';
  7412. // break;
  7413. // default: break;
  7414. // }
  7415. // if(U.MD.D.I.Ip && click){
  7416. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7417. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7418. // })
  7419. // }
  7420. // }
  7421. /**
  7422. *函數作用:ajax簡易函數,使用post格式
  7423. *@param url {data} 後臺地址
  7424. *@param data {data} 參數json
  7425. *@param fn {data} 回調函數
  7426. *
  7427. */
  7428. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7429. // var xhr = new XMLHttpRequest();
  7430. // xhr.open("GET",url,true);
  7431. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7432. // xhr.onreadystatechange = function(){
  7433. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7434. // fn.call(this,xhr.responseText);
  7435. // }
  7436. // };
  7437. // xhr.send();
  7438. // }
  7439. /*判斷是否是內網IP*/
  7440. // U.MD.D.I.isInnerIPFn = function(str){
  7441. // var curPageUrl = str;
  7442. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7443. // curPageUrl =curPageUrl.replace(reg1,'');
  7444. // // console.log('curPageUrl-1 '+curPageUrl);
  7445. // var reg2 = /\:+/g;//替換冒號為一點
  7446. // curPageUrl =curPageUrl.replace(reg2,'.');
  7447. // // console.log('curPageUrl-2 '+curPageUrl);
  7448. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7449. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7450. // if(curPageUrl[2] != '16'){
  7451. // return ipAddress;
  7452. // }else{
  7453. // return false;
  7454. // }
  7455. // }
  7456. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7457. // //compatibility for firefox and chrome
  7458. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7459. // var pc = new myPeerConnection({
  7460. // iceServers: []
  7461. // }),
  7462. // noop = function() {},
  7463. // localIPs = {},
  7464. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7465. // key;
  7466. // function iterateIP(ip) {
  7467. // if (!localIPs[ip]) onNewIP(ip);
  7468. // localIPs[ip] = true;
  7469. // }
  7470. // //create a bogus data channel
  7471. // pc.createDataChannel("");
  7472. // // create offer and set local description
  7473. // pc.createOffer().then(function(sdp) {
  7474. // sdp.sdp.split('\n').forEach(function(line) {
  7475. // if (line.indexOf('candidate') < 0) return;
  7476. // line.match(ipRegex).forEach(iterateIP);
  7477. // });
  7478. // pc.setLocalDescription(sdp, noop, noop);
  7479. // }).catch(function(reason) {
  7480. // // An error occurred, so handle the failure to connect
  7481. // });
  7482. // //sten for candidate events
  7483. // pc.onicecandidate = function(ice) {
  7484. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7485. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7486. // };
  7487. // }
  7488. // U.MD.D.I.getUserIpBool = function(callback){
  7489. // U.MD.D.I.getUserIP(function(ip){
  7490. // alert("Got IP! :" + ip);
  7491. // });
  7492. //}
  7493. //#endregion
  7494. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7495. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7496. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7497. _userinfo = US.userInfo, //登錄用戶信息
  7498. _userid = US.userInfo.userid //登錄用戶id
  7499. let _iframe;
  7500. let _cid = cid,
  7501. _stage = stage,
  7502. _task = task,
  7503. _tool = tool;
  7504. var _jie = $$("div", {
  7505. "style": {
  7506. "position": "absolute",
  7507. "bottom": "50px",
  7508. "right": "50px",
  7509. "zIndex": "9999",
  7510. "backgroundColor": "#2268bc",
  7511. "color": "#fff",
  7512. "padding": "12px 20px",
  7513. "cursor": "pointer",
  7514. "borderRadius": "4px",
  7515. },
  7516. "innerHTML": "提交作業"
  7517. })
  7518. let aTool = ''
  7519. let _loading = document.createElement('div')
  7520. _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;"
  7521. // _loading.id = "";
  7522. let _lchild = document.createElement('div')
  7523. let _limg = document.createElement('img')
  7524. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7525. _limg.style = "width: 26px;margin-right: 10px;"
  7526. _lchild.appendChild(_limg)
  7527. let _lspan = document.createElement('span')
  7528. _lspan.innerHTML = "上傳中..."
  7529. _lchild.appendChild(_lspan)
  7530. _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%);"
  7531. _loading.appendChild(_lchild)
  7532. var _box = $$('div', {
  7533. "style": {
  7534. "position": "relative",
  7535. "width": "100%",
  7536. "height": "100%",
  7537. },
  7538. })
  7539. _box.appendChild(_loading)
  7540. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7541. switch (str) {
  7542. case "whiteboard":
  7543. aTool = 1;
  7544. _iframe = $$("iframe", {
  7545. "frameborder": "no",
  7546. "border": "0",
  7547. "scrolling ": "no",
  7548. "style": {
  7549. "cssText": "border:0;width:100%;height:100%"
  7550. },
  7551. "src": "https://iwb.cocorobo.hk/"
  7552. })
  7553. _box.appendChild(_iframe);
  7554. _box.appendChild(_jie);
  7555. _formdiv = new U.UF.UI.form(
  7556. "電子白板",
  7557. _box, {
  7558. "id": "whiteboard" + cid + stage + task + tool,
  7559. "style": {
  7560. "width": "90%",
  7561. "height": "90%",
  7562. "overflow": 'hidden'
  7563. },
  7564. "onresize": function () { }
  7565. }, {
  7566. closecallback: function () { }
  7567. }, {
  7568. "style": {
  7569. "height": "36px"
  7570. }
  7571. }).form; //創建窗體
  7572. _taskbar = {
  7573. "id": str + _formdiv.id,
  7574. "style": {
  7575. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7576. },
  7577. "name": "電子白板",
  7578. "forms": _formdiv,
  7579. "click": function () {
  7580. U.MD.D.I.openApplication(str, obj, info);
  7581. }
  7582. }
  7583. break;
  7584. case "mind":
  7585. aTool = 3;
  7586. _iframe = $$("iframe", {
  7587. "frameborder": "no",
  7588. "border": "0",
  7589. "scrolling ": "no",
  7590. "style": {
  7591. "cssText": "border:0;width:100%;height:100%"
  7592. },
  7593. "src": "/kityminder-editor/dist/index.html"
  7594. })
  7595. _box.appendChild(_iframe);
  7596. _box.appendChild(_jie);
  7597. _formdiv = new U.UF.UI.form(
  7598. "思維導圖",
  7599. _box, { //"/jsmind/example/demo.html"
  7600. "id": "mind" + cid + stage + task + tool,
  7601. "style": {
  7602. "width": "90%",
  7603. "height": "90%",
  7604. "overflow": 'hidden'
  7605. },
  7606. "onresize": function () { }
  7607. }, {
  7608. closecallback: function () { }
  7609. }, {
  7610. "style": {
  7611. "height": "36px"
  7612. }
  7613. }).form; //創建窗體
  7614. _taskbar = {
  7615. "id": str + _formdiv.id,
  7616. "style": {
  7617. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7618. },
  7619. "name": "思維導圖",
  7620. "forms": _formdiv,
  7621. "click": function () {
  7622. U.MD.D.I.openApplication(str, obj, info);
  7623. }
  7624. }
  7625. break;
  7626. case "MindMap":
  7627. aTool = 3;
  7628. _iframe = $$("iframe", {
  7629. "frameborder": "no",
  7630. "border": "0",
  7631. "scrolling ": "no",
  7632. "style": {
  7633. "cssText": "border:0;width:100%;height:100%"
  7634. },
  7635. "src": "//cloud.cocorobo.hk/mind/"
  7636. })
  7637. _box.appendChild(_iframe);
  7638. _box.appendChild(_jie);
  7639. _formdiv = new U.UF.UI.form(
  7640. "思維導圖",
  7641. _box, { //"/jsmind/example/demo.html"
  7642. "id": "mind" + cid + stage + task + tool,
  7643. "style": {
  7644. "width": "90%",
  7645. "height": "90%",
  7646. "overflow": 'hidden'
  7647. },
  7648. "onresize": function () { }
  7649. }, {
  7650. closecallback: function () { }
  7651. }, {
  7652. "style": {
  7653. "height": "36px"
  7654. }
  7655. }).form; //創建窗體
  7656. _taskbar = {
  7657. "id": str + _formdiv.id,
  7658. "style": {
  7659. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7660. },
  7661. "name": "思維導圖",
  7662. "forms": _formdiv,
  7663. "click": function () {
  7664. U.MD.D.I.openApplication(str, obj, info);
  7665. }
  7666. }
  7667. break;
  7668. case "doc":
  7669. aTool = 6;
  7670. _iframe = $$("iframe", {
  7671. "frameborder": "no",
  7672. "border": "0",
  7673. "scrolling ": "no",
  7674. "style": {
  7675. "cssText": "border:0;width:100%;height:100%"
  7676. },
  7677. "src": "/Office/Word/WordEditArea.htm"
  7678. })
  7679. _box.appendChild(_iframe);
  7680. _box.appendChild(_jie);
  7681. _formdiv = new U.UF.UI.form(
  7682. "協同文檔",
  7683. _box, {
  7684. "id": "doc" + cid + stage + task + tool,
  7685. "style": {
  7686. "width": "90%",
  7687. "height": "90%",
  7688. "overflow": 'hidden'
  7689. },
  7690. "onresize": function () { }
  7691. }, {
  7692. closecallback: function () { }
  7693. }, {
  7694. "style": {
  7695. "height": "36px"
  7696. }
  7697. }).form; //創建窗體
  7698. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7699. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7700. })
  7701. _taskbar = {
  7702. "id": str + _formdiv.id,
  7703. "style": {
  7704. "backgroundImage": "url(/img/icon/doc.png)"
  7705. },
  7706. "name": "協同文檔",
  7707. "forms": _formdiv,
  7708. "click": function () {
  7709. U.MD.D.I.openApplication(str, obj, info);
  7710. }
  7711. }
  7712. break;
  7713. case "mindNetwork": //好友打開
  7714. aTool = 7;
  7715. _iframe = $$("iframe", {
  7716. "webkitallowfullscreen": "",
  7717. "mozallowfullscreen": "",
  7718. "allowfullscreen": "",
  7719. "frameborder": "no",
  7720. "border": "0",
  7721. "scrolling ": "no",
  7722. "style": {
  7723. "cssText": "border:0; width:100%; height:100%;"
  7724. },
  7725. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7726. })
  7727. _box.appendChild(_iframe);
  7728. _box.appendChild(_jie);
  7729. _formdiv = new U.UF.UI.form(
  7730. "思維網格",
  7731. _box, {
  7732. "id": "mindNetwork" + cid + stage + task + tool,
  7733. "style": {
  7734. "width": "90%",
  7735. "height": "90%",
  7736. "overflow": 'hidden'
  7737. },
  7738. "onresize": function () { }
  7739. }, {
  7740. closecallback: function () { }
  7741. }, {
  7742. "style": {
  7743. "height": "36px"
  7744. }
  7745. }).form; //創建窗體
  7746. _taskbar = {
  7747. "id": str + _formdiv.id,
  7748. "style": {
  7749. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7750. },
  7751. "name": "思維網格",
  7752. "forms": _formdiv,
  7753. "click": function () {
  7754. U.MD.D.I.openApplication(str, obj, info);
  7755. }
  7756. }
  7757. break;
  7758. case "courseDesign":
  7759. _iframe = $$("iframe", {
  7760. "webkitallowfullscreen": "",
  7761. "mozallowfullscreen": "",
  7762. "allowfullscreen": "",
  7763. "frameborder": "no",
  7764. "border": "0",
  7765. "scrolling ": "no",
  7766. "style": {
  7767. "cssText": "border:0; width:100%; height:100%;"
  7768. },
  7769. "src": "/course-design-vue"
  7770. })
  7771. _box.appendChild(_iframe);
  7772. _box.appendChild(_jie);
  7773. _formdiv = new U.UF.UI.form(
  7774. "項目設計",
  7775. _box, {
  7776. "id": "courseDesign" + cid + stage + task + tool,
  7777. "style": {
  7778. "width": "90%",
  7779. "height": "90%",
  7780. "overflow": 'hidden'
  7781. },
  7782. "onresize": function () { }
  7783. }, {
  7784. closecallback: function () { }
  7785. }, {
  7786. "style": {
  7787. "height": "36px"
  7788. }
  7789. }).form; //創建窗體
  7790. _taskbar = {
  7791. "id": str + _formdiv.id,
  7792. "style": {
  7793. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7794. },
  7795. "name": "項目設計",
  7796. "forms": _formdiv,
  7797. "click": function () {
  7798. U.MD.D.I.openApplication(str, obj, info);
  7799. }
  7800. }
  7801. break;
  7802. }
  7803. const script1 = document.createElement("script");
  7804. script1.type = "text/javascript";
  7805. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7806. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7807. const script2 = document.createElement("script");
  7808. script2.type = "text/javascript";
  7809. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7810. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7811. const script3 = document.createElement("script");
  7812. script3.type = "text/javascript";
  7813. script3.charset = "UTF-8";
  7814. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7815. const script4 = document.createElement("script");
  7816. script4.type = "text/javascript";
  7817. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7818. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7819. if (_iframe) {
  7820. if (str == 'doc') {
  7821. _iframe = _formdiv.querySelector('iframe')
  7822. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7823. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7824. _iframe.contentWindow.document.body.appendChild(script1);
  7825. _iframe.contentWindow.document.body.appendChild(script2);
  7826. // _iframe.contentWindow.document.body.appendChild(script3);
  7827. _iframe.contentWindow.document.body.appendChild(script4);
  7828. })
  7829. if (onloadListener) {
  7830. _iframe.contentDocument.location.reload()
  7831. } else {
  7832. _iframe.contentDocument.location.reload()
  7833. }
  7834. } else if (str == 'courseDesign') {
  7835. U.UF.DL.iframeLoad(_iframe, function () {
  7836. // _iframe.contentWindow.U.MD.O.W.load();
  7837. // _iframe.contentWindow.document.body.appendChild(script1);
  7838. _iframe.contentWindow.document.body.appendChild(script2);
  7839. _iframe.contentWindow.document.body.appendChild(script4);
  7840. })
  7841. } else if (str == 'mind') {
  7842. _iframe = _formdiv.querySelector('iframe')
  7843. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7844. //
  7845. _iframe.contentWindow.document.body.appendChild(script1);
  7846. _iframe.contentWindow.document.body.appendChild(script2);
  7847. _iframe.contentWindow.document.body.appendChild(script4);
  7848. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7849. })
  7850. if (onloadListener) {
  7851. _iframe.contentDocument.location.reload()
  7852. } else {
  7853. _iframe.contentDocument.location.reload()
  7854. }
  7855. } else if (str == 'whiteboard') {
  7856. _iframe = _formdiv.querySelector('iframe')
  7857. let onloadListener = _iframe.onload = () => {
  7858. _iframe.contentWindow.document.body.appendChild(script1);
  7859. _iframe.contentWindow.document.body.appendChild(script2);
  7860. _iframe.contentWindow.document.body.appendChild(script4);
  7861. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7862. };
  7863. // if (onloadListener) {
  7864. // try {
  7865. // _iframe.src += "?cocorobo="+new Date().getTime()
  7866. // _iframe.contentWindow.document.location.reload()
  7867. // } catch (error) {
  7868. // }
  7869. // } else {
  7870. // _iframe.contentDocument.location.reload()
  7871. // }
  7872. } else {
  7873. _iframe.onload = () => {
  7874. _iframe.contentWindow.document.body.appendChild(script1);
  7875. _iframe.contentWindow.document.body.appendChild(script2);
  7876. // _iframe.contentWindow.document.body.appendChild(script3);
  7877. _iframe.contentWindow.document.body.appendChild(script4);
  7878. };
  7879. }
  7880. _jie.onclick = async () => {
  7881. let text = ''
  7882. if (aTool == 1) {
  7883. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7884. } else if (aTool == 6) {
  7885. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7886. } else if (aTool == 3) {
  7887. text = await U.MD.D.I.getEditorContent(_iframe);
  7888. }
  7889. _loading.style.display = 'flex'
  7890. console.log(_loading);
  7891. var _ajs = _iframe.contentWindow.document.createElement("script");
  7892. _ajs.type = "text/javascript";
  7893. _ajs.innerHTML =
  7894. // 'console.log(' + _loading + ');\n' +
  7895. 'var _js = document.createElement("script");\n' +
  7896. '_js.type="text/javascript";\n' +
  7897. '_js.charset="UTF-8";\n' +
  7898. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7899. "_js.onload = function(){\n" +
  7900. ' var a = document.getElementsByTagName("img")\n' +
  7901. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7902. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7903. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7904. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7905. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7906. "beforeUpload_shishi(file," +
  7907. "'" +
  7908. _userid +
  7909. "'" +
  7910. ", " +
  7911. "'" +
  7912. _cid +
  7913. "'" +
  7914. ", " +
  7915. "'" +
  7916. _stage +
  7917. "'" +
  7918. ", " +
  7919. "'" +
  7920. _task +
  7921. "'" +
  7922. ", " +
  7923. "'" +
  7924. _tool +
  7925. "'" +
  7926. ", " +
  7927. "'" +
  7928. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7929. "'" +
  7930. ", " +
  7931. "'" +
  7932. aTool +
  7933. "'" +
  7934. ", " +
  7935. "`" +
  7936. text +
  7937. "`" +
  7938. ")\n" +
  7939. " });\n" +
  7940. "}\n" +
  7941. "document.head.appendChild(_js);\n";
  7942. _iframe.contentWindow.document.head.appendChild(_ajs);
  7943. }
  7944. }
  7945. //U.MD.D.I.openClick(str);
  7946. //如果有任務欄信息
  7947. // if (_taskbar) {
  7948. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7949. // }
  7950. }
  7951. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7952. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7953. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7954. _userinfo = US.userInfo, //登錄用戶信息
  7955. _userid = US.userInfo.userid //登錄用戶id
  7956. let _iframe;
  7957. let _cid = cid,
  7958. _stage = stage,
  7959. _task = task,
  7960. _tool = tool;
  7961. var _jie = $$("div", {
  7962. "style": {
  7963. "position": "absolute",
  7964. "bottom": "50px",
  7965. "right": "50px",
  7966. "zIndex": "9999",
  7967. "backgroundColor": "#2268bc",
  7968. "color": "#fff",
  7969. "padding": "12px 20px",
  7970. "cursor": "pointer",
  7971. "borderRadius": "4px",
  7972. },
  7973. "innerHTML": "提交作業"
  7974. })
  7975. let aTool = ''
  7976. let _loading = document.createElement('div')
  7977. _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;"
  7978. // _loading.id = "";
  7979. let _lchild = document.createElement('div')
  7980. let _limg = document.createElement('img')
  7981. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7982. _limg.style = "width: 26px;margin-right: 10px;"
  7983. _lchild.appendChild(_limg)
  7984. let _lspan = document.createElement('span')
  7985. _lspan.innerHTML = "上傳中..."
  7986. _lchild.appendChild(_lspan)
  7987. _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%);"
  7988. _loading.appendChild(_lchild)
  7989. let _box = $$('div', {
  7990. "style": {
  7991. "position": "relative",
  7992. "width": "100%",
  7993. "height": "100%",
  7994. },
  7995. })
  7996. _box.appendChild(_loading)
  7997. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7998. switch (str) {
  7999. case "whiteboard":
  8000. aTool = 1;
  8001. _iframe = $$("iframe", {
  8002. "frameborder": "no",
  8003. "border": "0",
  8004. "scrolling ": "no",
  8005. "style": {
  8006. "cssText": "border:0;width:100%;height:100%"
  8007. },
  8008. "src": "https://iwb.cocorobo.hk/"
  8009. })
  8010. _box.appendChild(_iframe);
  8011. _box.appendChild(_jie);
  8012. _formdiv = new U.UF.UI.form(
  8013. "電子白板",
  8014. _box, {
  8015. "id": "whiteboard" + cid + stage + task + tool,
  8016. "style": {
  8017. "width": "90%",
  8018. "height": "90%",
  8019. "overflow": 'hidden'
  8020. },
  8021. "onresize": function () { }
  8022. }, {
  8023. closecallback: function () { }
  8024. }, {
  8025. "style": {
  8026. "height": "36px"
  8027. }
  8028. }).form; //創建窗體
  8029. _taskbar = {
  8030. "id": str + _formdiv.id,
  8031. "style": {
  8032. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8033. },
  8034. "name": "電子白板",
  8035. "forms": _formdiv,
  8036. "click": function () {
  8037. U.MD.D.I.openApplication(str, obj, info);
  8038. }
  8039. }
  8040. break;
  8041. case "mind":
  8042. aTool = 3;
  8043. _iframe = $$("iframe", {
  8044. "frameborder": "no",
  8045. "border": "0",
  8046. "scrolling ": "no",
  8047. "style": {
  8048. "cssText": "border:0;width:100%;height:100%"
  8049. },
  8050. "src": "/kityminder-editor/dist/index.html"
  8051. })
  8052. _box.appendChild(_iframe);
  8053. _box.appendChild(_jie);
  8054. _formdiv = new U.UF.UI.form(
  8055. "思維導圖",
  8056. _box, { //"/jsmind/example/demo.html"
  8057. "id": "mind" + cid + stage + task + tool,
  8058. "style": {
  8059. "width": "90%",
  8060. "height": "90%",
  8061. "overflow": 'hidden'
  8062. },
  8063. "onresize": function () { }
  8064. }, {
  8065. closecallback: function () { }
  8066. }, {
  8067. "style": {
  8068. "height": "36px"
  8069. }
  8070. }).form; //創建窗體
  8071. _taskbar = {
  8072. "id": str + _formdiv.id,
  8073. "style": {
  8074. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8075. },
  8076. "name": "思維導圖",
  8077. "forms": _formdiv,
  8078. "click": function () {
  8079. U.MD.D.I.openApplication(str, obj, info);
  8080. }
  8081. }
  8082. break;
  8083. case "MindMap":
  8084. aTool = 3;
  8085. _iframe = $$("iframe", {
  8086. "frameborder": "no",
  8087. "border": "0",
  8088. "scrolling ": "no",
  8089. "style": {
  8090. "cssText": "border:0;width:100%;height:100%"
  8091. },
  8092. "src": "//cloud.cocorobo.hk/mind/"
  8093. })
  8094. _box.appendChild(_iframe);
  8095. _box.appendChild(_jie);
  8096. _formdiv = new U.UF.UI.form(
  8097. "思維導圖",
  8098. _box, { //"/jsmind/example/demo.html"
  8099. "id": "mind" + cid + stage + task + tool,
  8100. "style": {
  8101. "width": "90%",
  8102. "height": "90%",
  8103. "overflow": 'hidden'
  8104. },
  8105. "onresize": function () { }
  8106. }, {
  8107. closecallback: function () { }
  8108. }, {
  8109. "style": {
  8110. "height": "36px"
  8111. }
  8112. }).form; //創建窗體
  8113. _taskbar = {
  8114. "id": str + _formdiv.id,
  8115. "style": {
  8116. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8117. },
  8118. "name": "思維導圖",
  8119. "forms": _formdiv,
  8120. "click": function () {
  8121. U.MD.D.I.openApplication(str, obj, info);
  8122. }
  8123. }
  8124. break;
  8125. case "doc":
  8126. aTool = 6;
  8127. _iframe = $$("iframe", {
  8128. "frameborder": "no",
  8129. "border": "0",
  8130. "scrolling ": "no",
  8131. "style": {
  8132. "cssText": "border:0;width:100%;height:100%"
  8133. },
  8134. "src": "/Office/Word/WordEditArea.htm"
  8135. })
  8136. _box.appendChild(_iframe);
  8137. _box.appendChild(_jie);
  8138. _formdiv = new U.UF.UI.form(
  8139. "協同文檔",
  8140. _box, {
  8141. "id": "doc" + cid + stage + task + tool,
  8142. "style": {
  8143. "width": "90%",
  8144. "height": "90%",
  8145. "overflow": 'hidden'
  8146. },
  8147. "onresize": function () { }
  8148. }, {
  8149. closecallback: function () { }
  8150. }, {
  8151. "style": {
  8152. "height": "36px"
  8153. }
  8154. }).form; //創建窗體
  8155. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8156. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8157. })
  8158. _taskbar = {
  8159. "id": str + _formdiv.id,
  8160. "style": {
  8161. "backgroundImage": "url(/img/icon/doc.png)"
  8162. },
  8163. "name": "協同文檔",
  8164. "forms": _formdiv,
  8165. "click": function () {
  8166. U.MD.D.I.openApplication(str, obj, info);
  8167. }
  8168. }
  8169. break;
  8170. case "mindNetwork": //好友打開
  8171. aTool = 7;
  8172. _iframe = $$("iframe", {
  8173. "webkitallowfullscreen": "",
  8174. "mozallowfullscreen": "",
  8175. "allowfullscreen": "",
  8176. "frameborder": "no",
  8177. "border": "0",
  8178. "scrolling ": "no",
  8179. "style": {
  8180. "cssText": "border:0; width:100%; height:100%;"
  8181. },
  8182. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8183. })
  8184. _box.appendChild(_iframe);
  8185. _box.appendChild(_jie);
  8186. _formdiv = new U.UF.UI.form(
  8187. "思維網格",
  8188. _box, {
  8189. "id": "mindNetwork" + cid + stage + task + tool,
  8190. "style": {
  8191. "width": "90%",
  8192. "height": "90%",
  8193. "overflow": 'hidden'
  8194. },
  8195. "onresize": function () { }
  8196. }, {
  8197. closecallback: function () { }
  8198. }, {
  8199. "style": {
  8200. "height": "36px"
  8201. }
  8202. }).form; //創建窗體
  8203. _taskbar = {
  8204. "id": str + _formdiv.id,
  8205. "style": {
  8206. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8207. },
  8208. "name": "思維網格",
  8209. "forms": _formdiv,
  8210. "click": function () {
  8211. U.MD.D.I.openApplication(str, obj, info);
  8212. }
  8213. }
  8214. break;
  8215. case "courseDesign":
  8216. _iframe = $$("iframe", {
  8217. "webkitallowfullscreen": "",
  8218. "mozallowfullscreen": "",
  8219. "allowfullscreen": "",
  8220. "frameborder": "no",
  8221. "border": "0",
  8222. "scrolling ": "no",
  8223. "style": {
  8224. "cssText": "border:0; width:100%; height:100%;"
  8225. },
  8226. "src": "/course-design-vue"
  8227. })
  8228. _box.appendChild(_iframe);
  8229. _box.appendChild(_jie);
  8230. _formdiv = new U.UF.UI.form(
  8231. "項目設計",
  8232. _box, {
  8233. "id": "courseDesign" + cid + stage + task + tool,
  8234. "style": {
  8235. "width": "90%",
  8236. "height": "90%",
  8237. "overflow": 'hidden'
  8238. },
  8239. "onresize": function () { }
  8240. }, {
  8241. closecallback: function () { }
  8242. }, {
  8243. "style": {
  8244. "height": "36px"
  8245. }
  8246. }).form; //創建窗體
  8247. _taskbar = {
  8248. "id": str + _formdiv.id,
  8249. "style": {
  8250. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8251. },
  8252. "name": "項目設計",
  8253. "forms": _formdiv,
  8254. "click": function () {
  8255. U.MD.D.I.openApplication(str, obj, info);
  8256. }
  8257. }
  8258. break;
  8259. }
  8260. const script1 = document.createElement("script");
  8261. script1.type = "text/javascript";
  8262. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8263. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8264. const script2 = document.createElement("script");
  8265. script2.type = "text/javascript";
  8266. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8267. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8268. const script3 = document.createElement("script");
  8269. script3.type = "text/javascript";
  8270. script3.charset = "UTF-8";
  8271. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8272. const script4 = document.createElement("script");
  8273. script4.type = "text/javascript";
  8274. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8275. script4.src = window.origin + "/js/Common/jietu2E.js";
  8276. if (_iframe) {
  8277. if (str == 'doc') {
  8278. _iframe = _formdiv.querySelector('iframe')
  8279. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8280. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8281. _iframe.contentWindow.document.body.appendChild(script1);
  8282. _iframe.contentWindow.document.body.appendChild(script2);
  8283. // _iframe.contentWindow.document.body.appendChild(script3);
  8284. _iframe.contentWindow.document.body.appendChild(script4);
  8285. })
  8286. if (onloadListener) {
  8287. _iframe.contentDocument.location.reload()
  8288. } else {
  8289. _iframe.contentDocument.location.reload()
  8290. }
  8291. } else if (str == 'courseDesign') {
  8292. U.UF.DL.iframeLoad(_iframe, function () {
  8293. // _iframe.contentWindow.U.MD.O.W.load();
  8294. // _iframe.contentWindow.document.body.appendChild(script1);
  8295. _iframe.contentWindow.document.body.appendChild(script2);
  8296. _iframe.contentWindow.document.body.appendChild(script4);
  8297. })
  8298. } else if (str == 'mind') {
  8299. _iframe = _formdiv.querySelector('iframe')
  8300. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8301. //
  8302. _iframe.contentWindow.document.body.appendChild(script1);
  8303. _iframe.contentWindow.document.body.appendChild(script2);
  8304. _iframe.contentWindow.document.body.appendChild(script4);
  8305. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8306. })
  8307. if (onloadListener) {
  8308. _iframe.contentDocument.location.reload()
  8309. } else {
  8310. _iframe.contentDocument.location.reload()
  8311. }
  8312. } else if (str == 'whiteboard') {
  8313. _iframe = _formdiv.querySelector('iframe')
  8314. let onloadListener = _iframe.onload = () => {
  8315. _iframe.contentWindow.document.body.appendChild(script1);
  8316. _iframe.contentWindow.document.body.appendChild(script2);
  8317. _iframe.contentWindow.document.body.appendChild(script4);
  8318. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8319. };
  8320. // if (onloadListener) {
  8321. // try {
  8322. // _iframe.src += "?cocorobo="+new Date().getTime()
  8323. // _iframe.contentWindow.document.location.reload()
  8324. // } catch (error) {
  8325. // }
  8326. // } else {
  8327. // _iframe.contentDocument.location.reload()
  8328. // }
  8329. } else {
  8330. _iframe.onload = () => {
  8331. _iframe.contentWindow.document.body.appendChild(script1);
  8332. _iframe.contentWindow.document.body.appendChild(script2);
  8333. // _iframe.contentWindow.document.body.appendChild(script3);
  8334. _iframe.contentWindow.document.body.appendChild(script4);
  8335. };
  8336. }
  8337. _jie.onclick = async () => {
  8338. let text = ''
  8339. if (aTool == 1) {
  8340. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8341. } else if (aTool == 6) {
  8342. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8343. } else if (aTool == 3) {
  8344. text = await U.MD.D.I.getEditorContent(_iframe);
  8345. }
  8346. _loading.style.display = 'flex'
  8347. console.log(_loading);
  8348. var _ajs = _iframe.contentWindow.document.createElement("script");
  8349. _ajs.type = "text/javascript";
  8350. _ajs.innerHTML =
  8351. // 'console.log(' + _loading + ');\n' +
  8352. 'var _js = document.createElement("script");\n' +
  8353. '_js.type="text/javascript";\n' +
  8354. '_js.charset="UTF-8";\n' +
  8355. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8356. "_js.onload = function(){\n" +
  8357. ' var a = document.getElementsByTagName("img")\n' +
  8358. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8359. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8360. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8361. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8362. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8363. "beforeUpload_shishi(file," +
  8364. "'" +
  8365. _userid +
  8366. "'" +
  8367. ", " +
  8368. "'" +
  8369. _cid +
  8370. "'" +
  8371. ", " +
  8372. "'" +
  8373. _stage +
  8374. "'" +
  8375. ", " +
  8376. "'" +
  8377. _task +
  8378. "'" +
  8379. ", " +
  8380. "'" +
  8381. _tool +
  8382. "'" +
  8383. ", " +
  8384. "'" +
  8385. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8386. "'" +
  8387. ", " +
  8388. "'" +
  8389. aTool +
  8390. "'" +
  8391. ", " +
  8392. "`" +
  8393. text +
  8394. "`" +
  8395. ")\n" +
  8396. " });\n" +
  8397. "}\n" +
  8398. "document.head.appendChild(_js);\n";
  8399. _iframe.contentWindow.document.head.appendChild(_ajs);
  8400. }
  8401. }
  8402. //U.MD.D.I.openClick(str);
  8403. //如果有任務欄信息
  8404. // if (_taskbar) {
  8405. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8406. // }
  8407. }
  8408. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8409. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8410. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8411. _userid = student.userid, //登錄用戶id
  8412. _username = student.student //用戶名字
  8413. let _iframe;
  8414. let _cid = cid,
  8415. _stage = stage,
  8416. _task = task,
  8417. _tool = tool;
  8418. var _jie = $$("div", {
  8419. "style": {
  8420. "position": "absolute",
  8421. "bottom": "50px",
  8422. "right": "50px",
  8423. "zIndex": "9999",
  8424. "backgroundColor": "#2268bc",
  8425. "color": "#fff",
  8426. "padding": "12px 20px",
  8427. "cursor": "pointer",
  8428. "borderRadius": "4px",
  8429. },
  8430. "innerHTML": "提交作業"
  8431. })
  8432. let aTool = ''
  8433. let _loading = document.createElement('div')
  8434. _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;"
  8435. // _loading.id = "";
  8436. let _lchild = document.createElement('div')
  8437. let _limg = document.createElement('img')
  8438. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8439. _limg.style = "width: 26px;margin-right: 10px;"
  8440. _lchild.appendChild(_limg)
  8441. let _lspan = document.createElement('span')
  8442. _lspan.innerHTML = "上傳中..."
  8443. _lchild.appendChild(_lspan)
  8444. _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%);"
  8445. _loading.appendChild(_lchild)
  8446. var _box = $$('div', {
  8447. "style": {
  8448. "position": "relative",
  8449. "width": "100%",
  8450. "height": "100%",
  8451. },
  8452. })
  8453. _box.appendChild(_loading)
  8454. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8455. switch (str) {
  8456. case "whiteboard":
  8457. aTool = 1;
  8458. _iframe = $$("iframe", {
  8459. "frameborder": "no",
  8460. "border": "0",
  8461. "scrolling ": "no",
  8462. "style": {
  8463. "cssText": "border:0;width:100%;height:100%"
  8464. },
  8465. "src": "https://iwb.cocorobo.hk/"
  8466. })
  8467. _box.appendChild(_iframe);
  8468. _box.appendChild(_jie);
  8469. _formdiv = new U.UF.UI.form(
  8470. "電子白板-" + _username,
  8471. _box, {
  8472. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8473. "style": {
  8474. "width": "90%",
  8475. "height": "90%",
  8476. "overflow": 'hidden'
  8477. },
  8478. "onresize": function () { }
  8479. }, {
  8480. closecallback: function () { }
  8481. }, {
  8482. "style": {
  8483. "height": "36px"
  8484. }
  8485. }).form; //創建窗體
  8486. _taskbar = {
  8487. "id": str + _formdiv.id,
  8488. "style": {
  8489. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8490. },
  8491. "name": "電子白板",
  8492. "forms": _formdiv,
  8493. "click": function () {
  8494. U.MD.D.I.openApplication(str, obj, info);
  8495. }
  8496. }
  8497. break;
  8498. case "mind":
  8499. aTool = 3;
  8500. _iframe = $$("iframe", {
  8501. "frameborder": "no",
  8502. "border": "0",
  8503. "scrolling ": "no",
  8504. "style": {
  8505. "cssText": "border:0;width:100%;height:100%"
  8506. },
  8507. "src": "/kityminder-editor/dist/index.html"
  8508. })
  8509. _box.appendChild(_iframe);
  8510. _box.appendChild(_jie);
  8511. _formdiv = new U.UF.UI.form(
  8512. "思維導圖-" + _username,
  8513. _box, { //"/jsmind/example/demo.html"
  8514. "id": "mind" + cid + stage + task + tool + _userid,
  8515. "style": {
  8516. "width": "90%",
  8517. "height": "90%",
  8518. "overflow": 'hidden'
  8519. },
  8520. "onresize": function () { }
  8521. }, {
  8522. closecallback: function () { }
  8523. }, {
  8524. "style": {
  8525. "height": "36px"
  8526. }
  8527. }).form; //創建窗體
  8528. _taskbar = {
  8529. "id": str + _formdiv.id,
  8530. "style": {
  8531. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8532. },
  8533. "name": "思維導圖",
  8534. "forms": _formdiv,
  8535. "click": function () {
  8536. U.MD.D.I.openApplication(str, obj, info);
  8537. }
  8538. }
  8539. break;
  8540. case "MindMap":
  8541. aTool = 3;
  8542. _iframe = $$("iframe", {
  8543. "frameborder": "no",
  8544. "border": "0",
  8545. "scrolling ": "no",
  8546. "style": {
  8547. "cssText": "border:0;width:100%;height:100%"
  8548. },
  8549. "src": "//cloud.cocorobo.hk/mind/"
  8550. })
  8551. _box.appendChild(_iframe);
  8552. _box.appendChild(_jie);
  8553. _formdiv = new U.UF.UI.form(
  8554. "思維導圖-" + _username,
  8555. _box, { //"/jsmind/example/demo.html"
  8556. "id": "mind" + cid + stage + task + tool + _userid,
  8557. "style": {
  8558. "width": "90%",
  8559. "height": "90%",
  8560. "overflow": 'hidden'
  8561. },
  8562. "onresize": function () { }
  8563. }, {
  8564. closecallback: function () { }
  8565. }, {
  8566. "style": {
  8567. "height": "36px"
  8568. }
  8569. }).form; //創建窗體
  8570. _taskbar = {
  8571. "id": str + _formdiv.id,
  8572. "style": {
  8573. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8574. },
  8575. "name": "思維導圖",
  8576. "forms": _formdiv,
  8577. "click": function () {
  8578. U.MD.D.I.openApplication(str, obj, info);
  8579. }
  8580. }
  8581. break;
  8582. case "doc":
  8583. aTool = 6;
  8584. _iframe = $$("iframe", {
  8585. "frameborder": "no",
  8586. "border": "0",
  8587. "scrolling ": "no",
  8588. "style": {
  8589. "cssText": "border:0;width:100%;height:100%"
  8590. },
  8591. "src": "/Office/Word/WordEditArea.htm"
  8592. })
  8593. _box.appendChild(_iframe);
  8594. _box.appendChild(_jie);
  8595. _formdiv = new U.UF.UI.form(
  8596. "協同文檔-" + _username,
  8597. _box, {
  8598. "id": "doc" + cid + stage + task + tool + _userid,
  8599. "style": {
  8600. "width": "90%",
  8601. "height": "90%",
  8602. "overflow": 'hidden'
  8603. },
  8604. "onresize": function () { }
  8605. }, {
  8606. closecallback: function () { }
  8607. }, {
  8608. "style": {
  8609. "height": "36px"
  8610. }
  8611. }).form; //創建窗體
  8612. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8613. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8614. })
  8615. _taskbar = {
  8616. "id": str + _formdiv.id,
  8617. "style": {
  8618. "backgroundImage": "url(/img/icon/doc.png)"
  8619. },
  8620. "name": "協同文檔",
  8621. "forms": _formdiv,
  8622. "click": function () {
  8623. U.MD.D.I.openApplication(str, obj, info);
  8624. }
  8625. }
  8626. break;
  8627. case "mindNetwork": //好友打開
  8628. aTool = 7;
  8629. _iframe = $$("iframe", {
  8630. "webkitallowfullscreen": "",
  8631. "mozallowfullscreen": "",
  8632. "allowfullscreen": "",
  8633. "frameborder": "no",
  8634. "border": "0",
  8635. "scrolling ": "no",
  8636. "style": {
  8637. "cssText": "border:0; width:100%; height:100%;"
  8638. },
  8639. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8640. })
  8641. _box.appendChild(_iframe);
  8642. _box.appendChild(_jie);
  8643. _formdiv = new U.UF.UI.form(
  8644. "思維網格-" + _username,
  8645. _box, {
  8646. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8647. "style": {
  8648. "width": "90%",
  8649. "height": "90%",
  8650. "overflow": 'hidden'
  8651. },
  8652. "onresize": function () { }
  8653. }, {
  8654. closecallback: function () { }
  8655. }, {
  8656. "style": {
  8657. "height": "36px"
  8658. }
  8659. }).form; //創建窗體
  8660. _taskbar = {
  8661. "id": str + _formdiv.id,
  8662. "style": {
  8663. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8664. },
  8665. "name": "思維網格",
  8666. "forms": _formdiv,
  8667. "click": function () {
  8668. U.MD.D.I.openApplication(str, obj, info);
  8669. }
  8670. }
  8671. break;
  8672. case "courseDesign":
  8673. _iframe = $$("iframe", {
  8674. "webkitallowfullscreen": "",
  8675. "mozallowfullscreen": "",
  8676. "allowfullscreen": "",
  8677. "frameborder": "no",
  8678. "border": "0",
  8679. "scrolling ": "no",
  8680. "style": {
  8681. "cssText": "border:0; width:100%; height:100%;"
  8682. },
  8683. "src": "/course-design-vue"
  8684. })
  8685. _box.appendChild(_iframe);
  8686. _box.appendChild(_jie);
  8687. _formdiv = new U.UF.UI.form(
  8688. "項目設計-" + _username,
  8689. _box, {
  8690. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8691. "style": {
  8692. "width": "90%",
  8693. "height": "90%",
  8694. "overflow": 'hidden'
  8695. },
  8696. "onresize": function () { }
  8697. }, {
  8698. closecallback: function () { }
  8699. }, {
  8700. "style": {
  8701. "height": "36px"
  8702. }
  8703. }).form; //創建窗體
  8704. _taskbar = {
  8705. "id": str + _formdiv.id,
  8706. "style": {
  8707. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8708. },
  8709. "name": "項目設計",
  8710. "forms": _formdiv,
  8711. "click": function () {
  8712. U.MD.D.I.openApplication(str, obj, info);
  8713. }
  8714. }
  8715. break;
  8716. }
  8717. const script1 = document.createElement("script");
  8718. script1.type = "text/javascript";
  8719. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8720. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8721. const script2 = document.createElement("script");
  8722. script2.type = "text/javascript";
  8723. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8724. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8725. const script3 = document.createElement("script");
  8726. script3.type = "text/javascript";
  8727. script3.charset = "UTF-8";
  8728. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8729. const script4 = document.createElement("script");
  8730. script4.type = "text/javascript";
  8731. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8732. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8733. if (_iframe) {
  8734. if (str == 'doc') {
  8735. _iframe = _formdiv.querySelector('iframe')
  8736. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8737. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8738. _iframe.contentWindow.document.body.appendChild(script1);
  8739. _iframe.contentWindow.document.body.appendChild(script2);
  8740. // _iframe.contentWindow.document.body.appendChild(script3);
  8741. _iframe.contentWindow.document.body.appendChild(script4);
  8742. })
  8743. if (onloadListener) {
  8744. _iframe.contentDocument.location.reload()
  8745. } else {
  8746. _iframe.contentDocument.location.reload()
  8747. }
  8748. } else if (str == 'courseDesign') {
  8749. U.UF.DL.iframeLoad(_iframe, function () {
  8750. // _iframe.contentWindow.U.MD.O.W.load();
  8751. // _iframe.contentWindow.document.body.appendChild(script1);
  8752. _iframe.contentWindow.document.body.appendChild(script2);
  8753. _iframe.contentWindow.document.body.appendChild(script4);
  8754. })
  8755. } else if (str == 'mind') {
  8756. _iframe = _formdiv.querySelector('iframe')
  8757. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8758. //
  8759. _iframe.contentWindow.document.body.appendChild(script1);
  8760. _iframe.contentWindow.document.body.appendChild(script2);
  8761. _iframe.contentWindow.document.body.appendChild(script4);
  8762. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8763. })
  8764. if (onloadListener) {
  8765. _iframe.contentDocument.location.reload()
  8766. } else {
  8767. _iframe.contentDocument.location.reload()
  8768. }
  8769. } else if (str == 'whiteboard') {
  8770. _iframe = _formdiv.querySelector('iframe')
  8771. let onloadListener = _iframe.onload = () => {
  8772. _iframe.contentWindow.document.body.appendChild(script1);
  8773. _iframe.contentWindow.document.body.appendChild(script2);
  8774. _iframe.contentWindow.document.body.appendChild(script4);
  8775. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8776. };
  8777. // if (onloadListener) {
  8778. // try {
  8779. // _iframe.src += "?cocorobo="+new Date().getTime()
  8780. // _iframe.contentWindow.document.location.reload()
  8781. // } catch (error) {
  8782. // }
  8783. // } else {
  8784. // _iframe.contentDocument.location.reload()
  8785. // }
  8786. } else {
  8787. _iframe.onload = () => {
  8788. _iframe.contentWindow.document.body.appendChild(script1);
  8789. _iframe.contentWindow.document.body.appendChild(script2);
  8790. // _iframe.contentWindow.document.body.appendChild(script3);
  8791. _iframe.contentWindow.document.body.appendChild(script4);
  8792. };
  8793. }
  8794. _jie.onclick = async () => {
  8795. let text = ''
  8796. if (aTool == 1) {
  8797. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8798. } else if (aTool == 6) {
  8799. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8800. } else if (aTool == 3) {
  8801. text = await U.MD.D.I.getEditorContent(_iframe);
  8802. }
  8803. _loading.style.display = 'flex'
  8804. console.log(_loading);
  8805. var _ajs = _iframe.contentWindow.document.createElement("script");
  8806. _ajs.type = "text/javascript";
  8807. _ajs.innerHTML =
  8808. // 'console.log(' + _loading + ');\n' +
  8809. 'var _js = document.createElement("script");\n' +
  8810. '_js.type="text/javascript";\n' +
  8811. '_js.charset="UTF-8";\n' +
  8812. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8813. "_js.onload = function(){\n" +
  8814. ' var a = document.getElementsByTagName("img")\n' +
  8815. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8816. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8817. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8818. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8819. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8820. "beforeUpload_shishi(file," +
  8821. "'" +
  8822. _userid +
  8823. "'" +
  8824. ", " +
  8825. "'" +
  8826. _cid +
  8827. "'" +
  8828. ", " +
  8829. "'" +
  8830. _stage +
  8831. "'" +
  8832. ", " +
  8833. "'" +
  8834. _task +
  8835. "'" +
  8836. ", " +
  8837. "'" +
  8838. _tool +
  8839. "'" +
  8840. ", " +
  8841. "'" +
  8842. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8843. "'" +
  8844. ", " +
  8845. "'" +
  8846. aTool +
  8847. "'" +
  8848. ", " +
  8849. "`" +
  8850. text +
  8851. "`" +
  8852. ")\n" +
  8853. " });\n" +
  8854. "}\n" +
  8855. "document.head.appendChild(_js);\n";
  8856. _iframe.contentWindow.document.head.appendChild(_ajs);
  8857. }
  8858. }
  8859. }
  8860. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8861. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8862. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8863. _userid = student.userid, //登錄用戶id
  8864. _username = student.student //用戶名字
  8865. let _iframe;
  8866. let _cid = cid,
  8867. _stage = stage,
  8868. _task = task,
  8869. _tool = tool;
  8870. var _jie = $$("div", {
  8871. "style": {
  8872. "position": "absolute",
  8873. "bottom": "50px",
  8874. "right": "50px",
  8875. "zIndex": "9999",
  8876. "backgroundColor": "#2268bc",
  8877. "color": "#fff",
  8878. "padding": "12px 20px",
  8879. "cursor": "pointer",
  8880. "borderRadius": "4px",
  8881. },
  8882. "innerHTML": "提交作業"
  8883. })
  8884. let aTool = ''
  8885. let _loading = document.createElement('div')
  8886. _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;"
  8887. // _loading.id = "";
  8888. let _lchild = document.createElement('div')
  8889. let _limg = document.createElement('img')
  8890. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8891. _limg.style = "width: 26px;margin-right: 10px;"
  8892. _lchild.appendChild(_limg)
  8893. let _lspan = document.createElement('span')
  8894. _lspan.innerHTML = "上傳中..."
  8895. _lchild.appendChild(_lspan)
  8896. _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%);"
  8897. _loading.appendChild(_lchild)
  8898. var _box = $$('div', {
  8899. "style": {
  8900. "position": "relative",
  8901. "width": "100%",
  8902. "height": "100%",
  8903. },
  8904. })
  8905. _box.appendChild(_loading)
  8906. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8907. switch (str) {
  8908. case "whiteboard":
  8909. aTool = 1;
  8910. _iframe = $$("iframe", {
  8911. "frameborder": "no",
  8912. "border": "0",
  8913. "scrolling ": "no",
  8914. "style": {
  8915. "cssText": "border:0;width:100%;height:100%"
  8916. },
  8917. "src": "https://iwb.cocorobo.hk/"
  8918. })
  8919. _box.appendChild(_iframe);
  8920. _box.appendChild(_jie);
  8921. _formdiv = new U.UF.UI.form(
  8922. "電子白板-" + _username,
  8923. _box, {
  8924. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8925. "style": {
  8926. "width": "90%",
  8927. "height": "90%",
  8928. "overflow": 'hidden'
  8929. },
  8930. "onresize": function () { }
  8931. }, {
  8932. closecallback: function () { }
  8933. }, {
  8934. "style": {
  8935. "height": "36px"
  8936. }
  8937. }).form; //創建窗體
  8938. _taskbar = {
  8939. "id": str + _formdiv.id,
  8940. "style": {
  8941. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8942. },
  8943. "name": "電子白板",
  8944. "forms": _formdiv,
  8945. "click": function () {
  8946. U.MD.D.I.openApplication(str, obj, info);
  8947. }
  8948. }
  8949. break;
  8950. case "mind":
  8951. aTool = 3;
  8952. _iframe = $$("iframe", {
  8953. "frameborder": "no",
  8954. "border": "0",
  8955. "scrolling ": "no",
  8956. "style": {
  8957. "cssText": "border:0;width:100%;height:100%"
  8958. },
  8959. "src": "/kityminder-editor/dist/index.html"
  8960. })
  8961. _box.appendChild(_iframe);
  8962. _box.appendChild(_jie);
  8963. _formdiv = new U.UF.UI.form(
  8964. "思維導圖-" + _username,
  8965. _box, { //"/jsmind/example/demo.html"
  8966. "id": "mind" + cid + stage + task + tool + _userid,
  8967. "style": {
  8968. "width": "90%",
  8969. "height": "90%",
  8970. "overflow": 'hidden'
  8971. },
  8972. "onresize": function () { }
  8973. }, {
  8974. closecallback: function () { }
  8975. }, {
  8976. "style": {
  8977. "height": "36px"
  8978. }
  8979. }).form; //創建窗體
  8980. _taskbar = {
  8981. "id": str + _formdiv.id,
  8982. "style": {
  8983. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8984. },
  8985. "name": "思維導圖",
  8986. "forms": _formdiv,
  8987. "click": function () {
  8988. U.MD.D.I.openApplication(str, obj, info);
  8989. }
  8990. }
  8991. break;
  8992. case "MindMap":
  8993. aTool = 3;
  8994. _iframe = $$("iframe", {
  8995. "frameborder": "no",
  8996. "border": "0",
  8997. "scrolling ": "no",
  8998. "style": {
  8999. "cssText": "border:0;width:100%;height:100%"
  9000. },
  9001. "src": "//cloud.cocorobo.hk/mind/"
  9002. })
  9003. _box.appendChild(_iframe);
  9004. _box.appendChild(_jie);
  9005. _formdiv = new U.UF.UI.form(
  9006. "思維導圖-" + _username,
  9007. _box, { //"/jsmind/example/demo.html"
  9008. "id": "mind" + cid + stage + task + tool + _userid,
  9009. "style": {
  9010. "width": "90%",
  9011. "height": "90%",
  9012. "overflow": 'hidden'
  9013. },
  9014. "onresize": function () { }
  9015. }, {
  9016. closecallback: function () { }
  9017. }, {
  9018. "style": {
  9019. "height": "36px"
  9020. }
  9021. }).form; //創建窗體
  9022. _taskbar = {
  9023. "id": str + _formdiv.id,
  9024. "style": {
  9025. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9026. },
  9027. "name": "思維導圖",
  9028. "forms": _formdiv,
  9029. "click": function () {
  9030. U.MD.D.I.openApplication(str, obj, info);
  9031. }
  9032. }
  9033. break;
  9034. case "doc":
  9035. aTool = 6;
  9036. _iframe = $$("iframe", {
  9037. "frameborder": "no",
  9038. "border": "0",
  9039. "scrolling ": "no",
  9040. "style": {
  9041. "cssText": "border:0;width:100%;height:100%"
  9042. },
  9043. "src": "/Office/Word/WordEditArea.htm"
  9044. })
  9045. _box.appendChild(_iframe);
  9046. _box.appendChild(_jie);
  9047. _formdiv = new U.UF.UI.form(
  9048. "協同文檔-" + _username,
  9049. _box, {
  9050. "id": "doc" + cid + stage + task + tool + _userid,
  9051. "style": {
  9052. "width": "90%",
  9053. "height": "90%",
  9054. "overflow": 'hidden'
  9055. },
  9056. "onresize": function () { }
  9057. }, {
  9058. closecallback: function () { }
  9059. }, {
  9060. "style": {
  9061. "height": "36px"
  9062. }
  9063. }).form; //創建窗體
  9064. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9065. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9066. })
  9067. _taskbar = {
  9068. "id": str + _formdiv.id,
  9069. "style": {
  9070. "backgroundImage": "url(/img/icon/doc.png)"
  9071. },
  9072. "name": "協同文檔",
  9073. "forms": _formdiv,
  9074. "click": function () {
  9075. U.MD.D.I.openApplication(str, obj, info);
  9076. }
  9077. }
  9078. break;
  9079. case "mindNetwork": //好友打開
  9080. aTool = 7;
  9081. _iframe = $$("iframe", {
  9082. "webkitallowfullscreen": "",
  9083. "mozallowfullscreen": "",
  9084. "allowfullscreen": "",
  9085. "frameborder": "no",
  9086. "border": "0",
  9087. "scrolling ": "no",
  9088. "style": {
  9089. "cssText": "border:0; width:100%; height:100%;"
  9090. },
  9091. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9092. })
  9093. _box.appendChild(_iframe);
  9094. _box.appendChild(_jie);
  9095. _formdiv = new U.UF.UI.form(
  9096. "思維網格-" + _username,
  9097. _box, {
  9098. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9099. "style": {
  9100. "width": "90%",
  9101. "height": "90%",
  9102. "overflow": 'hidden'
  9103. },
  9104. "onresize": function () { }
  9105. }, {
  9106. closecallback: function () { }
  9107. }, {
  9108. "style": {
  9109. "height": "36px"
  9110. }
  9111. }).form; //創建窗體
  9112. _taskbar = {
  9113. "id": str + _formdiv.id,
  9114. "style": {
  9115. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9116. },
  9117. "name": "思維網格",
  9118. "forms": _formdiv,
  9119. "click": function () {
  9120. U.MD.D.I.openApplication(str, obj, info);
  9121. }
  9122. }
  9123. break;
  9124. case "courseDesign":
  9125. _iframe = $$("iframe", {
  9126. "webkitallowfullscreen": "",
  9127. "mozallowfullscreen": "",
  9128. "allowfullscreen": "",
  9129. "frameborder": "no",
  9130. "border": "0",
  9131. "scrolling ": "no",
  9132. "style": {
  9133. "cssText": "border:0; width:100%; height:100%;"
  9134. },
  9135. "src": "/course-design-vue"
  9136. })
  9137. _box.appendChild(_iframe);
  9138. _box.appendChild(_jie);
  9139. _formdiv = new U.UF.UI.form(
  9140. "項目設計-" + _username,
  9141. _box, {
  9142. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9143. "style": {
  9144. "width": "90%",
  9145. "height": "90%",
  9146. "overflow": 'hidden'
  9147. },
  9148. "onresize": function () { }
  9149. }, {
  9150. closecallback: function () { }
  9151. }, {
  9152. "style": {
  9153. "height": "36px"
  9154. }
  9155. }).form; //創建窗體
  9156. _taskbar = {
  9157. "id": str + _formdiv.id,
  9158. "style": {
  9159. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9160. },
  9161. "name": "項目設計",
  9162. "forms": _formdiv,
  9163. "click": function () {
  9164. U.MD.D.I.openApplication(str, obj, info);
  9165. }
  9166. }
  9167. break;
  9168. }
  9169. const script1 = document.createElement("script");
  9170. script1.type = "text/javascript";
  9171. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9172. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9173. const script2 = document.createElement("script");
  9174. script2.type = "text/javascript";
  9175. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9176. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9177. const script3 = document.createElement("script");
  9178. script3.type = "text/javascript";
  9179. script3.charset = "UTF-8";
  9180. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9181. const script4 = document.createElement("script");
  9182. script4.type = "text/javascript";
  9183. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9184. script4.src = window.origin + "/js/Common/jietu2E.js";
  9185. if (_iframe) {
  9186. if (str == 'doc') {
  9187. _iframe = _formdiv.querySelector('iframe')
  9188. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9189. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9190. _iframe.contentWindow.document.body.appendChild(script1);
  9191. _iframe.contentWindow.document.body.appendChild(script2);
  9192. // _iframe.contentWindow.document.body.appendChild(script3);
  9193. _iframe.contentWindow.document.body.appendChild(script4);
  9194. })
  9195. if (onloadListener) {
  9196. _iframe.contentDocument.location.reload()
  9197. } else {
  9198. _iframe.contentDocument.location.reload()
  9199. }
  9200. } else if (str == 'courseDesign') {
  9201. U.UF.DL.iframeLoad(_iframe, function () {
  9202. // _iframe.contentWindow.U.MD.O.W.load();
  9203. // _iframe.contentWindow.document.body.appendChild(script1);
  9204. _iframe.contentWindow.document.body.appendChild(script2);
  9205. _iframe.contentWindow.document.body.appendChild(script4);
  9206. })
  9207. } else if (str == 'mind') {
  9208. _iframe = _formdiv.querySelector('iframe')
  9209. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9210. //
  9211. _iframe.contentWindow.document.body.appendChild(script1);
  9212. _iframe.contentWindow.document.body.appendChild(script2);
  9213. _iframe.contentWindow.document.body.appendChild(script4);
  9214. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9215. })
  9216. if (onloadListener) {
  9217. _iframe.contentDocument.location.reload()
  9218. } else {
  9219. _iframe.contentDocument.location.reload()
  9220. }
  9221. } else if (str == 'whiteboard') {
  9222. _iframe = _formdiv.querySelector('iframe')
  9223. let onloadListener = _iframe.onload = () => {
  9224. _iframe.contentWindow.document.body.appendChild(script1);
  9225. _iframe.contentWindow.document.body.appendChild(script2);
  9226. _iframe.contentWindow.document.body.appendChild(script4);
  9227. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9228. };
  9229. // if (onloadListener) {
  9230. // try {
  9231. // _iframe.src += "?cocorobo="+new Date().getTime()
  9232. // _iframe.contentWindow.document.location.reload()
  9233. // } catch (error) {
  9234. // }
  9235. // } else {
  9236. // _iframe.contentDocument.location.reload()
  9237. // }
  9238. } else {
  9239. _iframe.onload = () => {
  9240. _iframe.contentWindow.document.body.appendChild(script1);
  9241. _iframe.contentWindow.document.body.appendChild(script2);
  9242. // _iframe.contentWindow.document.body.appendChild(script3);
  9243. _iframe.contentWindow.document.body.appendChild(script4);
  9244. };
  9245. }
  9246. _jie.onclick = async () => {
  9247. let text = ''
  9248. if (aTool == 1) {
  9249. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9250. } else if (aTool == 6) {
  9251. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9252. } else if (aTool == 3) {
  9253. text = await U.MD.D.I.getEditorContent(_iframe);
  9254. }
  9255. _loading.style.display = 'flex'
  9256. console.log(_loading);
  9257. var _ajs = _iframe.contentWindow.document.createElement("script");
  9258. _ajs.type = "text/javascript";
  9259. _ajs.innerHTML =
  9260. // 'console.log(' + _loading + ');\n' +
  9261. 'var _js = document.createElement("script");\n' +
  9262. '_js.type="text/javascript";\n' +
  9263. '_js.charset="UTF-8";\n' +
  9264. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9265. "_js.onload = function(){\n" +
  9266. ' var a = document.getElementsByTagName("img")\n' +
  9267. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9268. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9269. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9270. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9271. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9272. "beforeUpload_shishi(file," +
  9273. "'" +
  9274. _userid +
  9275. "'" +
  9276. ", " +
  9277. "'" +
  9278. _cid +
  9279. "'" +
  9280. ", " +
  9281. "'" +
  9282. _stage +
  9283. "'" +
  9284. ", " +
  9285. "'" +
  9286. _task +
  9287. "'" +
  9288. ", " +
  9289. "'" +
  9290. _tool +
  9291. "'" +
  9292. ", " +
  9293. "'" +
  9294. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9295. "'" +
  9296. ", " +
  9297. "'" +
  9298. aTool +
  9299. "'" +
  9300. ", " +
  9301. "`" +
  9302. text +
  9303. "`" +
  9304. ")\n" +
  9305. " });\n" +
  9306. "}\n" +
  9307. "document.head.appendChild(_js);\n";
  9308. _iframe.contentWindow.document.head.appendChild(_ajs);
  9309. }
  9310. }
  9311. }
  9312. U.MD.D.I.getEditorContent = function (iframe) {
  9313. return new Promise((resolve, reject) => {
  9314. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9315. console.log(content);
  9316. resolve(content)
  9317. });
  9318. });
  9319. }
  9320. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9321. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9322. // if (res.value[0].length > 0) {
  9323. // // resolve(res.value[0][0].text);
  9324. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9325. // $(fileInput).val('');
  9326. // });
  9327. // }
  9328. // }, [], { "type": "GET", "withCredentials": true });
  9329. var xmlhttp;
  9330. var Mac, Sn, DeviceId
  9331. if (window.XMLHttpRequest) {
  9332. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9333. xmlhttp = new XMLHttpRequest();
  9334. }
  9335. else {
  9336. // IE6, IE5 瀏覽器執行代碼
  9337. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9338. }
  9339. xmlhttp.onreadystatechange = function () {
  9340. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9341. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9342. // resolve(res.value[0][0].text);
  9343. if (type == '2') {
  9344. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9345. } else if (type == '3') {
  9346. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9347. }
  9348. } else {
  9349. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9350. }
  9351. }
  9352. }
  9353. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9354. xmlhttp.send();
  9355. }
  9356. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9357. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9358. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9359. _userinfo = US.userInfo, //登錄用戶信息
  9360. _userid = US.userInfo.userid //登錄用戶id
  9361. let _iframe;
  9362. let _cid = cid,
  9363. _stage = stage,
  9364. _task = task,
  9365. _tool = tool;
  9366. var _jie = $$("div", {
  9367. "style": {
  9368. "position": "absolute",
  9369. "bottom": "50px",
  9370. "right": "50px",
  9371. "zIndex": "9999",
  9372. "backgroundColor": "#2268bc",
  9373. "color": "#fff",
  9374. "padding": "12px 20px",
  9375. "cursor": "pointer",
  9376. "borderRadius": "4px",
  9377. },
  9378. "innerHTML": "確認並提交"
  9379. })
  9380. let aTool = ''
  9381. let _loading = document.createElement('div')
  9382. _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;"
  9383. // _loading.id = "";
  9384. let _lchild = document.createElement('div')
  9385. let _limg = document.createElement('img')
  9386. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9387. _limg.style = "width: 26px;margin-right: 10px;"
  9388. _lchild.appendChild(_limg)
  9389. let _lspan = document.createElement('span')
  9390. _lspan.innerHTML = "上傳中..."
  9391. _lchild.appendChild(_lspan)
  9392. _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%);"
  9393. _loading.appendChild(_lchild)
  9394. var _box = $$('div', {
  9395. "style": {
  9396. "position": "relative",
  9397. "width": "100%",
  9398. "height": "100%",
  9399. },
  9400. })
  9401. _box.appendChild(_loading)
  9402. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9403. switch (str) {
  9404. case "whiteboard":
  9405. aTool = 1;
  9406. _iframe = $$("iframe", {
  9407. "frameborder": "no",
  9408. "border": "0",
  9409. "scrolling ": "no",
  9410. "style": {
  9411. "cssText": "border:0;width:100%;height:100%"
  9412. },
  9413. "src": "https://iwb.cocorobo.hk/"
  9414. })
  9415. _box.appendChild(_iframe);
  9416. _box.appendChild(_jie);
  9417. _formdiv = new U.UF.UI.form(
  9418. "電子白板",
  9419. _box, {
  9420. "id": "whiteboards" + cid + stage + task + tool,
  9421. "style": {
  9422. "width": "90%",
  9423. "height": "90%",
  9424. "overflow": 'hidden'
  9425. },
  9426. "onresize": function () { }
  9427. }, {
  9428. closecallback: function () { }
  9429. }, {
  9430. "style": {
  9431. "height": "36px"
  9432. }
  9433. }).form; //創建窗體
  9434. _taskbar = {
  9435. "id": str + _formdiv.id,
  9436. "style": {
  9437. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9438. },
  9439. "name": "電子白板",
  9440. "forms": _formdiv,
  9441. "click": function () {
  9442. U.MD.D.I.openApplication(str, obj, info);
  9443. }
  9444. }
  9445. break;
  9446. case "mind":
  9447. aTool = 3;
  9448. _iframe = $$("iframe", {
  9449. "frameborder": "no",
  9450. "border": "0",
  9451. "scrolling ": "no",
  9452. "style": {
  9453. "cssText": "border:0;width:100%;height:100%"
  9454. },
  9455. "src": "/kityminder-editor/dist/index.html"
  9456. });
  9457. _box.appendChild(_iframe);
  9458. _box.appendChild(_jie);
  9459. _formdiv = new U.UF.UI.form(
  9460. "思維導圖",
  9461. _box, { //"/jsmind/example/demo.html"
  9462. "id": "minds" + cid + stage + task + tool,
  9463. "style": {
  9464. "width": "90%",
  9465. "height": "90%",
  9466. "overflow": 'hidden'
  9467. },
  9468. "onresize": function () { }
  9469. }, {
  9470. closecallback: function () { }
  9471. }, {
  9472. "style": {
  9473. "height": "36px"
  9474. }
  9475. }).form; //創建窗體
  9476. _taskbar = {
  9477. "id": str + _formdiv.id,
  9478. "style": {
  9479. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9480. },
  9481. "name": "思維導圖",
  9482. "forms": _formdiv,
  9483. "click": function () {
  9484. U.MD.D.I.openApplication(str, obj, info);
  9485. }
  9486. }
  9487. break;
  9488. case "doc":
  9489. aTool = 6;
  9490. _iframe = $$("iframe", {
  9491. "frameborder": "no",
  9492. "border": "0",
  9493. "scrolling ": "no",
  9494. "style": {
  9495. "cssText": "border:0;width:100%;height:100%"
  9496. },
  9497. "src": "/Office/Word/WordEditArea.htm"
  9498. })
  9499. _box.appendChild(_iframe);
  9500. _box.appendChild(_jie);
  9501. _formdiv = new U.UF.UI.form(
  9502. "協同文檔",
  9503. _box, {
  9504. "id": "docs" + cid + stage + task + tool,
  9505. "style": {
  9506. "width": "90%",
  9507. "height": "90%",
  9508. "overflow": 'hidden'
  9509. },
  9510. "onresize": function () { }
  9511. }, {
  9512. closecallback: function () { }
  9513. }, {
  9514. "style": {
  9515. "height": "36px"
  9516. }
  9517. }).form; //創建窗體
  9518. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9519. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9520. })
  9521. _taskbar = {
  9522. "id": str + _formdiv.id,
  9523. "style": {
  9524. "backgroundImage": "url(/img/icon/doc.png)"
  9525. },
  9526. "name": "協同文檔",
  9527. "forms": _formdiv,
  9528. "click": function () {
  9529. U.MD.D.I.openApplication(str, obj, info);
  9530. }
  9531. }
  9532. break;
  9533. }
  9534. const script1 = document.createElement("script");
  9535. script1.type = "text/javascript";
  9536. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9537. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9538. const script2 = document.createElement("script");
  9539. script2.type = "text/javascript";
  9540. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9541. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9542. const script3 = document.createElement("script");
  9543. script3.type = "text/javascript";
  9544. script3.charset = "UTF-8";
  9545. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9546. const script4 = document.createElement("script");
  9547. script4.type = "text/javascript";
  9548. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9549. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9550. if (_iframe) {
  9551. if (str == 'doc') {
  9552. _iframe = _formdiv.querySelector('iframe')
  9553. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9554. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9555. _iframe.contentWindow.document.body.appendChild(script1);
  9556. _iframe.contentWindow.document.body.appendChild(script2);
  9557. // _iframe.contentWindow.document.body.appendChild(script3);
  9558. _iframe.contentWindow.document.body.appendChild(script4);
  9559. })
  9560. if (onloadListener) {
  9561. _iframe.contentDocument.location.reload()
  9562. } else {
  9563. _iframe.contentDocument.location.reload()
  9564. }
  9565. } else if (str == 'mind') {
  9566. _iframe = _formdiv.querySelector('iframe')
  9567. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9568. _iframe.contentWindow.document.body.appendChild(script1);
  9569. _iframe.contentWindow.document.body.appendChild(script2);
  9570. _iframe.contentWindow.document.body.appendChild(script4);
  9571. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9572. })
  9573. if (onloadListener) {
  9574. _iframe.contentDocument.location.reload()
  9575. } else {
  9576. _iframe.contentDocument.location.reload()
  9577. }
  9578. } else {
  9579. _iframe.onload = () => {
  9580. _iframe.contentWindow.document.body.appendChild(script1);
  9581. _iframe.contentWindow.document.body.appendChild(script2);
  9582. // _iframe.contentWindow.document.body.appendChild(script3);
  9583. _iframe.contentWindow.document.body.appendChild(script4);
  9584. };
  9585. }
  9586. _jie.onclick = async () => {
  9587. let text = ''
  9588. if (aTool == 6) {
  9589. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9590. } else if (aTool == 3) {
  9591. text = await U.MD.D.I.getEditorContent(_iframe);
  9592. }
  9593. _loading.style.display = 'flex'
  9594. console.log(_loading);
  9595. var _ajs = _iframe.contentWindow.document.createElement("script");
  9596. _ajs.type = "text/javascript";
  9597. _ajs.innerHTML =
  9598. // 'console.log(' + _loading + ');\n' +
  9599. 'var _js = document.createElement("script");\n' +
  9600. '_js.type="text/javascript";\n' +
  9601. '_js.charset="UTF-8";\n' +
  9602. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9603. "_js.onload = function(){\n" +
  9604. ' var a = document.getElementsByTagName("img")\n' +
  9605. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9606. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9607. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9608. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9609. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9610. "beforeUpload_shishi(file," +
  9611. "'" +
  9612. _userid +
  9613. "'" +
  9614. ", " +
  9615. "'" +
  9616. _cid +
  9617. "'" +
  9618. ", " +
  9619. "'" +
  9620. _stage +
  9621. "'" +
  9622. ", " +
  9623. "'" +
  9624. _task +
  9625. "'" +
  9626. ", " +
  9627. "'" +
  9628. _tool +
  9629. "'" +
  9630. ", " +
  9631. "'" +
  9632. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9633. "'" +
  9634. ", " +
  9635. "'" +
  9636. aTool +
  9637. "'" +
  9638. ", " +
  9639. "`" +
  9640. text +
  9641. "`" +
  9642. ")\n" +
  9643. " });\n" +
  9644. "}\n" +
  9645. "document.head.appendChild(_js);\n";
  9646. _iframe.contentWindow.document.head.appendChild(_ajs);
  9647. }
  9648. }
  9649. //U.MD.D.I.openClick(str);
  9650. //如果有任務欄信息
  9651. // if (_taskbar) {
  9652. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9653. // }
  9654. }
  9655. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9656. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9657. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9658. _userinfo = US.userInfo, //登錄用戶信息
  9659. _userid = US.userInfo.userid //登錄用戶id
  9660. let _iframe;
  9661. let _cid = cid,
  9662. _stage = stage,
  9663. _task = task,
  9664. _tool = tool;
  9665. var _jie = $$("div", {
  9666. "style": {
  9667. "position": "absolute",
  9668. "bottom": "50px",
  9669. "right": "50px",
  9670. "zIndex": "9999",
  9671. "backgroundColor": "#2268bc",
  9672. "color": "#fff",
  9673. "padding": "12px 20px",
  9674. "cursor": "pointer",
  9675. "borderRadius": "4px",
  9676. },
  9677. "innerHTML": "確認並提交"
  9678. })
  9679. let aTool = ''
  9680. let _loading = document.createElement('div')
  9681. _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;"
  9682. // _loading.id = "";
  9683. let _lchild = document.createElement('div')
  9684. let _limg = document.createElement('img')
  9685. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9686. _limg.style = "width: 26px;margin-right: 10px;"
  9687. _lchild.appendChild(_limg)
  9688. let _lspan = document.createElement('span')
  9689. _lspan.innerHTML = "上傳中..."
  9690. _lchild.appendChild(_lspan)
  9691. _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%);"
  9692. _loading.appendChild(_lchild)
  9693. var _box = $$('div', {
  9694. "style": {
  9695. "position": "relative",
  9696. "width": "100%",
  9697. "height": "100%",
  9698. },
  9699. })
  9700. _box.appendChild(_loading)
  9701. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9702. switch (str) {
  9703. case "whiteboard":
  9704. aTool = 1;
  9705. _iframe = $$("iframe", {
  9706. "frameborder": "no",
  9707. "border": "0",
  9708. "scrolling ": "no",
  9709. "style": {
  9710. "cssText": "border:0;width:100%;height:100%"
  9711. },
  9712. "src": "https://iwb.cocorobo.hk/"
  9713. })
  9714. _box.appendChild(_iframe);
  9715. _box.appendChild(_jie);
  9716. _formdiv = new U.UF.UI.form(
  9717. "電子白板",
  9718. _box, {
  9719. "id": "whiteboards" + cid + stage + task + tool,
  9720. "style": {
  9721. "width": "90%",
  9722. "height": "90%",
  9723. "overflow": 'hidden'
  9724. },
  9725. "onresize": function () { }
  9726. }, {
  9727. closecallback: function () { }
  9728. }, {
  9729. "style": {
  9730. "height": "36px"
  9731. }
  9732. }).form; //創建窗體
  9733. _taskbar = {
  9734. "id": str + _formdiv.id,
  9735. "style": {
  9736. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9737. },
  9738. "name": "電子白板",
  9739. "forms": _formdiv,
  9740. "click": function () {
  9741. U.MD.D.I.openApplication(str, obj, info);
  9742. }
  9743. }
  9744. break;
  9745. case "mind":
  9746. aTool = 3;
  9747. _iframe = $$("iframe", {
  9748. "frameborder": "no",
  9749. "border": "0",
  9750. "scrolling ": "no",
  9751. "style": {
  9752. "cssText": "border:0;width:100%;height:100%"
  9753. },
  9754. "src": "/kityminder-editor/dist/index.html"
  9755. });
  9756. _box.appendChild(_iframe);
  9757. _box.appendChild(_jie);
  9758. _formdiv = new U.UF.UI.form(
  9759. "思維導圖",
  9760. _box, { //"/jsmind/example/demo.html"
  9761. "id": "minds" + cid + stage + task + tool,
  9762. "style": {
  9763. "width": "90%",
  9764. "height": "90%",
  9765. "overflow": 'hidden'
  9766. },
  9767. "onresize": function () { }
  9768. }, {
  9769. closecallback: function () { }
  9770. }, {
  9771. "style": {
  9772. "height": "36px"
  9773. }
  9774. }).form; //創建窗體
  9775. _taskbar = {
  9776. "id": str + _formdiv.id,
  9777. "style": {
  9778. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9779. },
  9780. "name": "思維導圖",
  9781. "forms": _formdiv,
  9782. "click": function () {
  9783. U.MD.D.I.openApplication(str, obj, info);
  9784. }
  9785. }
  9786. break;
  9787. case "doc":
  9788. aTool = 6;
  9789. _iframe = $$("iframe", {
  9790. "frameborder": "no",
  9791. "border": "0",
  9792. "scrolling ": "no",
  9793. "style": {
  9794. "cssText": "border:0;width:100%;height:100%"
  9795. },
  9796. "src": "/Office/Word/WordEditArea.htm"
  9797. })
  9798. _box.appendChild(_iframe);
  9799. _box.appendChild(_jie);
  9800. _formdiv = new U.UF.UI.form(
  9801. "協同文檔",
  9802. _box, {
  9803. "id": "docs" + cid + stage + task + tool,
  9804. "style": {
  9805. "width": "90%",
  9806. "height": "90%",
  9807. "overflow": 'hidden'
  9808. },
  9809. "onresize": function () { }
  9810. }, {
  9811. closecallback: function () { }
  9812. }, {
  9813. "style": {
  9814. "height": "36px"
  9815. }
  9816. }).form; //創建窗體
  9817. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9818. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9819. })
  9820. _taskbar = {
  9821. "id": str + _formdiv.id,
  9822. "style": {
  9823. "backgroundImage": "url(/img/icon/doc.png)"
  9824. },
  9825. "name": "協同文檔",
  9826. "forms": _formdiv,
  9827. "click": function () {
  9828. U.MD.D.I.openApplication(str, obj, info);
  9829. }
  9830. }
  9831. break;
  9832. }
  9833. const script1 = document.createElement("script");
  9834. script1.type = "text/javascript";
  9835. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9836. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9837. const script2 = document.createElement("script");
  9838. script2.type = "text/javascript";
  9839. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9840. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9841. const script3 = document.createElement("script");
  9842. script3.type = "text/javascript";
  9843. script3.charset = "UTF-8";
  9844. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9845. const script4 = document.createElement("script");
  9846. script4.type = "text/javascript";
  9847. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9848. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  9849. if (_iframe) {
  9850. if (str == 'doc') {
  9851. _iframe = _formdiv.querySelector('iframe')
  9852. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9853. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9854. _iframe.contentWindow.document.body.appendChild(script1);
  9855. _iframe.contentWindow.document.body.appendChild(script2);
  9856. // _iframe.contentWindow.document.body.appendChild(script3);
  9857. _iframe.contentWindow.document.body.appendChild(script4);
  9858. })
  9859. if (onloadListener) {
  9860. _iframe.contentDocument.location.reload()
  9861. } else {
  9862. _iframe.contentDocument.location.reload()
  9863. }
  9864. } else if (str == 'mind') {
  9865. _iframe = _formdiv.querySelector('iframe')
  9866. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9867. _iframe.contentWindow.document.body.appendChild(script1);
  9868. _iframe.contentWindow.document.body.appendChild(script2);
  9869. _iframe.contentWindow.document.body.appendChild(script4);
  9870. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9871. })
  9872. if (onloadListener) {
  9873. _iframe.contentDocument.location.reload()
  9874. } else {
  9875. _iframe.contentDocument.location.reload()
  9876. }
  9877. } else {
  9878. _iframe.onload = () => {
  9879. _iframe.contentWindow.document.body.appendChild(script1);
  9880. _iframe.contentWindow.document.body.appendChild(script2);
  9881. // _iframe.contentWindow.document.body.appendChild(script3);
  9882. _iframe.contentWindow.document.body.appendChild(script4);
  9883. };
  9884. }
  9885. _jie.onclick = async () => {
  9886. let text = ''
  9887. if (aTool == 6) {
  9888. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9889. } else if (aTool == 3) {
  9890. text = await U.MD.D.I.getEditorContent(_iframe);
  9891. }
  9892. _loading.style.display = 'flex'
  9893. console.log(_loading);
  9894. var _ajs = _iframe.contentWindow.document.createElement("script");
  9895. _ajs.type = "text/javascript";
  9896. _ajs.innerHTML =
  9897. // 'console.log(' + _loading + ');\n' +
  9898. 'var _js = document.createElement("script");\n' +
  9899. '_js.type="text/javascript";\n' +
  9900. '_js.charset="UTF-8";\n' +
  9901. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9902. "_js.onload = function(){\n" +
  9903. ' var a = document.getElementsByTagName("img")\n' +
  9904. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9905. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9906. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9907. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9908. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9909. "beforeUpload_shishi(file," +
  9910. "'" +
  9911. _userid +
  9912. "'" +
  9913. ", " +
  9914. "'" +
  9915. _cid +
  9916. "'" +
  9917. ", " +
  9918. "'" +
  9919. _stage +
  9920. "'" +
  9921. ", " +
  9922. "'" +
  9923. _task +
  9924. "'" +
  9925. ", " +
  9926. "'" +
  9927. _tool +
  9928. "'" +
  9929. ", " +
  9930. "'" +
  9931. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9932. "'" +
  9933. ", " +
  9934. "'" +
  9935. aTool +
  9936. "'" +
  9937. ", " +
  9938. "`" +
  9939. text +
  9940. "`" +
  9941. ")\n" +
  9942. " });\n" +
  9943. "}\n" +
  9944. "document.head.appendChild(_js);\n";
  9945. _iframe.contentWindow.document.head.appendChild(_ajs);
  9946. }
  9947. }
  9948. //U.MD.D.I.openClick(str);
  9949. //如果有任務欄信息
  9950. // if (_taskbar) {
  9951. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9952. // }
  9953. }
  9954. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9955. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9956. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9957. _userinfo = US.userInfo, //登錄用戶信息
  9958. _userid = US.userInfo.userid //登錄用戶id
  9959. let _iframe;
  9960. let _cid = cid,
  9961. _stage = stage,
  9962. _task = task,
  9963. _tool = tool;
  9964. var _jie = $$("div", {
  9965. "style": {
  9966. "position": "absolute",
  9967. "bottom": "50px",
  9968. "right": "50px",
  9969. "zIndex": "9999",
  9970. "backgroundColor": "#2268bc",
  9971. "color": "#fff",
  9972. "padding": "12px 20px",
  9973. "cursor": "pointer",
  9974. "borderRadius": "4px",
  9975. },
  9976. "innerHTML": "上傳模板"
  9977. })
  9978. let aTool = ''
  9979. let _loading = document.createElement('div')
  9980. _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;"
  9981. // _loading.id = "";
  9982. let _lchild = document.createElement('div')
  9983. let _limg = document.createElement('img')
  9984. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9985. _limg.style = "width: 26px;margin-right: 10px;"
  9986. _lchild.appendChild(_limg)
  9987. let _lspan = document.createElement('span')
  9988. _lspan.innerHTML = "上傳中..."
  9989. _lchild.appendChild(_lspan)
  9990. _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%);"
  9991. _loading.appendChild(_lchild)
  9992. var _box = $$('div', {
  9993. "style": {
  9994. "position": "relative",
  9995. "width": "100%",
  9996. "height": "100%",
  9997. },
  9998. })
  9999. _box.appendChild(_loading)
  10000. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10001. switch (str) {
  10002. case "whiteboard":
  10003. aTool = 1;
  10004. _iframe = $$("iframe", {
  10005. "frameborder": "no",
  10006. "border": "0",
  10007. "scrolling ": "no",
  10008. "style": {
  10009. "cssText": "border:0;width:100%;height:100%"
  10010. },
  10011. "src": "https://iwb.cocorobo.hk/"
  10012. })
  10013. _box.appendChild(_iframe);
  10014. _box.appendChild(_jie);
  10015. _formdiv = new U.UF.UI.form(
  10016. "電子白板",
  10017. _box, {
  10018. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10019. "style": {
  10020. "width": "90%",
  10021. "height": "90%",
  10022. "overflow": 'hidden'
  10023. },
  10024. "onresize": function () { }
  10025. }, {
  10026. closecallback: function () { }
  10027. }, {
  10028. "style": {
  10029. "height": "36px"
  10030. }
  10031. }).form; //創建窗體
  10032. _taskbar = {
  10033. "id": str + _formdiv.id,
  10034. "style": {
  10035. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10036. },
  10037. "name": "電子白板",
  10038. "forms": _formdiv,
  10039. "click": function () {
  10040. U.MD.D.I.openApplication(str, obj, info);
  10041. }
  10042. }
  10043. break;
  10044. case "mind":
  10045. aTool = 3;
  10046. _iframe = $$("iframe", {
  10047. "frameborder": "no",
  10048. "border": "0",
  10049. "scrolling ": "no",
  10050. "style": {
  10051. "cssText": "border:0;width:100%;height:100%"
  10052. },
  10053. "src": "/kityminder-editor/dist/index.html"
  10054. });
  10055. _box.appendChild(_iframe);
  10056. _box.appendChild(_jie);
  10057. _formdiv = new U.UF.UI.form(
  10058. "思維導圖",
  10059. _box, { //"/jsmind/example/demo.html"
  10060. "id": "minds_Yu" + cid + stage + task + tool,
  10061. "style": {
  10062. "width": "90%",
  10063. "height": "90%",
  10064. "overflow": 'hidden'
  10065. },
  10066. "onresize": function () { }
  10067. }, {
  10068. closecallback: function () { }
  10069. }, {
  10070. "style": {
  10071. "height": "36px"
  10072. }
  10073. }).form; //創建窗體
  10074. _taskbar = {
  10075. "id": str + _formdiv.id,
  10076. "style": {
  10077. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10078. },
  10079. "name": "思維導圖",
  10080. "forms": _formdiv,
  10081. "click": function () {
  10082. U.MD.D.I.openApplication(str, obj, info);
  10083. }
  10084. }
  10085. break;
  10086. case "doc":
  10087. aTool = 6;
  10088. _iframe = $$("iframe", {
  10089. "frameborder": "no",
  10090. "border": "0",
  10091. "scrolling ": "no",
  10092. "style": {
  10093. "cssText": "border:0;width:100%;height:100%"
  10094. },
  10095. "src": "/Office/Word/WordEditArea.htm"
  10096. })
  10097. _box.appendChild(_iframe);
  10098. _box.appendChild(_jie);
  10099. _formdiv = new U.UF.UI.form(
  10100. "協同文檔",
  10101. _box, {
  10102. "id": "docs_Yu" + cid + stage + task + tool,
  10103. "style": {
  10104. "width": "90%",
  10105. "height": "90%",
  10106. "overflow": 'hidden'
  10107. },
  10108. "onresize": function () { }
  10109. }, {
  10110. closecallback: function () { }
  10111. }, {
  10112. "style": {
  10113. "height": "36px"
  10114. }
  10115. }).form; //創建窗體
  10116. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10117. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10118. })
  10119. _taskbar = {
  10120. "id": str + _formdiv.id,
  10121. "style": {
  10122. "backgroundImage": "url(/img/icon/doc.png)"
  10123. },
  10124. "name": "協同文檔",
  10125. "forms": _formdiv,
  10126. "click": function () {
  10127. U.MD.D.I.openApplication(str, obj, info);
  10128. }
  10129. }
  10130. break;
  10131. case "CocoPi":
  10132. aTool = 57;
  10133. _iframe = $$("iframe", {
  10134. "allowpaymentrequest": "allowpaymentrequest",
  10135. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10136. "webkitallowfullscreen": "",
  10137. "mozallowfullscreen": "",
  10138. "frameborder": "no",
  10139. "border": "0",
  10140. "scrolling ": "no",
  10141. "style": {
  10142. "cssText": "border:0;width:100%;height:100%"
  10143. },
  10144. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10145. })
  10146. _box.appendChild(_iframe);
  10147. _box.appendChild(_jie);
  10148. _formdiv = new U.UF.UI.form(
  10149. "CocoPi",
  10150. _box, {
  10151. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10152. "style": {
  10153. "width": "90%",
  10154. "height": "90%",
  10155. "overflow": 'hidden'
  10156. },
  10157. "onresize": function () { }
  10158. }, {
  10159. closecallback: function () { }
  10160. }, {
  10161. "style": {
  10162. "height": "36px"
  10163. }
  10164. }).form; //創建窗體
  10165. _taskbar = {
  10166. "id": str + _formdiv.id,
  10167. "style": {
  10168. "backgroundImage": "url(/img/icon/cocopi.png)"
  10169. },
  10170. "name": "CocoPi",
  10171. "forms": _formdiv,
  10172. "click": function () {
  10173. U.MD.D.I.openApplication(str, obj, info);
  10174. }
  10175. }
  10176. break;
  10177. }
  10178. if (_iframe) {
  10179. if (str == 'doc') {
  10180. _iframe = _formdiv.querySelector('iframe')
  10181. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10182. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10183. })
  10184. if (onloadListener) {
  10185. _iframe.contentDocument.location.reload()
  10186. } else {
  10187. _iframe.contentDocument.location.reload()
  10188. }
  10189. } else if (str == 'mind') {
  10190. _iframe = _formdiv.querySelector('iframe')
  10191. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10192. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10193. })
  10194. if (onloadListener) {
  10195. _iframe.contentDocument.location.reload()
  10196. } else {
  10197. _iframe.contentDocument.location.reload()
  10198. }
  10199. } else if (str == 'whiteboard') {
  10200. _iframe = _formdiv.querySelector('iframe')
  10201. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10202. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10203. })
  10204. // if (onloadListener) {
  10205. // try {
  10206. // _iframe.src += "?cocorobo="+new Date().getTime()
  10207. // _iframe.contentWindow.document.location.reload()
  10208. // } catch (error) {
  10209. // }
  10210. // } else {
  10211. // _iframe.contentDocument.location.reload()
  10212. // }
  10213. } else if (str == 'CocoPi') {
  10214. _iframe = _formdiv.querySelector('iframe')
  10215. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10216. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10217. })
  10218. if (onloadListener) {
  10219. _iframe.contentDocument.location.reload()
  10220. } else {
  10221. _iframe.contentDocument.location.reload()
  10222. }
  10223. } else {
  10224. _iframe.onload = () => { };
  10225. }
  10226. _jie.onclick = async () => {
  10227. let text = ''
  10228. let type = '2'
  10229. if (aTool == 1) {
  10230. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10231. type = '3'
  10232. } else if (aTool == 6) {
  10233. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10234. type = '1'
  10235. } else if (aTool == 3) {
  10236. text = await U.MD.D.I.getEditorContent(_iframe);
  10237. type = '2'
  10238. } else if (aTool == 57) {
  10239. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10240. type = '4'
  10241. }
  10242. _loading.style.display = 'flex'
  10243. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10244. }
  10245. }
  10246. //U.MD.D.I.openClick(str);
  10247. //如果有任務欄信息
  10248. // if (_taskbar) {
  10249. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10250. // }
  10251. }
  10252. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10253. var xmlhttp;
  10254. var Mac, Sn, DeviceId
  10255. if (window.XMLHttpRequest) {
  10256. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10257. xmlhttp = new XMLHttpRequest();
  10258. }
  10259. else {
  10260. // IE6, IE5 瀏覽器執行代碼
  10261. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10262. }
  10263. xmlhttp.onreadystatechange = function () {
  10264. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10265. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10266. // resolve(res.value[0][0].text);
  10267. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10268. }
  10269. }
  10270. }
  10271. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10272. xmlhttp.send();
  10273. }
  10274. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10275. var xmlhttp;
  10276. var Mac, Sn, DeviceId
  10277. if (window.XMLHttpRequest) {
  10278. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10279. xmlhttp = new XMLHttpRequest();
  10280. }
  10281. else {
  10282. // IE6, IE5 瀏覽器執行代碼
  10283. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10284. }
  10285. xmlhttp.onreadystatechange = function () {
  10286. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10287. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10288. // resolve(res.value[0][0].text);
  10289. if (type == '2') {
  10290. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10291. } else if (type == '3') {
  10292. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10293. } else if (type == '4') {
  10294. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10295. }
  10296. } else {
  10297. if (type == '2') {
  10298. iframe.contentWindow.editor.minder.importData('json', '')
  10299. } else if (type == '3') {
  10300. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10301. } else if (type == '4') {
  10302. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10303. }
  10304. }
  10305. }
  10306. }
  10307. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10308. xmlhttp.send();
  10309. }
  10310. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10311. var xmlhttp;
  10312. var Mac, Sn, DeviceId
  10313. if (window.XMLHttpRequest) {
  10314. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10315. xmlhttp = new XMLHttpRequest();
  10316. }
  10317. else {
  10318. // IE6, IE5 瀏覽器執行代碼
  10319. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10320. }
  10321. xmlhttp.onreadystatechange = function () {
  10322. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10323. if (xmlhttp.response) {
  10324. // resolve(res.value[0][0].text);
  10325. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10326. // $(fileInput).val('');
  10327. // });
  10328. span.innerHTML = '上傳成功'
  10329. setTimeout(() => {
  10330. loading.style.display = 'none'
  10331. }, 1000);
  10332. }
  10333. }
  10334. }
  10335. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10336. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10337. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10338. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10339. // 設置請求頭,表示請求體的編碼格式
  10340. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10341. // 設置請求體,使用url-encoded格式的數據
  10342. }
  10343. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10344. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10345. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10346. _userinfo = US.userInfo, //登錄用戶信息
  10347. _userid = US.userInfo.userid //登錄用戶id
  10348. let _iframe;
  10349. let _cid = cid,
  10350. _stage = stage,
  10351. _task = task,
  10352. _tool = tool;
  10353. var _jie = $$("div", {
  10354. "style": {
  10355. "position": "absolute",
  10356. "bottom": "50px",
  10357. "right": "50px",
  10358. "zIndex": "9999",
  10359. "backgroundColor": "#2268bc",
  10360. "color": "#fff",
  10361. "padding": "12px 20px",
  10362. "cursor": "pointer",
  10363. "borderRadius": "4px",
  10364. },
  10365. "innerHTML": "提交作業"
  10366. })
  10367. let aTool = ''
  10368. let _loading = document.createElement('div')
  10369. _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;"
  10370. // _loading.id = "";
  10371. let _lchild = document.createElement('div')
  10372. let _limg = document.createElement('img')
  10373. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10374. _limg.style = "width: 26px;margin-right: 10px;"
  10375. _lchild.appendChild(_limg)
  10376. let _lspan = document.createElement('span')
  10377. _lspan.innerHTML = "上傳中..."
  10378. _lchild.appendChild(_lspan)
  10379. _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%);"
  10380. _loading.appendChild(_lchild)
  10381. var _box = $$('div', {
  10382. "style": {
  10383. "position": "relative",
  10384. "width": "100%",
  10385. "height": "100%",
  10386. },
  10387. })
  10388. _box.appendChild(_loading)
  10389. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10390. switch (str) {
  10391. case "CocoPi":
  10392. aTool = 57;
  10393. _iframe = $$("iframe", {
  10394. "allowpaymentrequest": "allowpaymentrequest",
  10395. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10396. "webkitallowfullscreen": "",
  10397. "mozallowfullscreen": "",
  10398. "frameborder": "no",
  10399. "border": "0",
  10400. "scrolling ": "no",
  10401. "style": {
  10402. "cssText": "border:0;width:100%;height:100%"
  10403. },
  10404. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10405. })
  10406. _box.appendChild(_iframe);
  10407. _box.appendChild(_jie);
  10408. _formdiv = new U.UF.UI.form(
  10409. "CocoPi",
  10410. _box, {
  10411. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10412. "style": {
  10413. "width": "90%",
  10414. "height": "90%",
  10415. "overflow": 'hidden'
  10416. },
  10417. "onresize": function () { }
  10418. }, {
  10419. closecallback: function () { }
  10420. }, {
  10421. "style": {
  10422. "height": "36px"
  10423. }
  10424. }).form; //創建窗體
  10425. _taskbar = {
  10426. "id": str + _formdiv.id,
  10427. "style": {
  10428. "backgroundImage": "url(/img/icon/cocopi.png)"
  10429. },
  10430. "name": "CocoPi",
  10431. "forms": _formdiv,
  10432. "click": function () {
  10433. U.MD.D.I.openApplication(str, obj, info);
  10434. }
  10435. }
  10436. break;
  10437. }
  10438. if (_iframe) {
  10439. if (str == 'CocoPi') {
  10440. _iframe = _formdiv.querySelector('iframe')
  10441. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10442. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10443. })
  10444. if (onloadListener) {
  10445. _iframe.contentDocument.location.reload()
  10446. } else {
  10447. _iframe.contentDocument.location.reload()
  10448. }
  10449. }
  10450. _jie.onclick = async () => {
  10451. let text = ''
  10452. if (aTool == 57) {
  10453. text = _iframe.contentWindow.getLoadXmlStr()
  10454. }
  10455. _loading.style.display = 'flex'
  10456. console.log(_loading);
  10457. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10458. _loading.style.display = 'none'
  10459. let _div = document.createElement('div')
  10460. _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;"
  10461. let _inner = document.createElement('div')
  10462. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10463. _inner.innerHTML = "上傳成功"
  10464. _div.appendChild(_inner)
  10465. _iframe.contentWindow.window.document.body.appendChild(_div)
  10466. _div.onclick = () => {
  10467. _iframe.contentWindow.window.document.body.removeChild(_div)
  10468. }
  10469. setTimeout(() => {
  10470. _iframe.contentWindow.window.document.body.removeChild(_div)
  10471. }, 1000);
  10472. }, [], { "type": "POST", "withCredentials": true });
  10473. }
  10474. }
  10475. }
  10476. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10477. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10478. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10479. _userid = student.userid, //登錄用戶id
  10480. _username = student.student //用戶名字
  10481. let _iframe;
  10482. let _cid = cid,
  10483. _stage = stage,
  10484. _task = task,
  10485. _tool = tool;
  10486. var _jie = $$("div", {
  10487. "style": {
  10488. "position": "absolute",
  10489. "bottom": "50px",
  10490. "right": "50px",
  10491. "zIndex": "9999",
  10492. "backgroundColor": "#2268bc",
  10493. "color": "#fff",
  10494. "padding": "12px 20px",
  10495. "cursor": "pointer",
  10496. "borderRadius": "4px",
  10497. },
  10498. "innerHTML": "提交作業"
  10499. })
  10500. let aTool = ''
  10501. let _loading = document.createElement('div')
  10502. _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;"
  10503. // _loading.id = "";
  10504. let _lchild = document.createElement('div')
  10505. let _limg = document.createElement('img')
  10506. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10507. _limg.style = "width: 26px;margin-right: 10px;"
  10508. _lchild.appendChild(_limg)
  10509. let _lspan = document.createElement('span')
  10510. _lspan.innerHTML = "上傳中..."
  10511. _lchild.appendChild(_lspan)
  10512. _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%);"
  10513. _loading.appendChild(_lchild)
  10514. var _box = $$('div', {
  10515. "style": {
  10516. "position": "relative",
  10517. "width": "100%",
  10518. "height": "100%",
  10519. },
  10520. })
  10521. _box.appendChild(_loading)
  10522. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10523. switch (str) {
  10524. case "CocoPi":
  10525. aTool = 57;
  10526. _iframe = $$("iframe", {
  10527. "allowpaymentrequest": "allowpaymentrequest",
  10528. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10529. "webkitallowfullscreen": "",
  10530. "mozallowfullscreen": "",
  10531. "frameborder": "no",
  10532. "border": "0",
  10533. "scrolling ": "no",
  10534. "style": {
  10535. "cssText": "border:0;width:100%;height:100%"
  10536. },
  10537. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10538. })
  10539. _box.appendChild(_iframe);
  10540. _box.appendChild(_jie);
  10541. _formdiv = new U.UF.UI.form(
  10542. "CocoPi-" + _username,
  10543. _box, {
  10544. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10545. "style": {
  10546. "width": "90%",
  10547. "height": "90%",
  10548. "overflow": 'hidden'
  10549. },
  10550. "onresize": function () { }
  10551. }, {
  10552. closecallback: function () { }
  10553. }, {
  10554. "style": {
  10555. "height": "36px"
  10556. }
  10557. }).form; //創建窗體
  10558. _taskbar = {
  10559. "id": str + _formdiv.id,
  10560. "style": {
  10561. "backgroundImage": "url(/img/icon/cocopi.png)"
  10562. },
  10563. "name": "CocoPi",
  10564. "forms": _formdiv,
  10565. "click": function () {
  10566. U.MD.D.I.openApplication(str, obj, info);
  10567. }
  10568. }
  10569. break;
  10570. }
  10571. if (_iframe) {
  10572. if (str == 'CocoPi') {
  10573. _iframe = _formdiv.querySelector('iframe')
  10574. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10575. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10576. })
  10577. if (onloadListener) {
  10578. _iframe.contentDocument.location.reload()
  10579. } else {
  10580. _iframe.contentDocument.location.reload()
  10581. }
  10582. }
  10583. _jie.onclick = async () => {
  10584. let text = ''
  10585. if (aTool == 57) {
  10586. text = _iframe.contentWindow.getLoadXmlStr()
  10587. }
  10588. _loading.style.display = 'flex'
  10589. console.log(_loading);
  10590. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10591. _loading.style.display = 'none'
  10592. let _div = document.createElement('div')
  10593. _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;"
  10594. let _inner = document.createElement('div')
  10595. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10596. _inner.innerHTML = "上傳成功"
  10597. _div.appendChild(_inner)
  10598. _iframe.contentWindow.window.document.body.appendChild(_div)
  10599. _div.onclick = () => {
  10600. _iframe.contentWindow.window.document.body.removeChild(_div)
  10601. }
  10602. setTimeout(() => {
  10603. _iframe.contentWindow.window.document.body.removeChild(_div)
  10604. }, 1000);
  10605. }, [], { "type": "POST", "withCredentials": true });
  10606. }
  10607. }
  10608. }
  10609. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10610. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10611. if (res.value[0].length > 0) {
  10612. if (atool == 57) {
  10613. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10614. }
  10615. } else {
  10616. if (atool == 57) {
  10617. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10618. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10619. }
  10620. }
  10621. }, [], { "type": "POST", "withCredentials": true });
  10622. }
  10623. U.MD.D.addOp = function(text,type,time){
  10624. var userInfo = US.userInfo;
  10625. if(Object.keys(userInfo).length !== 0){
  10626. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10627. }, [], { "type": "POST", "withCredentials": true });
  10628. }
  10629. }