DeskTop.js 658 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552
  1. /*
  2. 此處為桌面系統啟動應用區域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面應用處理
  5. //判斷圖片是否在拖拽,如果是拖拽圖標的過程是不會打開圖片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教師桌面圖標的全局變量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //極簡模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教師桌面圖標的全局變量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "項目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的項目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "學習資料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  416. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  433. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教師桌面圖標的全局變量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教師桌面圖標的全局變量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龍華中心小學教師桌面圖標的全局變量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院實小教師桌面圖標的全局變量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "評測看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院實小教師桌面圖標的全局變量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小學教師桌面圖標的全局變量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小學學生桌面圖標的全局變量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  683. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  684. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  685. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  686. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  687. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  688. { "Name": "應用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  689. ];
  690. //hk
  691. U.MD.D.I.hkStudentDeskIcon = [
  692. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  693. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  694. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  695. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  696. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  698. ];
  699. //hk
  700. U.MD.D.I.hkaceteacherDeskIcon = [
  701. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  702. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  703. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  704. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  705. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  706. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  707. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  708. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  709. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  710. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  711. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  712. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  713. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  714. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  717. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  718. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  719. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  720. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  721. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  722. ];
  723. //hk
  724. U.MD.D.I.hkaceStudentDeskIcon = [
  725. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  726. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  727. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  728. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  729. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  731. ];
  732. //香海正覺蓮社佛教正覺中學
  733. U.MD.D.I.hkZJLSteacherDeskIcon = [
  734. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  735. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  737. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  738. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  739. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  740. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  741. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  742. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  743. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  744. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  745. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  746. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  747. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  749. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  750. ];
  751. //香海正覺蓮社佛教正覺中學
  752. U.MD.D.I.hkZJLSStudentDeskIcon = [
  753. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  754. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  755. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  756. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. ];
  758. //雲海
  759. U.MD.D.I.yunhaiTeacherDeskIcon = [
  760. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  761. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  763. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  764. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  765. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  766. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  767. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  768. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  769. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  770. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  771. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  772. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  773. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  774. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  775. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  776. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  777. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  778. ];
  779. //福田
  780. U.MD.D.I.heyuanTeacherDeskIcon = [
  781. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  782. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  783. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  784. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  785. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  786. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  787. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  788. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  789. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  790. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  791. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  792. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  793. ];
  794. //福田
  795. U.MD.D.I.heyuanAdminDeskIcon = [
  796. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  797. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  798. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  801. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  802. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  803. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  804. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  805. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  806. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  807. ];
  808. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  809. U.MD.D.I.szherTeacherDeskIcon = [
  810. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  811. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  812. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  813. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  814. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  815. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  816. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  817. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  818. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  820. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  821. ];
  822. //dsei
  823. U.MD.D.I.dseiTeacherDeskIcon = [
  824. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  825. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  826. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  827. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  828. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  829. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  830. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  831. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  832. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  833. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  834. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  835. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  836. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  837. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  838. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  839. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  840. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  841. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  842. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  843. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  844. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  845. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  846. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  847. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  848. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  849. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  850. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  851. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  852. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  853. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  854. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  855. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  856. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  857. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  858. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  859. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  860. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  861. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  864. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  865. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  866. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  867. ];
  868. //dsei
  869. U.MD.D.I.dseiAdminDeskIcon = [
  870. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  871. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  872. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  873. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  874. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  875. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  876. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  877. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  878. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  879. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  880. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  881. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  882. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  883. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  884. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  885. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  886. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  887. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  888. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  889. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  890. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  891. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  892. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  893. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  894. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  895. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  896. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  897. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  898. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  899. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  900. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  901. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  902. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  903. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  904. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  905. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  906. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  907. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  908. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  910. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  911. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  912. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  913. ];
  914. //dsei
  915. U.MD.D.I.dseiStudentDeskIcon = [
  916. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  917. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  918. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  919. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  920. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  922. ];
  923. //未來教育基地
  924. U.MD.D.I.szjkyTeacherDeskIcon = [
  925. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  926. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  927. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  928. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  929. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  930. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  931. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  932. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  933. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  934. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  935. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  936. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  937. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  938. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  941. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  942. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  943. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  944. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  945. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  946. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  947. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  948. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  949. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  950. ];
  951. //未來教育基地
  952. U.MD.D.I.szjkyAdminDeskIcon = [
  953. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  954. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  955. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  956. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  957. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  958. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  959. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  960. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  961. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  962. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  963. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  964. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  965. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  966. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  967. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  969. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  970. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  971. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  972. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  973. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  974. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  975. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  976. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  977. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  978. ];
  979. //未來教育基地
  980. U.MD.D.I.szjkyStudentDeskIcon = [
  981. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  982. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  983. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  984. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  985. ];
  986. //成華教育局
  987. U.MD.D.I.chjyjTeacherDeskIcon = [
  988. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  989. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  990. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  991. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  992. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  993. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  994. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  995. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  996. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  997. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  998. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  999. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1000. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1001. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1002. ];
  1003. //成華教育局chjyj
  1004. U.MD.D.I.chjyjAdminDeskIcon = [
  1005. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1006. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1007. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1008. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1009. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1010. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1011. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1012. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1013. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1014. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1015. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1016. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1017. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1018. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1019. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1020. ];
  1021. //成華教育局chjyj
  1022. U.MD.D.I.chjyjStudentDeskIcon = [
  1023. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1027. ];
  1028. //tpc
  1029. U.MD.D.I.tpcStudentDeskIcon = [
  1030. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1031. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1032. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1033. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1034. ];
  1035. //tpc
  1036. U.MD.D.I.tpcTeacherDeskIcon = [
  1037. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1038. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1039. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1040. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1041. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1042. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1043. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1044. ];
  1045. //tpc
  1046. U.MD.D.I.tpcAdminDeskIcon = [
  1047. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1048. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1049. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1050. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1051. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1052. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1053. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1054. ];
  1055. //THU-IOE
  1056. U.MD.D.I.thuioeTeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1060. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1061. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1062. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1063. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1064. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1065. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1066. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1067. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1068. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1069. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1070. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1071. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1072. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1073. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1074. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1075. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1076. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1077. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1078. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1079. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1080. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1081. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1082. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1083. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1084. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1085. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1086. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1087. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1088. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1089. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1090. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1091. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1092. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1093. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1094. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1095. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1096. ];
  1097. //THU-IOE
  1098. U.MD.D.I.thuioeStudentDeskIcon = [
  1099. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1100. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1101. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1102. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1103. ];
  1104. //jccssyl
  1105. U.MD.D.I.jccssylTeacherDeskIcon = [
  1106. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1107. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1108. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1109. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1110. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1111. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1112. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1113. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1114. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1115. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1116. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1117. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1118. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1119. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1120. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1121. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1123. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1124. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1125. ];
  1126. //jccssyl
  1127. U.MD.D.I.jccssylStudentDeskIcon = [
  1128. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1129. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1130. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1131. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1132. ];
  1133. //cale
  1134. U.MD.D.I.caleTeacherDeskIcon = [
  1135. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1136. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1137. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1138. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1139. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1140. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1141. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1142. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1143. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1144. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1145. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1146. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1147. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1148. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1149. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1150. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1151. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1153. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1154. ];
  1155. //cale
  1156. U.MD.D.I.caleStudentDeskIcon = [
  1157. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1158. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1159. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1160. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1161. ];
  1162. //lqwmsgzs
  1163. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1164. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1165. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1166. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1167. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1168. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1169. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1170. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1171. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1172. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1173. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1174. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1175. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1176. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1177. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1178. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1179. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1180. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1181. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1182. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1183. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1184. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1185. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1186. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1187. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1188. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1189. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1190. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1191. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1192. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1193. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1194. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1195. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1196. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1197. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1198. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1199. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1200. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1201. ];
  1202. //lqwmsgzs
  1203. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1204. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1205. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1206. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1207. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1208. ];
  1209. //鹽田區幼兒園
  1210. U.MD.D.I.ytyTeacherDeskIcon = [
  1211. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1212. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1214. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1215. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1216. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1217. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1218. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1219. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1220. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1221. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1222. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1223. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1224. ];
  1225. //鹽田區幼兒園
  1226. U.MD.D.I.ytyStudentDeskIcon = [
  1227. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1228. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1229. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1230. ];
  1231. //scnuai
  1232. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1233. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1234. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1235. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1236. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1240. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1241. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1242. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1243. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1244. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1245. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1246. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1247. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1248. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1249. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1250. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1251. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1252. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1253. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1254. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1255. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1256. ];
  1257. //scnuai
  1258. U.MD.D.I.scnuaiAdminDeskIcon = [
  1259. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1260. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1261. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1262. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1263. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1264. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1265. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1266. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1267. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1268. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1269. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1271. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1272. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1273. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1274. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1275. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1276. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1277. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1278. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1279. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1280. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1281. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1282. ];
  1283. //scnuai
  1284. U.MD.D.I.scnuaiStudentDeskIcon = [
  1285. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1289. ];
  1290. //cocobiz
  1291. U.MD.D.I.cocobizteacherDeskIcon = [
  1292. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1293. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1294. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1295. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1296. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1297. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1298. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1299. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1300. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1301. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1302. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1303. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1304. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1305. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1306. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1307. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1309. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1310. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1311. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1312. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1313. ];
  1314. //cocobiz
  1315. U.MD.D.I.cocobizStudentDeskIcon = [
  1316. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1317. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1318. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1319. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1320. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1321. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1322. ];
  1323. //xxzjky
  1324. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1325. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1326. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1327. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1328. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1329. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1330. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1331. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1332. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1333. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1334. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1335. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1336. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1337. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1338. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1341. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1342. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1343. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1344. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1345. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1346. ];
  1347. //xxzjky
  1348. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1349. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1350. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1351. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1352. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1354. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1355. ];
  1356. //nsfx
  1357. U.MD.D.I.nsfxTeacherDeskIcon = [
  1358. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1359. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1360. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1361. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1362. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1363. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1364. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1365. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1366. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1367. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1368. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1369. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1370. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1371. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1372. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1373. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1374. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1375. ];
  1376. //nsfx
  1377. U.MD.D.I.nsfxStudentDeskIcon = [
  1378. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1379. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1380. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1381. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1382. ];
  1383. //stia
  1384. U.MD.D.I.stiaTeacherDeskIcon = [
  1385. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1386. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1387. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1388. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1389. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1392. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1393. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1394. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1395. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1396. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1397. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1398. ];
  1399. //stia
  1400. U.MD.D.I.stiaStudentDeskIcon = [
  1401. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1404. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgTeacherDeskIcon = [
  1408. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1409. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. ];
  1411. //szdjg
  1412. U.MD.D.I.szdjgStudentDeskIcon = [
  1413. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1414. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1415. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1416. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1417. ];
  1418. //010607
  1419. U.MD.D.I.x010607TeacherDeskIcon = [
  1420. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1421. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1423. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1424. { "Name": "項目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1427. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1428. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1429. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1431. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1432. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1433. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1434. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1435. ];
  1436. //010607
  1437. U.MD.D.I.x010607StudentDeskIcon = [
  1438. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1439. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1440. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1441. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. ];
  1443. //010608
  1444. U.MD.D.I.x010608TeacherDeskIcon = [
  1445. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1446. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1447. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1448. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1449. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1450. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1451. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1452. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1453. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1454. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1455. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1456. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1457. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1458. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1459. ];
  1460. //010608
  1461. U.MD.D.I.x010608StudentDeskIcon = [
  1462. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1463. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1464. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1465. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. ];
  1467. //xhly
  1468. U.MD.D.I.xhlyTeacherDeskIcon = [
  1469. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. ];
  1471. //010608
  1472. U.MD.D.I.xhlyStudentDeskIcon = [
  1473. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. ];
  1475. //北師大
  1476. U.MD.D.I.BSDNSteacherDeskIcon = [
  1477. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1478. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1480. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1481. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1482. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1483. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1484. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1485. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1486. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1487. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1488. ];
  1489. //北師大
  1490. U.MD.D.I.BSDNSstudentDeskIcon = [
  1491. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1492. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1493. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1494. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. ];
  1496. //CUHK_EDU
  1497. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1498. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1499. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1500. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1501. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1502. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1503. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1504. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1505. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1506. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1507. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1508. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1509. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1510. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1511. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1512. ];
  1513. //CUHK_EDU
  1514. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1515. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1516. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1517. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1518. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1519. ];
  1520. //010503
  1521. U.MD.D.I.x010503TeacherDeskIcon = [
  1522. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1523. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1525. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1526. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1527. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1531. ];
  1532. //010503
  1533. U.MD.D.I.x010503StudentDeskIcon = [
  1534. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1535. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1536. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1537. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1538. ];
  1539. //SPROUT Lab
  1540. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1541. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1542. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1543. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1544. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1545. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1546. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1547. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1548. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1549. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1550. ];
  1551. //SPROUT Lab
  1552. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1553. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1555. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1556. ];
  1557. //010204
  1558. U.MD.D.I.x010204TeacherDeskIcon = [
  1559. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1560. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. ];
  1562. //010204
  1563. U.MD.D.I.x010204StudentDeskIcon = [
  1564. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //trail
  1570. U.MD.D.I.trailTeacherDeskIcon = [
  1571. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. ];
  1574. //trail
  1575. U.MD.D.I.trailStudentDeskIcon = [
  1576. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1580. ];
  1581. //010504
  1582. U.MD.D.I.x010504TeacherDeskIcon = [
  1583. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1584. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1586. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1587. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1588. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1589. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1590. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1591. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1592. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1593. ];
  1594. //010504
  1595. U.MD.D.I.x010504StudentDeskIcon = [
  1596. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1597. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1598. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1599. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1600. ];
  1601. //SCNUET
  1602. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1603. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1604. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1608. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1609. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1611. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1612. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1613. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1614. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1615. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1616. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1617. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1618. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1619. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1620. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1621. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1622. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1623. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1625. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1626. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1627. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1628. ];
  1629. //SCNUET
  1630. U.MD.D.I.SCNUETAdminDeskIcon = [
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1638. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.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.SCNUETStudentDeskIcon = [
  1659. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1660. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1661. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1662. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. ];
  1664. //x020201
  1665. U.MD.D.I.x020201TeacherDeskIcon = [
  1666. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1667. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1669. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1670. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1671. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1672. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1673. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1674. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1675. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1676. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1677. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1678. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1679. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1680. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1681. ];
  1682. //x020201
  1683. U.MD.D.I.x020201AdminDeskIcon = [
  1684. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1685. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1686. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1687. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1688. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1689. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1690. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1691. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1692. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1693. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1694. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1695. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1696. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1697. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1698. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1699. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1700. ];
  1701. //020201
  1702. U.MD.D.I.x020201StudentDeskIcon = [
  1703. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1704. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1705. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1706. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1707. ];
  1708. //010611
  1709. U.MD.D.I.x010611TeacherDeskIcon = [
  1710. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1711. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1712. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1713. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1714. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1717. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1718. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1719. ];
  1720. //010611
  1721. U.MD.D.I.x010611StudentDeskIcon = [
  1722. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1723. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1724. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1725. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1726. ];
  1727. //tianyuan
  1728. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1729. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1730. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1731. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1732. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1733. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1734. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1735. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1736. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1737. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1738. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1739. ];
  1740. //010611
  1741. U.MD.D.I.tianyuanStudentDeskIcon = [
  1742. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1743. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1744. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1745. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. ];
  1747. //#region 桌面初始化a
  1748. /**
  1749. * 初始化桌面的起始函數
  1750. *
  1751. */
  1752. U.MD.D.I.init = function () {
  1753. if ($("#U_MD_D_K")[0]) {
  1754. //初始化桌面圖標
  1755. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1756. // var clickUrl = ':12588/requestIp.php';
  1757. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1758. // U.MD.D.I.Ip = data;
  1759. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1760. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1761. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1762. // })
  1763. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1764. // })
  1765. }
  1766. }
  1767. /**
  1768. * 模式切換
  1769. *
  1770. */
  1771. U.MD.D.I.ModeCheck = function (type) {
  1772. if (US.Config.type == type) {
  1773. return
  1774. }
  1775. US.Config.type = type
  1776. $('.U_PBL_Check .active')[0].className = ''
  1777. if (type == 1) {
  1778. $('.U_PBL_Check div')[0].className = 'active'
  1779. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1780. } else {
  1781. $('.U_PBL_Check div')[1].className = 'active'
  1782. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1783. }
  1784. //初始化桌面圖標
  1785. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1786. if (type == 2) {
  1787. U.MD.D.I.openApplication("project")
  1788. }
  1789. }
  1790. /**
  1791. * 隱藏任務欄
  1792. *
  1793. * @param {element} 桌面元素
  1794. */
  1795. U.MD.D.I.hiddenTaskbar = function (el) {
  1796. //任務欄位置變小
  1797. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1798. //桌面的位置變大
  1799. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1800. }
  1801. /**
  1802. * 隱藏任務欄
  1803. *
  1804. * @param {element} 桌面元素
  1805. */
  1806. U.MD.D.I.hiddenTaskbarout = function (el) {
  1807. //任務欄位置變小
  1808. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1809. //任務欄位置變化
  1810. U.selectEl(el).css({ "bottom": "-60px" });
  1811. //桌面的位置變大
  1812. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1813. }
  1814. }
  1815. /**
  1816. * 初始化打印桌面圖標
  1817. *
  1818. * @param {element} 桌面元素
  1819. */
  1820. U.MD.D.I.initDesktopIcons = function (el, type) {
  1821. var i, //用於循環
  1822. _content, //桌面圖標元素
  1823. _iconcontent, //桌面圖標元素
  1824. _frag = $$("frag"), //定義一個碎片元素
  1825. _type = US.userInfo.type,
  1826. _org = US.userInfo.org,
  1827. _oid = US.userInfo.organizeid,
  1828. _role = US.userInfo.role,
  1829. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  1830. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  1831. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  1832. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  1833. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  1834. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  1835. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  1836. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1837. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1838. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1839. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  1840. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  1841. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  1842. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  1843. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  1844. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  1845. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  1846. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  1847. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  1848. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  1849. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  1850. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  1851. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  1852. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  1853. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1854. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1855. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  1856. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  1857. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  1858. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  1859. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  1860. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  1861. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1862. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1863. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1864. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1865. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1866. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1867. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1868. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1869. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1870. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  1871. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1872. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1873. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1874. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1875. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  1876. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1877. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1878. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1879. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1880. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1881. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1882. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1883. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1884. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1885. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1886. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  1887. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1888. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1889. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1890. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1891. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1892. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1893. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1894. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1895. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1896. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1897. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1898. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  1899. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  1900. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  1901. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  1902. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1903. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1904. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1905. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1906. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1907. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1908. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1909. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1910. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1911. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1912. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1913. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1914. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1915. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1916. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1917. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1918. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1919. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1920. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1921. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1922. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1923. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1924. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1925. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1926. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1927. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1928. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1929. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1930. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1931. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1932. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1933. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1934. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1935. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1936. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1937. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1938. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1939. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1940. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1941. 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'];
  1942. //清楚桌面圖標
  1943. el.innerHTML = "";
  1944. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1945. _teacherDesktopIconInfo.push(
  1946. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1947. { "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)" } },
  1948. )
  1949. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1950. }
  1951. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1952. _teacherDesktopIconInfo.push(
  1953. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1954. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1955. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1956. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1957. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1958. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1959. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1960. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1961. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1962. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1963. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1964. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1965. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1966. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1967. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1968. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1969. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1970. { "Name": "應用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1971. )
  1972. }
  1973. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  1974. _teacherDesktopIconInfo.push(
  1975. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1976. )
  1977. }
  1978. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1979. // _teacherDesktopIconInfo.push(
  1980. // )
  1981. // }
  1982. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1983. _teacherDesktopIconInfo.push(
  1984. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1985. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1986. )
  1987. }
  1988. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1989. _teacherDesktopIconInfo.push(
  1990. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1991. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1992. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1993. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1994. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1995. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1996. )
  1997. _studentDesktopIconInfo.push(
  1998. )
  1999. }
  2000. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2001. _teacherDesktopIconInfo.push(
  2002. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2003. )
  2004. _studentDesktopIconInfo.push(
  2005. )
  2006. }
  2007. //010606 組織
  2008. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2009. _teacherDesktopIconInfo.push(
  2010. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2011. )
  2012. _studentDesktopIconInfo.push(
  2013. )
  2014. }
  2015. //麒麟二中 和 民新小學
  2016. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2017. _teacherDesktopIconInfo.push(
  2018. )
  2019. }
  2020. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2021. _teacherDesktopIconInfo.push(
  2022. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2023. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2024. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2025. )
  2026. }
  2027. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2028. _hkTeacherDeskIconInfo.push(
  2029. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2030. )
  2031. }
  2032. //北師大附中(010601)
  2033. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2034. // _teacherDesktopIconInfo.push(
  2035. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2036. // )
  2037. // _studentDesktopIconInfo.push(
  2038. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2039. // )
  2040. // }
  2041. //樂善堂余近卿中學
  2042. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2043. _teacherDesktopIconInfo.push(
  2044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2045. )
  2046. }
  2047. // Education Artificial Intelligence
  2048. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2049. _teacherDesktopIconInfo.push(
  2050. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2051. )
  2052. }
  2053. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2054. _teacherDesktopIconInfo.push(
  2055. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2056. )
  2057. }
  2058. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2059. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2060. _teacherDesktopIconInfo.push(
  2061. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2062. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2063. )
  2064. }
  2065. //麒麟二中
  2066. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2067. _studentDesktopIconInfo.push(
  2068. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2069. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2070. )
  2071. }
  2072. //萬科雙語
  2073. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2074. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2075. if (el.Name == '項目管理') {
  2076. el.Name = 'PBL項目'
  2077. }
  2078. return el
  2079. })
  2080. _studentDesktopIconInfo3.push(
  2081. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2082. )
  2083. }
  2084. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2085. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2086. return el.Name != '魔盒識字' && el.Name != '24點'
  2087. })
  2088. }
  2089. 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) {
  2090. _studentDesktopIconInfo.push(
  2091. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2092. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2093. )
  2094. }
  2095. //循環創建桌面圖標
  2096. if (type == 1) {
  2097. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2098. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2099. _content = $$("div", {
  2100. className: "U_MD_D_KO",
  2101. "onmousedown": U.UF.C.closure(function (obj) {
  2102. //防止拖動圖標即打開了桌面應用
  2103. U.MD.D.click(this, obj);
  2104. }, [_studentDesktopIconInfo[i]]),
  2105. "onclick": U.UF.C.closure(function (obj) {
  2106. //防止拖動圖標即打開了桌面應用
  2107. U.MD.D.click(this, obj);
  2108. }, [_studentDesktopIconInfo[i]])
  2109. }, _frag); //
  2110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2113. }
  2114. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2115. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2116. _content = $$("div", {
  2117. className: "U_MD_D_KO",
  2118. "onmousedown": U.UF.C.closure(function (obj) {
  2119. //防止拖動圖標即打開了桌面應用
  2120. U.MD.D.click(this, obj);
  2121. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2122. "onclick": U.UF.C.closure(function (obj) {
  2123. //防止拖動圖標即打開了桌面應用
  2124. U.MD.D.click(this, obj);
  2125. }, [_hkZJLSStudentDeskIconInfo[i]])
  2126. }, _frag); //
  2127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2130. } //
  2131. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2132. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2133. _content = $$("div", {
  2134. className: "U_MD_D_KO",
  2135. "onmousedown": U.UF.C.closure(function (obj) {
  2136. //防止拖動圖標即打開了桌面應用
  2137. U.MD.D.click(this, obj);
  2138. }, [_ytyStudentDeskIconInfo[i]]),
  2139. "onclick": U.UF.C.closure(function (obj) {
  2140. //防止拖動圖標即打開了桌面應用
  2141. U.MD.D.click(this, obj);
  2142. }, [_ytyStudentDeskIconInfo[i]])
  2143. }, _frag); //
  2144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2147. } //
  2148. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2149. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2150. _content = $$("div", {
  2151. className: "U_MD_D_KO",
  2152. "onmousedown": U.UF.C.closure(function (obj) {
  2153. //防止拖動圖標即打開了桌面應用
  2154. U.MD.D.click(this, obj);
  2155. }, [_jccssylStudentDeskIconInfo[i]]),
  2156. "onclick": U.UF.C.closure(function (obj) {
  2157. //防止拖動圖標即打開了桌面應用
  2158. U.MD.D.click(this, obj);
  2159. }, [_jccssylStudentDeskIconInfo[i]])
  2160. }, _frag); //
  2161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2164. }
  2165. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2166. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2167. _content = $$("div", {
  2168. className: "U_MD_D_KO",
  2169. "onmousedown": U.UF.C.closure(function (obj) {
  2170. //防止拖動圖標即打開了桌面應用
  2171. U.MD.D.click(this, obj);
  2172. }, [_scnuaiStudentDeskIconInfo[i]]),
  2173. "onclick": U.UF.C.closure(function (obj) {
  2174. //防止拖動圖標即打開了桌面應用
  2175. U.MD.D.click(this, obj);
  2176. }, [_scnuaiStudentDeskIconInfo[i]])
  2177. }, _frag); //
  2178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2181. }
  2182. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2183. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2184. _content = $$("div", {
  2185. className: "U_MD_D_KO",
  2186. "onmousedown": U.UF.C.closure(function (obj) {
  2187. //防止拖動圖標即打開了桌面應用
  2188. U.MD.D.click(this, obj);
  2189. }, [_caleStudentDeskIconInfo[i]]),
  2190. "onclick": U.UF.C.closure(function (obj) {
  2191. //防止拖動圖標即打開了桌面應用
  2192. U.MD.D.click(this, obj);
  2193. }, [_caleStudentDeskIconInfo[i]])
  2194. }, _frag); //
  2195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2198. }
  2199. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2200. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2201. _content = $$("div", {
  2202. className: "U_MD_D_KO",
  2203. "onmousedown": U.UF.C.closure(function (obj) {
  2204. //防止拖動圖標即打開了桌面應用
  2205. U.MD.D.click(this, obj);
  2206. }, [_thuioeStudentDeskIconInfo[i]]),
  2207. "onclick": U.UF.C.closure(function (obj) {
  2208. //防止拖動圖標即打開了桌面應用
  2209. U.MD.D.click(this, obj);
  2210. }, [_thuioeStudentDeskIconInfo[i]])
  2211. }, _frag); //
  2212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2215. }
  2216. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2217. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2218. _content = $$("div", {
  2219. className: "U_MD_D_KO",
  2220. "onmousedown": U.UF.C.closure(function (obj) {
  2221. //防止拖動圖標即打開了桌面應用
  2222. U.MD.D.click(this, obj);
  2223. }, [_tpcStudentDeskIconInfo[i]]),
  2224. "onclick": U.UF.C.closure(function (obj) {
  2225. //防止拖動圖標即打開了桌面應用
  2226. U.MD.D.click(this, obj);
  2227. }, [_tpcStudentDeskIconInfo[i]])
  2228. }, _frag); //
  2229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2232. } //
  2233. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2234. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2235. _content = $$("div", {
  2236. className: "U_MD_D_KO",
  2237. "onmousedown": U.UF.C.closure(function (obj) {
  2238. //防止拖動圖標即打開了桌面應用
  2239. U.MD.D.click(this, obj);
  2240. }, [_chjyjStudentDeskIconInfo[i]]),
  2241. "onclick": U.UF.C.closure(function (obj) {
  2242. //防止拖動圖標即打開了桌面應用
  2243. U.MD.D.click(this, obj);
  2244. }, [_chjyjStudentDeskIconInfo[i]])
  2245. }, _frag); //
  2246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2249. }
  2250. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2251. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2252. _content = $$("div", {
  2253. className: "U_MD_D_KO",
  2254. "onmousedown": U.UF.C.closure(function (obj) {
  2255. //防止拖動圖標即打開了桌面應用
  2256. U.MD.D.click(this, obj);
  2257. }, [_szjkyStudentDeskIconInfo[i]]),
  2258. "onclick": U.UF.C.closure(function (obj) {
  2259. //防止拖動圖標即打開了桌面應用
  2260. U.MD.D.click(this, obj);
  2261. }, [_szjkyStudentDeskIconInfo[i]])
  2262. }, _frag); //
  2263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2266. }
  2267. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2268. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2269. _content = $$("div", {
  2270. className: "U_MD_D_KO",
  2271. "onmousedown": U.UF.C.closure(function (obj) {
  2272. //防止拖動圖標即打開了桌面應用
  2273. U.MD.D.click(this, obj);
  2274. }, [_x020201StudentDeskIconInfo[i]]),
  2275. "onclick": U.UF.C.closure(function (obj) {
  2276. //防止拖動圖標即打開了桌面應用
  2277. U.MD.D.click(this, obj);
  2278. }, [_x020201StudentDeskIconInfo[i]])
  2279. }, _frag); //
  2280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2283. }
  2284. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2285. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2286. _content = $$("div", {
  2287. className: "U_MD_D_KO",
  2288. "onmousedown": U.UF.C.closure(function (obj) {
  2289. //防止拖動圖標即打開了桌面應用
  2290. U.MD.D.click(this, obj);
  2291. }, [_SCNUETStudentDeskIconInfo[i]]),
  2292. "onclick": U.UF.C.closure(function (obj) {
  2293. //防止拖動圖標即打開了桌面應用
  2294. U.MD.D.click(this, obj);
  2295. }, [_SCNUETStudentDeskIconInfo[i]])
  2296. }, _frag); //
  2297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2300. }
  2301. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2302. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2303. _content = $$("div", {
  2304. className: "U_MD_D_KO",
  2305. "onmousedown": U.UF.C.closure(function (obj) {
  2306. //防止拖動圖標即打開了桌面應用
  2307. U.MD.D.click(this, obj);
  2308. }, [_dseiStudentDeskIconInfo[i]]),
  2309. "onclick": U.UF.C.closure(function (obj) {
  2310. //防止拖動圖標即打開了桌面應用
  2311. U.MD.D.click(this, obj);
  2312. }, [_dseiStudentDeskIconInfo[i]])
  2313. }, _frag); //
  2314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2317. }
  2318. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2319. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2320. _content = $$("div", {
  2321. className: "U_MD_D_KO",
  2322. "onmousedown": U.UF.C.closure(function (obj) {
  2323. //防止拖動圖標即打開了桌面應用
  2324. U.MD.D.click(this, obj);
  2325. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2326. "onclick": U.UF.C.closure(function (obj) {
  2327. //防止拖動圖標即打開了桌面應用
  2328. U.MD.D.click(this, obj);
  2329. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2330. }, _frag); //
  2331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2334. }
  2335. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2336. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2337. _content = $$("div", {
  2338. className: "U_MD_D_KO",
  2339. "onmousedown": U.UF.C.closure(function (obj) {
  2340. //防止拖動圖標即打開了桌面應用
  2341. U.MD.D.click(this, obj);
  2342. }, [_nsfxStudentDeskIconInfo[i]]),
  2343. "onclick": U.UF.C.closure(function (obj) {
  2344. //防止拖動圖標即打開了桌面應用
  2345. U.MD.D.click(this, obj);
  2346. }, [_nsfxStudentDeskIconInfo[i]])
  2347. }, _frag); //
  2348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2351. }
  2352. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2353. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2354. _content = $$("div", {
  2355. className: "U_MD_D_KO",
  2356. "onmousedown": U.UF.C.closure(function (obj) {
  2357. //防止拖動圖標即打開了桌面應用
  2358. U.MD.D.click(this, obj);
  2359. }, [_stiaStudentDeskIconInfo[i]]),
  2360. "onclick": U.UF.C.closure(function (obj) {
  2361. //防止拖動圖標即打開了桌面應用
  2362. U.MD.D.click(this, obj);
  2363. }, [_stiaStudentDeskIconInfo[i]])
  2364. }, _frag); //
  2365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2368. }
  2369. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2370. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2371. _content = $$("div", {
  2372. className: "U_MD_D_KO",
  2373. "onmousedown": U.UF.C.closure(function (obj) {
  2374. //防止拖動圖標即打開了桌面應用
  2375. U.MD.D.click(this, obj);
  2376. }, [_szdjgStudentDeskIconInfo[i]]),
  2377. "onclick": U.UF.C.closure(function (obj) {
  2378. //防止拖動圖標即打開了桌面應用
  2379. U.MD.D.click(this, obj);
  2380. }, [_szdjgStudentDeskIconInfo[i]])
  2381. }, _frag); //
  2382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2385. }
  2386. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2387. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖動圖標即打開了桌面應用
  2392. U.MD.D.click(this, obj);
  2393. }, [_x010607StudentDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖動圖標即打開了桌面應用
  2396. U.MD.D.click(this, obj);
  2397. }, [_x010607StudentDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2402. }
  2403. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2404. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2405. _content = $$("div", {
  2406. className: "U_MD_D_KO",
  2407. "onmousedown": U.UF.C.closure(function (obj) {
  2408. //防止拖動圖標即打開了桌面應用
  2409. U.MD.D.click(this, obj);
  2410. }, [_xhlyStudentDeskIconInfo[i]]),
  2411. "onclick": U.UF.C.closure(function (obj) {
  2412. //防止拖動圖標即打開了桌面應用
  2413. U.MD.D.click(this, obj);
  2414. }, [_xhlyStudentDeskIconInfo[i]])
  2415. }, _frag); //
  2416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2419. }
  2420. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2421. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2422. _content = $$("div", {
  2423. className: "U_MD_D_KO",
  2424. "onmousedown": U.UF.C.closure(function (obj) {
  2425. //防止拖動圖標即打開了桌面應用
  2426. U.MD.D.click(this, obj);
  2427. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2428. "onclick": U.UF.C.closure(function (obj) {
  2429. //防止拖動圖標即打開了桌面應用
  2430. U.MD.D.click(this, obj);
  2431. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2432. }, _frag); //
  2433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2436. }
  2437. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2438. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2439. _content = $$("div", {
  2440. className: "U_MD_D_KO",
  2441. "onmousedown": U.UF.C.closure(function (obj) {
  2442. //防止拖動圖標即打開了桌面應用
  2443. U.MD.D.click(this, obj);
  2444. }, [_x010503StudentDeskIconInfo[i]]),
  2445. "onclick": U.UF.C.closure(function (obj) {
  2446. //防止拖動圖標即打開了桌面應用
  2447. U.MD.D.click(this, obj);
  2448. }, [_x010503StudentDeskIconInfo[i]])
  2449. }, _frag); //
  2450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2453. }
  2454. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2455. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2456. _content = $$("div", {
  2457. className: "U_MD_D_KO",
  2458. "onmousedown": U.UF.C.closure(function (obj) {
  2459. //防止拖動圖標即打開了桌面應用
  2460. U.MD.D.click(this, obj);
  2461. }, [_x010504StudentDeskIconInfo[i]]),
  2462. "onclick": U.UF.C.closure(function (obj) {
  2463. //防止拖動圖標即打開了桌面應用
  2464. U.MD.D.click(this, obj);
  2465. }, [_x010504StudentDeskIconInfo[i]])
  2466. }, _frag); //
  2467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2470. }
  2471. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2472. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2473. _content = $$("div", {
  2474. className: "U_MD_D_KO",
  2475. "onmousedown": U.UF.C.closure(function (obj) {
  2476. //防止拖動圖標即打開了桌面應用
  2477. U.MD.D.click(this, obj);
  2478. }, [_x010204StudentDeskIconInfo[i]]),
  2479. "onclick": U.UF.C.closure(function (obj) {
  2480. //防止拖動圖標即打開了桌面應用
  2481. U.MD.D.click(this, obj);
  2482. }, [_x010204StudentDeskIconInfo[i]])
  2483. }, _frag); //
  2484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2487. }
  2488. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2489. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2490. _content = $$("div", {
  2491. className: "U_MD_D_KO",
  2492. "onmousedown": U.UF.C.closure(function (obj) {
  2493. //防止拖動圖標即打開了桌面應用
  2494. U.MD.D.click(this, obj);
  2495. }, [_trailStudentDeskIconInfo[i]]),
  2496. "onclick": U.UF.C.closure(function (obj) {
  2497. //防止拖動圖標即打開了桌面應用
  2498. U.MD.D.click(this, obj);
  2499. }, [_trailStudentDeskIconInfo[i]])
  2500. }, _frag); //
  2501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2504. }
  2505. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2506. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2507. _content = $$("div", {
  2508. className: "U_MD_D_KO",
  2509. "onmousedown": U.UF.C.closure(function (obj) {
  2510. //防止拖動圖標即打開了桌面應用
  2511. U.MD.D.click(this, obj);
  2512. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2513. "onclick": U.UF.C.closure(function (obj) {
  2514. //防止拖動圖標即打開了桌面應用
  2515. U.MD.D.click(this, obj);
  2516. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2517. }, _frag); //
  2518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2521. }
  2522. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2523. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2524. _content = $$("div", {
  2525. className: "U_MD_D_KO",
  2526. "onmousedown": U.UF.C.closure(function (obj) {
  2527. //防止拖動圖標即打開了桌面應用
  2528. U.MD.D.click(this, obj);
  2529. }, [_x010608StudentDeskIconInfo[i]]),
  2530. "onclick": U.UF.C.closure(function (obj) {
  2531. //防止拖動圖標即打開了桌面應用
  2532. U.MD.D.click(this, obj);
  2533. }, [_x010608StudentDeskIconInfo[i]])
  2534. }, _frag); //
  2535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2538. }
  2539. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2540. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2541. _content = $$("div", {
  2542. className: "U_MD_D_KO",
  2543. "onmousedown": U.UF.C.closure(function (obj) {
  2544. //防止拖動圖標即打開了桌面應用
  2545. U.MD.D.click(this, obj);
  2546. }, [_x010611StudentDeskIconInfo[i]]),
  2547. "onclick": U.UF.C.closure(function (obj) {
  2548. //防止拖動圖標即打開了桌面應用
  2549. U.MD.D.click(this, obj);
  2550. }, [_x010611StudentDeskIconInfo[i]])
  2551. }, _frag); //
  2552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2555. }
  2556. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2557. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖動圖標即打開了桌面應用
  2562. U.MD.D.click(this, obj);
  2563. }, [_tianyuantudentDeskIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖動圖標即打開了桌面應用
  2566. U.MD.D.click(this, obj);
  2567. }, [_tianyuantudentDeskIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2574. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2575. _content = $$("div", {
  2576. className: "U_MD_D_KO",
  2577. "onmousedown": U.UF.C.closure(function (obj) {
  2578. //防止拖動圖標即打開了桌面應用
  2579. U.MD.D.click(this, obj);
  2580. }, [_siesStudentDeskIconInfo[i]]),
  2581. "onclick": U.UF.C.closure(function (obj) {
  2582. //防止拖動圖標即打開了桌面應用
  2583. U.MD.D.click(this, obj);
  2584. }, [_siesStudentDeskIconInfo[i]])
  2585. }, _frag); //
  2586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2589. }
  2590. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2591. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖動圖標即打開了桌面應用
  2596. U.MD.D.click(this, obj);
  2597. }, [_guzmsStudentDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖動圖標即打開了桌面應用
  2600. U.MD.D.click(this, obj);
  2601. }, [_guzmsStudentDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2608. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖動圖標即打開了桌面應用
  2613. U.MD.D.click(this, obj);
  2614. }, [_hkStudentDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖動圖標即打開了桌面應用
  2617. U.MD.D.click(this, obj);
  2618. }, [_hkStudentDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2623. }
  2624. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2625. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2626. _content = $$("div", {
  2627. className: "U_MD_D_KO",
  2628. "onmousedown": U.UF.C.closure(function (obj) {
  2629. //防止拖動圖標即打開了桌面應用
  2630. U.MD.D.click(this, obj);
  2631. }, [_hkaceStudentDeskIconInfo[i]]),
  2632. "onclick": U.UF.C.closure(function (obj) {
  2633. //防止拖動圖標即打開了桌面應用
  2634. U.MD.D.click(this, obj);
  2635. }, [_hkaceStudentDeskIconInfo[i]])
  2636. }, _frag); //
  2637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2640. }
  2641. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2642. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2643. _content = $$("div", {
  2644. className: "U_MD_D_KO",
  2645. "onmousedown": U.UF.C.closure(function (obj) {
  2646. //防止拖動圖標即打開了桌面應用
  2647. U.MD.D.click(this, obj);
  2648. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2649. "onclick": U.UF.C.closure(function (obj) {
  2650. //防止拖動圖標即打開了桌面應用
  2651. U.MD.D.click(this, obj);
  2652. }, [_BSDNSstudentDesktopIconInfo[i]])
  2653. }, _frag); //
  2654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2657. }
  2658. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2659. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2660. _content = $$("div", {
  2661. className: "U_MD_D_KO",
  2662. "onmousedown": U.UF.C.closure(function (obj) {
  2663. //防止拖動圖標即打開了桌面應用
  2664. U.MD.D.click(this, obj);
  2665. }, [_cocobizStudentDeskIconInfo[i]]),
  2666. "onclick": U.UF.C.closure(function (obj) {
  2667. //防止拖動圖標即打開了桌面應用
  2668. U.MD.D.click(this, obj);
  2669. }, [_cocobizStudentDeskIconInfo[i]])
  2670. }, _frag); //
  2671. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2672. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2673. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2674. }
  2675. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2676. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2677. _content = $$("div", {
  2678. className: "U_MD_D_KO",
  2679. "onmousedown": U.UF.C.closure(function (obj) {
  2680. //防止拖動圖標即打開了桌面應用
  2681. U.MD.D.click(this, obj);
  2682. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2683. "onclick": U.UF.C.closure(function (obj) {
  2684. //防止拖動圖標即打開了桌面應用
  2685. U.MD.D.click(this, obj);
  2686. }, [_xxzjkyStudentDeskIconInfo[i]])
  2687. }, _frag); //
  2688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2691. }
  2692. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2693. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2694. _content = $$("div", {
  2695. className: "U_MD_D_KO",
  2696. "onmousedown": U.UF.C.closure(function (obj) {
  2697. //防止拖動圖標即打開了桌面應用
  2698. U.MD.D.click(this, obj);
  2699. }, [_studentDesktopIconInfo[i]]),
  2700. "onclick": U.UF.C.closure(function (obj) {
  2701. //防止拖動圖標即打開了桌面應用
  2702. U.MD.D.click(this, obj);
  2703. }, [_studentDesktopIconInfo[i]])
  2704. }, _frag); //
  2705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2708. }
  2709. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2710. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2711. _content = $$("div", {
  2712. className: "U_MD_D_KO",
  2713. "onmousedown": U.UF.C.closure(function (obj) {
  2714. //防止拖動圖標即打開了桌面應用
  2715. U.MD.D.click(this, obj);
  2716. }, [_tcStudentDeskIconInfo[i]]),
  2717. "onclick": U.UF.C.closure(function (obj) {
  2718. //防止拖動圖標即打開了桌面應用
  2719. U.MD.D.click(this, obj);
  2720. }, [_tcStudentDeskIconInfo[i]])
  2721. }, _frag); //
  2722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2725. }
  2726. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2727. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖動圖標即打開了桌面應用
  2732. U.MD.D.click(this, obj);
  2733. }, [_szscStudentDeskIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖動圖標即打開了桌面應用
  2736. U.MD.D.click(this, obj);
  2737. }, [_szscStudentDeskIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2744. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2745. _content = $$("div", {
  2746. className: "U_MD_D_KO",
  2747. "onmousedown": U.UF.C.closure(function (obj) {
  2748. //防止拖動圖標即打開了桌面應用
  2749. U.MD.D.click(this, obj);
  2750. }, [_studentDesktopIconInfo3[i]]),
  2751. "onclick": U.UF.C.closure(function (obj) {
  2752. //防止拖動圖標即打開了桌面應用
  2753. U.MD.D.click(this, obj);
  2754. }, [_studentDesktopIconInfo3[i]])
  2755. }, _frag); //
  2756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2759. }
  2760. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2761. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2762. _content = $$("div", {
  2763. className: "U_MD_D_KO",
  2764. "onmousedown": U.UF.C.closure(function (obj) {
  2765. //防止拖動圖標即打開了桌面應用
  2766. U.MD.D.click(this, obj);
  2767. }, [_studentDesktopIconInfo2[i]]),
  2768. "onclick": U.UF.C.closure(function (obj) {
  2769. //防止拖動圖標即打開了桌面應用
  2770. U.MD.D.click(this, obj);
  2771. }, [_studentDesktopIconInfo2[i]])
  2772. }, _frag); //
  2773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2776. }
  2777. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2778. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2779. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2780. continue
  2781. }
  2782. _content = $$("div", {
  2783. className: "U_MD_D_KO",
  2784. "onmousedown": U.UF.C.closure(function (obj) {
  2785. //防止拖動圖標即打開了桌面應用
  2786. U.MD.D.click(this, obj);
  2787. }, [_wanketeacherDesktopIconInfo[i]]),
  2788. "onclick": U.UF.C.closure(function (obj) {
  2789. //防止拖動圖標即打開了桌面應用
  2790. U.MD.D.click(this, obj);
  2791. }, [_wanketeacherDesktopIconInfo[i]])
  2792. }, _frag); //
  2793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2796. }
  2797. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2798. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖動圖標即打開了桌面應用
  2803. U.MD.D.click(this, obj);
  2804. }, [_wankeAdminDesktopIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖動圖標即打開了桌面應用
  2807. U.MD.D.click(this, obj);
  2808. }, [_wankeAdminDesktopIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2813. }
  2814. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2815. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2816. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2817. continue
  2818. }
  2819. _content = $$("div", {
  2820. className: "U_MD_D_KO",
  2821. "onmousedown": U.UF.C.closure(function (obj) {
  2822. //防止拖動圖標即打開了桌面應用
  2823. U.MD.D.click(this, obj);
  2824. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2825. "onclick": U.UF.C.closure(function (obj) {
  2826. //防止拖動圖標即打開了桌面應用
  2827. U.MD.D.click(this, obj);
  2828. }, [_scnuaiTeacherDeskIconInfo[i]])
  2829. }, _frag); //
  2830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2833. }
  2834. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2835. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2836. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2837. continue
  2838. }
  2839. _content = $$("div", {
  2840. className: "U_MD_D_KO",
  2841. "onmousedown": U.UF.C.closure(function (obj) {
  2842. //防止拖動圖標即打開了桌面應用
  2843. U.MD.D.click(this, obj);
  2844. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2845. "onclick": U.UF.C.closure(function (obj) {
  2846. //防止拖動圖標即打開了桌面應用
  2847. U.MD.D.click(this, obj);
  2848. }, [_BSDNSteacherDesktopIconInfo[i]])
  2849. }, _frag); //
  2850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2853. }
  2854. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2855. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2856. _content = $$("div", {
  2857. className: "U_MD_D_KO",
  2858. "onmousedown": U.UF.C.closure(function (obj) {
  2859. //防止拖動圖標即打開了桌面應用
  2860. U.MD.D.click(this, obj);
  2861. }, [_scnuaiAdminDeskIconInfo[i]]),
  2862. "onclick": U.UF.C.closure(function (obj) {
  2863. //防止拖動圖標即打開了桌面應用
  2864. U.MD.D.click(this, obj);
  2865. }, [_scnuaiAdminDeskIconInfo[i]])
  2866. }, _frag); //
  2867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2870. }
  2871. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2872. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2873. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2874. continue
  2875. }
  2876. _content = $$("div", {
  2877. className: "U_MD_D_KO",
  2878. "onmousedown": U.UF.C.closure(function (obj) {
  2879. //防止拖動圖標即打開了桌面應用
  2880. U.MD.D.click(this, obj);
  2881. }, [_jccssylTeacherDeskIconInfo[i]]),
  2882. "onclick": U.UF.C.closure(function (obj) {
  2883. //防止拖動圖標即打開了桌面應用
  2884. U.MD.D.click(this, obj);
  2885. }, [_jccssylTeacherDeskIconInfo[i]])
  2886. }, _frag); //
  2887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2890. }
  2891. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2892. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2893. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2894. continue
  2895. }
  2896. _content = $$("div", {
  2897. className: "U_MD_D_KO",
  2898. "onmousedown": U.UF.C.closure(function (obj) {
  2899. //防止拖動圖標即打開了桌面應用
  2900. U.MD.D.click(this, obj);
  2901. }, [_caleTeacherDeskIconInfo[i]]),
  2902. "onclick": U.UF.C.closure(function (obj) {
  2903. //防止拖動圖標即打開了桌面應用
  2904. U.MD.D.click(this, obj);
  2905. }, [_caleTeacherDeskIconInfo[i]])
  2906. }, _frag); //
  2907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2910. }
  2911. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2912. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2913. _content = $$("div", {
  2914. className: "U_MD_D_KO",
  2915. "onmousedown": U.UF.C.closure(function (obj) {
  2916. //防止拖動圖標即打開了桌面應用
  2917. U.MD.D.click(this, obj);
  2918. }, [_tpcOrganizerDeskIconInfo[i]]),
  2919. "onclick": U.UF.C.closure(function (obj) {
  2920. //防止拖動圖標即打開了桌面應用
  2921. U.MD.D.click(this, obj);
  2922. }, [_tpcOrganizerDeskIconInfo[i]])
  2923. }, _frag); //
  2924. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2925. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2926. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2927. }
  2928. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2929. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2930. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2931. continue
  2932. }
  2933. _content = $$("div", {
  2934. className: "U_MD_D_KO",
  2935. "onmousedown": U.UF.C.closure(function (obj) {
  2936. //防止拖動圖標即打開了桌面應用
  2937. U.MD.D.click(this, obj);
  2938. }, [_tpcTeacherDeskIconInfo[i]]),
  2939. "onclick": U.UF.C.closure(function (obj) {
  2940. //防止拖動圖標即打開了桌面應用
  2941. U.MD.D.click(this, obj);
  2942. }, [_tpcTeacherDeskIconInfo[i]])
  2943. }, _frag); //
  2944. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2945. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2946. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2947. }
  2948. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2949. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2950. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2951. continue
  2952. }
  2953. _content = $$("div", {
  2954. className: "U_MD_D_KO",
  2955. "onmousedown": U.UF.C.closure(function (obj) {
  2956. //防止拖動圖標即打開了桌面應用
  2957. U.MD.D.click(this, obj);
  2958. }, [_teacherDesktopIconInfo2[i]]),
  2959. "onclick": U.UF.C.closure(function (obj) {
  2960. //防止拖動圖標即打開了桌面應用
  2961. U.MD.D.click(this, obj);
  2962. }, [_teacherDesktopIconInfo2[i]])
  2963. }, _frag); //
  2964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2967. }
  2968. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2969. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2970. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2971. continue
  2972. }
  2973. _content = $$("div", {
  2974. className: "U_MD_D_KO",
  2975. "onmousedown": U.UF.C.closure(function (obj) {
  2976. //防止拖動圖標即打開了桌面應用
  2977. U.MD.D.click(this, obj);
  2978. }, [_thuioeTeacherDeskIconInfo[i]]),
  2979. "onclick": U.UF.C.closure(function (obj) {
  2980. //防止拖動圖標即打開了桌面應用
  2981. U.MD.D.click(this, obj);
  2982. }, [_thuioeTeacherDeskIconInfo[i]])
  2983. }, _frag); //
  2984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2987. }
  2988. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2989. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2990. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2991. continue
  2992. }
  2993. _content = $$("div", {
  2994. className: "U_MD_D_KO",
  2995. "onmousedown": U.UF.C.closure(function (obj) {
  2996. //防止拖動圖標即打開了桌面應用
  2997. U.MD.D.click(this, obj);
  2998. }, [_lotechTeacherDeskIconInfo[i]]),
  2999. "onclick": U.UF.C.closure(function (obj) {
  3000. //防止拖動圖標即打開了桌面應用
  3001. U.MD.D.click(this, obj);
  3002. }, [_lotechTeacherDeskIconInfo[i]])
  3003. }, _frag); //
  3004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3007. }//
  3008. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3009. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3010. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3011. continue
  3012. }
  3013. _content = $$("div", {
  3014. className: "U_MD_D_KO",
  3015. "onmousedown": U.UF.C.closure(function (obj) {
  3016. //防止拖動圖標即打開了桌面應用
  3017. U.MD.D.click(this, obj);
  3018. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3019. "onclick": U.UF.C.closure(function (obj) {
  3020. //防止拖動圖標即打開了桌面應用
  3021. U.MD.D.click(this, obj);
  3022. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3023. }, _frag); //
  3024. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3025. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3026. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3027. }
  3028. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3029. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3030. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3031. continue
  3032. }
  3033. _content = $$("div", {
  3034. className: "U_MD_D_KO",
  3035. "onmousedown": U.UF.C.closure(function (obj) {
  3036. //防止拖動圖標即打開了桌面應用
  3037. U.MD.D.click(this, obj);
  3038. }, [_siesTeacherDeskIconInfo[i]]),
  3039. "onclick": U.UF.C.closure(function (obj) {
  3040. //防止拖動圖標即打開了桌面應用
  3041. U.MD.D.click(this, obj);
  3042. }, [_siesTeacherDeskIconInfo[i]])
  3043. }, _frag); //
  3044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3047. }
  3048. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3049. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3050. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3051. continue
  3052. }
  3053. _content = $$("div", {
  3054. className: "U_MD_D_KO",
  3055. "onmousedown": U.UF.C.closure(function (obj) {
  3056. //防止拖動圖標即打開了桌面應用
  3057. U.MD.D.click(this, obj);
  3058. }, [_guzmsTeacherDeskIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖動圖標即打開了桌面應用
  3061. U.MD.D.click(this, obj);
  3062. }, [_guzmsTeacherDeskIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3069. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3070. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3071. continue
  3072. }
  3073. _content = $$("div", {
  3074. className: "U_MD_D_KO",
  3075. "onmousedown": U.UF.C.closure(function (obj) {
  3076. //防止拖動圖標即打開了桌面應用
  3077. U.MD.D.click(this, obj);
  3078. }, [_longhuaTeacherDeskIconInfo[i]]),
  3079. "onclick": U.UF.C.closure(function (obj) {
  3080. //防止拖動圖標即打開了桌面應用
  3081. U.MD.D.click(this, obj);
  3082. }, [_longhuaTeacherDeskIconInfo[i]])
  3083. }, _frag); //
  3084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3087. }
  3088. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3089. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3090. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3091. continue
  3092. }
  3093. _content = $$("div", {
  3094. className: "U_MD_D_KO",
  3095. "onmousedown": U.UF.C.closure(function (obj) {
  3096. //防止拖動圖標即打開了桌面應用
  3097. U.MD.D.click(this, obj);
  3098. }, [_ytyTeacherDeskIconInfo[i]]),
  3099. "onclick": U.UF.C.closure(function (obj) {
  3100. //防止拖動圖標即打開了桌面應用
  3101. U.MD.D.click(this, obj);
  3102. }, [_ytyTeacherDeskIconInfo[i]])
  3103. }, _frag); //
  3104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3107. }
  3108. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3109. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3110. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3111. continue
  3112. }
  3113. _content = $$("div", {
  3114. className: "U_MD_D_KO",
  3115. "onmousedown": U.UF.C.closure(function (obj) {
  3116. //防止拖動圖標即打開了桌面應用
  3117. U.MD.D.click(this, obj);
  3118. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3119. "onclick": U.UF.C.closure(function (obj) {
  3120. //防止拖動圖標即打開了桌面應用
  3121. U.MD.D.click(this, obj);
  3122. }, [_yunhaiTeacherDeskIconInfo[i]])
  3123. }, _frag); //
  3124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3127. } //_hkStudentDeskIconInfo
  3128. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3129. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3130. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3131. continue
  3132. }
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖動圖標即打開了桌面應用
  3137. U.MD.D.click(this, obj);
  3138. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖動圖標即打開了桌面應用
  3141. U.MD.D.click(this, obj);
  3142. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3149. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3150. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3151. continue
  3152. }
  3153. _content = $$("div", {
  3154. className: "U_MD_D_KO",
  3155. "onmousedown": U.UF.C.closure(function (obj) {
  3156. //防止拖動圖標即打開了桌面應用
  3157. U.MD.D.click(this, obj);
  3158. }, [_hkTeacherDeskIconInfo[i]]),
  3159. "onclick": U.UF.C.closure(function (obj) {
  3160. //防止拖動圖標即打開了桌面應用
  3161. U.MD.D.click(this, obj);
  3162. }, [_hkTeacherDeskIconInfo[i]])
  3163. }, _frag); //
  3164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3167. }
  3168. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3169. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3170. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3171. continue
  3172. }
  3173. _content = $$("div", {
  3174. className: "U_MD_D_KO",
  3175. "onmousedown": U.UF.C.closure(function (obj) {
  3176. //防止拖動圖標即打開了桌面應用
  3177. U.MD.D.click(this, obj);
  3178. }, [_hkaceTeacherDeskIconInfo[i]]),
  3179. "onclick": U.UF.C.closure(function (obj) {
  3180. //防止拖動圖標即打開了桌面應用
  3181. U.MD.D.click(this, obj);
  3182. }, [_hkaceTeacherDeskIconInfo[i]])
  3183. }, _frag); //
  3184. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3187. }
  3188. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3189. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3190. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3191. continue
  3192. }
  3193. _content = $$("div", {
  3194. className: "U_MD_D_KO",
  3195. "onmousedown": U.UF.C.closure(function (obj) {
  3196. //防止拖動圖標即打開了桌面應用
  3197. U.MD.D.click(this, obj);
  3198. }, [_cocobizTeacherDeskIconInfo[i]]),
  3199. "onclick": U.UF.C.closure(function (obj) {
  3200. //防止拖動圖標即打開了桌面應用
  3201. U.MD.D.click(this, obj);
  3202. }, [_cocobizTeacherDeskIconInfo[i]])
  3203. }, _frag); //
  3204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3207. }
  3208. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3209. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3210. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3211. continue
  3212. }
  3213. _content = $$("div", {
  3214. className: "U_MD_D_KO",
  3215. "onmousedown": U.UF.C.closure(function (obj) {
  3216. //防止拖動圖標即打開了桌面應用
  3217. U.MD.D.click(this, obj);
  3218. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3219. "onclick": U.UF.C.closure(function (obj) {
  3220. //防止拖動圖標即打開了桌面應用
  3221. U.MD.D.click(this, obj);
  3222. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3223. }, _frag); //
  3224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3227. }
  3228. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3229. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3230. _content = $$("div", {
  3231. className: "U_MD_D_KO",
  3232. "onmousedown": U.UF.C.closure(function (obj) {
  3233. //防止拖動圖標即打開了桌面應用
  3234. U.MD.D.click(this, obj);
  3235. }, [_gdjgAdminDeskIconInfo[i]]),
  3236. "onclick": U.UF.C.closure(function (obj) {
  3237. //防止拖動圖標即打開了桌面應用
  3238. U.MD.D.click(this, obj);
  3239. }, [_gdjgAdminDeskIconInfo[i]])
  3240. }, _frag); //
  3241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3244. }
  3245. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3246. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3247. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3248. continue
  3249. }
  3250. _content = $$("div", {
  3251. className: "U_MD_D_KO",
  3252. "onmousedown": U.UF.C.closure(function (obj) {
  3253. //防止拖動圖標即打開了桌面應用
  3254. U.MD.D.click(this, obj);
  3255. }, [_gdjgTeacherDeskIconInfo[i]]),
  3256. "onclick": U.UF.C.closure(function (obj) {
  3257. //防止拖動圖標即打開了桌面應用
  3258. U.MD.D.click(this, obj);
  3259. }, [_gdjgTeacherDeskIconInfo[i]])
  3260. }, _frag); //
  3261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3264. }
  3265. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3266. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3267. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3268. continue
  3269. }
  3270. _content = $$("div", {
  3271. className: "U_MD_D_KO",
  3272. "onmousedown": U.UF.C.closure(function (obj) {
  3273. //防止拖動圖標即打開了桌面應用
  3274. U.MD.D.click(this, obj);
  3275. }, [_szherTeacherDeskIconInfo[i]]),
  3276. "onclick": U.UF.C.closure(function (obj) {
  3277. //防止拖動圖標即打開了桌面應用
  3278. U.MD.D.click(this, obj);
  3279. }, [_szherTeacherDeskIconInfo[i]])
  3280. }, _frag); //
  3281. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3282. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3283. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3284. }
  3285. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3286. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖動圖標即打開了桌面應用
  3291. U.MD.D.click(this, obj);
  3292. }, [_heyuannAdminDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖動圖標即打開了桌面應用
  3295. U.MD.D.click(this, obj);
  3296. }, [_heyuannAdminDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3303. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3304. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖動圖標即打開了桌面應用
  3311. U.MD.D.click(this, obj);
  3312. }, [_heyuanTeacherDeskIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖動圖標即打開了桌面應用
  3315. U.MD.D.click(this, obj);
  3316. }, [_heyuanTeacherDeskIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3321. } //
  3322. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3323. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3324. _content = $$("div", {
  3325. className: "U_MD_D_KO",
  3326. "onmousedown": U.UF.C.closure(function (obj) {
  3327. //防止拖動圖標即打開了桌面應用
  3328. U.MD.D.click(this, obj);
  3329. }, [_dseiAdminDeskIconInfo[i]]),
  3330. "onclick": U.UF.C.closure(function (obj) {
  3331. //防止拖動圖標即打開了桌面應用
  3332. U.MD.D.click(this, obj);
  3333. }, [_dseiAdminDeskIconInfo[i]])
  3334. }, _frag); //
  3335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3338. }
  3339. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3340. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3341. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3342. continue
  3343. }
  3344. _content = $$("div", {
  3345. className: "U_MD_D_KO",
  3346. "onmousedown": U.UF.C.closure(function (obj) {
  3347. //防止拖動圖標即打開了桌面應用
  3348. U.MD.D.click(this, obj);
  3349. }, [_dseiTeacherDeskIconInfo[i]]),
  3350. "onclick": U.UF.C.closure(function (obj) {
  3351. //防止拖動圖標即打開了桌面應用
  3352. U.MD.D.click(this, obj);
  3353. }, [_dseiTeacherDeskIconInfo[i]])
  3354. }, _frag); //
  3355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3358. } //
  3359. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3360. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3361. _content = $$("div", {
  3362. className: "U_MD_D_KO",
  3363. "onmousedown": U.UF.C.closure(function (obj) {
  3364. //防止拖動圖標即打開了桌面應用
  3365. U.MD.D.click(this, obj);
  3366. }, [_chjyjAdminDeskIconInfo[i]]),
  3367. "onclick": U.UF.C.closure(function (obj) {
  3368. //防止拖動圖標即打開了桌面應用
  3369. U.MD.D.click(this, obj);
  3370. }, [_chjyjAdminDeskIconInfo[i]])
  3371. }, _frag); //
  3372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3375. }//
  3376. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3377. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3378. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3379. continue
  3380. }
  3381. _content = $$("div", {
  3382. className: "U_MD_D_KO",
  3383. "onmousedown": U.UF.C.closure(function (obj) {
  3384. //防止拖動圖標即打開了桌面應用
  3385. U.MD.D.click(this, obj);
  3386. }, [_chjyjTeacherDeskIconInfo[i]]),
  3387. "onclick": U.UF.C.closure(function (obj) {
  3388. //防止拖動圖標即打開了桌面應用
  3389. U.MD.D.click(this, obj);
  3390. }, [_chjyjTeacherDeskIconInfo[i]])
  3391. }, _frag); //
  3392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3395. }
  3396. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3397. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3398. _content = $$("div", {
  3399. className: "U_MD_D_KO",
  3400. "onmousedown": U.UF.C.closure(function (obj) {
  3401. //防止拖動圖標即打開了桌面應用
  3402. U.MD.D.click(this, obj);
  3403. }, [_szjkyAdminDeskIconInfo[i]]),
  3404. "onclick": U.UF.C.closure(function (obj) {
  3405. //防止拖動圖標即打開了桌面應用
  3406. U.MD.D.click(this, obj);
  3407. }, [_szjkyAdminDeskIconInfo[i]])
  3408. }, _frag); //
  3409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3412. }//
  3413. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3414. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3415. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3416. continue
  3417. }
  3418. _content = $$("div", {
  3419. className: "U_MD_D_KO",
  3420. "onmousedown": U.UF.C.closure(function (obj) {
  3421. //防止拖動圖標即打開了桌面應用
  3422. U.MD.D.click(this, obj);
  3423. }, [_szjkyTeacherDeskIconInfo[i]]),
  3424. "onclick": U.UF.C.closure(function (obj) {
  3425. //防止拖動圖標即打開了桌面應用
  3426. U.MD.D.click(this, obj);
  3427. }, [_szjkyTeacherDeskIconInfo[i]])
  3428. }, _frag); //
  3429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3432. }
  3433. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3434. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3435. _content = $$("div", {
  3436. className: "U_MD_D_KO",
  3437. "onmousedown": U.UF.C.closure(function (obj) {
  3438. //防止拖動圖標即打開了桌面應用
  3439. U.MD.D.click(this, obj);
  3440. }, [_x020201AdminDeskIconInfo[i]]),
  3441. "onclick": U.UF.C.closure(function (obj) {
  3442. //防止拖動圖標即打開了桌面應用
  3443. U.MD.D.click(this, obj);
  3444. }, [_x020201AdminDeskIconInfo[i]])
  3445. }, _frag); //
  3446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3449. }//
  3450. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3451. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3452. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3453. continue
  3454. }
  3455. _content = $$("div", {
  3456. className: "U_MD_D_KO",
  3457. "onmousedown": U.UF.C.closure(function (obj) {
  3458. //防止拖動圖標即打開了桌面應用
  3459. U.MD.D.click(this, obj);
  3460. }, [_x020201TeacherDeskIconInfo[i]]),
  3461. "onclick": U.UF.C.closure(function (obj) {
  3462. //防止拖動圖標即打開了桌面應用
  3463. U.MD.D.click(this, obj);
  3464. }, [_x020201TeacherDeskIconInfo[i]])
  3465. }, _frag); //
  3466. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3467. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3468. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3469. }
  3470. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3471. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3472. _content = $$("div", {
  3473. className: "U_MD_D_KO",
  3474. "onmousedown": U.UF.C.closure(function (obj) {
  3475. //防止拖動圖標即打開了桌面應用
  3476. U.MD.D.click(this, obj);
  3477. }, [_SCNUETAdminDeskIconInfo[i]]),
  3478. "onclick": U.UF.C.closure(function (obj) {
  3479. //防止拖動圖標即打開了桌面應用
  3480. U.MD.D.click(this, obj);
  3481. }, [_SCNUETAdminDeskIconInfo[i]])
  3482. }, _frag); //
  3483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3486. }//
  3487. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3488. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3489. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3490. continue
  3491. }
  3492. _content = $$("div", {
  3493. className: "U_MD_D_KO",
  3494. "onmousedown": U.UF.C.closure(function (obj) {
  3495. //防止拖動圖標即打開了桌面應用
  3496. U.MD.D.click(this, obj);
  3497. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3498. "onclick": U.UF.C.closure(function (obj) {
  3499. //防止拖動圖標即打開了桌面應用
  3500. U.MD.D.click(this, obj);
  3501. }, [_SCNUETTeacherDeskIconInfo[i]])
  3502. }, _frag); //
  3503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3506. }
  3507. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3508. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖動圖標即打開了桌面應用
  3513. U.MD.D.click(this, obj);
  3514. }, [_futianAdminDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖動圖標即打開了桌面應用
  3517. U.MD.D.click(this, obj);
  3518. }, [_futianAdminDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3523. }
  3524. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3525. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3526. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3527. continue
  3528. }
  3529. _content = $$("div", {
  3530. className: "U_MD_D_KO",
  3531. "onmousedown": U.UF.C.closure(function (obj) {
  3532. //防止拖動圖標即打開了桌面應用
  3533. U.MD.D.click(this, obj);
  3534. }, [_futianTeacherDeskIconInfo[i]]),
  3535. "onclick": U.UF.C.closure(function (obj) {
  3536. //防止拖動圖標即打開了桌面應用
  3537. U.MD.D.click(this, obj);
  3538. }, [_futianTeacherDeskIconInfo[i]])
  3539. }, _frag); //
  3540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3543. }
  3544. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3545. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3546. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3547. continue
  3548. }
  3549. _content = $$("div", {
  3550. className: "U_MD_D_KO",
  3551. "onmousedown": U.UF.C.closure(function (obj) {
  3552. //防止拖動圖標即打開了桌面應用
  3553. U.MD.D.click(this, obj);
  3554. }, [_MingdeTeacherDeskIcon[i]]),
  3555. "onclick": U.UF.C.closure(function (obj) {
  3556. //防止拖動圖標即打開了桌面應用
  3557. U.MD.D.click(this, obj);
  3558. }, [_MingdeTeacherDeskIcon[i]])
  3559. }, _frag); //
  3560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3563. }
  3564. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3565. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3566. _content = $$("div", {
  3567. className: "U_MD_D_KO",
  3568. "onmousedown": U.UF.C.closure(function (obj) {
  3569. //防止拖動圖標即打開了桌面應用
  3570. U.MD.D.click(this, obj);
  3571. }, [_lhsAdminDesktopIconInfo[i]]),
  3572. "onclick": U.UF.C.closure(function (obj) {
  3573. //防止拖動圖標即打開了桌面應用
  3574. U.MD.D.click(this, obj);
  3575. }, [_lhsAdminDesktopIconInfo[i]])
  3576. }, _frag); //
  3577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3580. }
  3581. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3582. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3583. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3584. continue
  3585. }
  3586. _content = $$("div", {
  3587. className: "U_MD_D_KO",
  3588. "onmousedown": U.UF.C.closure(function (obj) {
  3589. //防止拖動圖標即打開了桌面應用
  3590. U.MD.D.click(this, obj);
  3591. }, [_lhsteacherDesktopIconInfo[i]]),
  3592. "onclick": U.UF.C.closure(function (obj) {
  3593. //防止拖動圖標即打開了桌面應用
  3594. U.MD.D.click(this, obj);
  3595. }, [_lhsteacherDesktopIconInfo[i]])
  3596. }, _frag); //
  3597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3600. }
  3601. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3602. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3603. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3604. continue
  3605. }
  3606. _content = $$("div", {
  3607. className: "U_MD_D_KO",
  3608. "onmousedown": U.UF.C.closure(function (obj) {
  3609. //防止拖動圖標即打開了桌面應用
  3610. U.MD.D.click(this, obj);
  3611. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3612. "onclick": U.UF.C.closure(function (obj) {
  3613. //防止拖動圖標即打開了桌面應用
  3614. U.MD.D.click(this, obj);
  3615. }, [_zhoujiateacherDesktopIconInfo[i]])
  3616. }, _frag); //
  3617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3620. }
  3621. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3622. for (i = 0; i < _hanDeskIcon.length; i++) {
  3623. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3624. continue
  3625. }
  3626. _content = $$("div", {
  3627. className: "U_MD_D_KO",
  3628. "onmousedown": U.UF.C.closure(function (obj) {
  3629. //防止拖動圖標即打開了桌面應用
  3630. U.MD.D.click(this, obj);
  3631. }, [_hanDeskIcon[i]]),
  3632. "onclick": U.UF.C.closure(function (obj) {
  3633. //防止拖動圖標即打開了桌面應用
  3634. U.MD.D.click(this, obj);
  3635. }, [_hanDeskIcon[i]])
  3636. }, _frag); //
  3637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3640. }
  3641. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3642. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3643. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3644. continue
  3645. }
  3646. _content = $$("div", {
  3647. className: "U_MD_D_KO",
  3648. "onmousedown": U.UF.C.closure(function (obj) {
  3649. //防止拖動圖標即打開了桌面應用
  3650. U.MD.D.click(this, obj);
  3651. }, [_orgStemDeskIcon[i]]),
  3652. "onclick": U.UF.C.closure(function (obj) {
  3653. //防止拖動圖標即打開了桌面應用
  3654. U.MD.D.click(this, obj);
  3655. }, [_orgStemDeskIcon[i]])
  3656. }, _frag); //
  3657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3660. }
  3661. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3662. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3663. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3664. continue
  3665. }
  3666. _content = $$("div", {
  3667. className: "U_MD_D_KO",
  3668. "onmousedown": U.UF.C.closure(function (obj) {
  3669. //防止拖動圖標即打開了桌面應用
  3670. U.MD.D.click(this, obj);
  3671. }, [_szulsDeskIcon[i]]),
  3672. "onclick": U.UF.C.closure(function (obj) {
  3673. //防止拖動圖標即打開了桌面應用
  3674. U.MD.D.click(this, obj);
  3675. }, [_szulsDeskIcon[i]])
  3676. }, _frag); //
  3677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3680. }
  3681. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3682. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3683. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3684. continue
  3685. }
  3686. _content = $$("div", {
  3687. className: "U_MD_D_KO",
  3688. "onmousedown": U.UF.C.closure(function (obj) {
  3689. //防止拖動圖標即打開了桌面應用
  3690. U.MD.D.click(this, obj);
  3691. }, [_orgDesktopIconInfo[i]]),
  3692. "onclick": U.UF.C.closure(function (obj) {
  3693. //防止拖動圖標即打開了桌面應用
  3694. U.MD.D.click(this, obj);
  3695. }, [_orgDesktopIconInfo[i]])
  3696. }, _frag); //
  3697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3700. }
  3701. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3702. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3703. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3704. continue
  3705. }
  3706. _content = $$("div", {
  3707. className: "U_MD_D_KO",
  3708. "onmousedown": U.UF.C.closure(function (obj) {
  3709. //防止拖動圖標即打開了桌面應用
  3710. U.MD.D.click(this, obj);
  3711. }, [_schoolDesktopIconInfo[i]]),
  3712. "onclick": U.UF.C.closure(function (obj) {
  3713. //防止拖動圖標即打開了桌面應用
  3714. U.MD.D.click(this, obj);
  3715. }, [_schoolDesktopIconInfo[i]])
  3716. }, _frag); //
  3717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3720. }
  3721. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3722. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3723. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3724. continue
  3725. }
  3726. _content = $$("div", {
  3727. className: "U_MD_D_KO",
  3728. "onmousedown": U.UF.C.closure(function (obj) {
  3729. //防止拖動圖標即打開了桌面應用
  3730. U.MD.D.click(this, obj);
  3731. }, [_GMteacherDesktopIconInfo[i]]),
  3732. "onclick": U.UF.C.closure(function (obj) {
  3733. //防止拖動圖標即打開了桌面應用
  3734. U.MD.D.click(this, obj);
  3735. }, [_GMteacherDesktopIconInfo[i]])
  3736. }, _frag); //
  3737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3740. }
  3741. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3742. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3743. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3744. continue
  3745. }
  3746. _content = $$("div", {
  3747. className: "U_MD_D_KO",
  3748. "onmousedown": U.UF.C.closure(function (obj) {
  3749. //防止拖動圖標即打開了桌面應用
  3750. U.MD.D.click(this, obj);
  3751. }, [_SONGteacherDesktopIconInfo[i]]),
  3752. "onclick": U.UF.C.closure(function (obj) {
  3753. //防止拖動圖標即打開了桌面應用
  3754. U.MD.D.click(this, obj);
  3755. }, [_SONGteacherDesktopIconInfo[i]])
  3756. }, _frag); //
  3757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3760. }
  3761. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3762. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3763. _content = $$("div", {
  3764. className: "U_MD_D_KO",
  3765. "onmousedown": U.UF.C.closure(function (obj) {
  3766. //防止拖動圖標即打開了桌面應用
  3767. U.MD.D.click(this, obj);
  3768. }, [_GMstudentDesktopIconInfo[i]]),
  3769. "onclick": U.UF.C.closure(function (obj) {
  3770. //防止拖動圖標即打開了桌面應用
  3771. U.MD.D.click(this, obj);
  3772. }, [_GMstudentDesktopIconInfo[i]])
  3773. }, _frag); //
  3774. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3775. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3776. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3777. }
  3778. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3779. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3780. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3781. continue
  3782. }
  3783. _content = $$("div", {
  3784. className: "U_MD_D_KO",
  3785. "onmousedown": U.UF.C.closure(function (obj) {
  3786. //防止拖動圖標即打開了桌面應用
  3787. U.MD.D.click(this, obj);
  3788. }, [_tcTeacherDeskIconInfo[i]]),
  3789. "onclick": U.UF.C.closure(function (obj) {
  3790. //防止拖動圖標即打開了桌面應用
  3791. U.MD.D.click(this, obj);
  3792. }, [_tcTeacherDeskIconInfo[i]])
  3793. }, _frag); //
  3794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3797. }
  3798. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3799. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3800. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3801. continue
  3802. }
  3803. _content = $$("div", {
  3804. className: "U_MD_D_KO",
  3805. "onmousedown": U.UF.C.closure(function (obj) {
  3806. //防止拖動圖標即打開了桌面應用
  3807. U.MD.D.click(this, obj);
  3808. }, [_tcOrganizerDeskIconInfo[i]]),
  3809. "onclick": U.UF.C.closure(function (obj) {
  3810. //防止拖動圖標即打開了桌面應用
  3811. U.MD.D.click(this, obj);
  3812. }, [_tcOrganizerDeskIconInfo[i]])
  3813. }, _frag); //
  3814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3817. }
  3818. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3819. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3820. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3821. continue
  3822. }
  3823. _content = $$("div", {
  3824. className: "U_MD_D_KO",
  3825. "onmousedown": U.UF.C.closure(function (obj) {
  3826. //防止拖動圖標即打開了桌面應用
  3827. U.MD.D.click(this, obj);
  3828. }, [_szscTeacherDeskIconInfo[i]]),
  3829. "onclick": U.UF.C.closure(function (obj) {
  3830. //防止拖動圖標即打開了桌面應用
  3831. U.MD.D.click(this, obj);
  3832. }, [_szscTeacherDeskIconInfo[i]])
  3833. }, _frag); //
  3834. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3835. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3836. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3837. }
  3838. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3839. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3840. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3841. continue
  3842. }
  3843. _content = $$("div", {
  3844. className: "U_MD_D_KO",
  3845. "onmousedown": U.UF.C.closure(function (obj) {
  3846. //防止拖動圖標即打開了桌面應用
  3847. U.MD.D.click(this, obj);
  3848. }, [_szscOrganizerDeskIconInfo[i]]),
  3849. "onclick": U.UF.C.closure(function (obj) {
  3850. //防止拖動圖標即打開了桌面應用
  3851. U.MD.D.click(this, obj);
  3852. }, [_szscOrganizerDeskIconInfo[i]])
  3853. }, _frag); //
  3854. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3855. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3856. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3857. }
  3858. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3859. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3860. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3861. continue
  3862. }
  3863. _content = $$("div", {
  3864. className: "U_MD_D_KO",
  3865. "onmousedown": U.UF.C.closure(function (obj) {
  3866. //防止拖動圖標即打開了桌面應用
  3867. U.MD.D.click(this, obj);
  3868. }, [_nsfxTeacherDeskIconInfo[i]]),
  3869. "onclick": U.UF.C.closure(function (obj) {
  3870. //防止拖動圖標即打開了桌面應用
  3871. U.MD.D.click(this, obj);
  3872. }, [_nsfxTeacherDeskIconInfo[i]])
  3873. }, _frag); //
  3874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3877. }
  3878. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3879. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3880. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3881. continue
  3882. }
  3883. _content = $$("div", {
  3884. className: "U_MD_D_KO",
  3885. "onmousedown": U.UF.C.closure(function (obj) {
  3886. //防止拖動圖標即打開了桌面應用
  3887. U.MD.D.click(this, obj);
  3888. }, [_stiaTeacherDeskIconInfo[i]]),
  3889. "onclick": U.UF.C.closure(function (obj) {
  3890. //防止拖動圖標即打開了桌面應用
  3891. U.MD.D.click(this, obj);
  3892. }, [_stiaTeacherDeskIconInfo[i]])
  3893. }, _frag); //
  3894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3897. }
  3898. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3899. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3900. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3901. continue
  3902. }
  3903. _content = $$("div", {
  3904. className: "U_MD_D_KO",
  3905. "onmousedown": U.UF.C.closure(function (obj) {
  3906. //防止拖動圖標即打開了桌面應用
  3907. U.MD.D.click(this, obj);
  3908. }, [_szdjgTeacherDeskIconInfo[i]]),
  3909. "onclick": U.UF.C.closure(function (obj) {
  3910. //防止拖動圖標即打開了桌面應用
  3911. U.MD.D.click(this, obj);
  3912. }, [_szdjgTeacherDeskIconInfo[i]])
  3913. }, _frag); //
  3914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3917. }
  3918. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3919. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3920. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3921. continue
  3922. }
  3923. _content = $$("div", {
  3924. className: "U_MD_D_KO",
  3925. "onmousedown": U.UF.C.closure(function (obj) {
  3926. //防止拖動圖標即打開了桌面應用
  3927. U.MD.D.click(this, obj);
  3928. }, [_x010607TeacherDeskIconInfo[i]]),
  3929. "onclick": U.UF.C.closure(function (obj) {
  3930. //防止拖動圖標即打開了桌面應用
  3931. U.MD.D.click(this, obj);
  3932. }, [_x010607TeacherDeskIconInfo[i]])
  3933. }, _frag); //
  3934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3937. }
  3938. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3939. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3940. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3941. continue
  3942. }
  3943. _content = $$("div", {
  3944. className: "U_MD_D_KO",
  3945. "onmousedown": U.UF.C.closure(function (obj) {
  3946. //防止拖動圖標即打開了桌面應用
  3947. U.MD.D.click(this, obj);
  3948. }, [_xhlyTeacherDeskIconInfo[i]]),
  3949. "onclick": U.UF.C.closure(function (obj) {
  3950. //防止拖動圖標即打開了桌面應用
  3951. U.MD.D.click(this, obj);
  3952. }, [_xhlyTeacherDeskIconInfo[i]])
  3953. }, _frag); //
  3954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3957. }
  3958. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3959. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3960. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3961. continue
  3962. }
  3963. _content = $$("div", {
  3964. className: "U_MD_D_KO",
  3965. "onmousedown": U.UF.C.closure(function (obj) {
  3966. //防止拖動圖標即打開了桌面應用
  3967. U.MD.D.click(this, obj);
  3968. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3969. "onclick": U.UF.C.closure(function (obj) {
  3970. //防止拖動圖標即打開了桌面應用
  3971. U.MD.D.click(this, obj);
  3972. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3973. }, _frag); //
  3974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3977. }
  3978. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3979. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3980. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3981. continue
  3982. }
  3983. _content = $$("div", {
  3984. className: "U_MD_D_KO",
  3985. "onmousedown": U.UF.C.closure(function (obj) {
  3986. //防止拖動圖標即打開了桌面應用
  3987. U.MD.D.click(this, obj);
  3988. }, [_x010503TeacherDeskIconInfo[i]]),
  3989. "onclick": U.UF.C.closure(function (obj) {
  3990. //防止拖動圖標即打開了桌面應用
  3991. U.MD.D.click(this, obj);
  3992. }, [_x010503TeacherDeskIconInfo[i]])
  3993. }, _frag); //
  3994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3997. }
  3998. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3999. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4000. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4001. continue
  4002. }
  4003. _content = $$("div", {
  4004. className: "U_MD_D_KO",
  4005. "onmousedown": U.UF.C.closure(function (obj) {
  4006. //防止拖動圖標即打開了桌面應用
  4007. U.MD.D.click(this, obj);
  4008. }, [_x010504TeacherDeskIconInfo[i]]),
  4009. "onclick": U.UF.C.closure(function (obj) {
  4010. //防止拖動圖標即打開了桌面應用
  4011. U.MD.D.click(this, obj);
  4012. }, [_x010504TeacherDeskIconInfo[i]])
  4013. }, _frag); //
  4014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4017. }
  4018. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4019. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4020. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4021. continue
  4022. }
  4023. _content = $$("div", {
  4024. className: "U_MD_D_KO",
  4025. "onmousedown": U.UF.C.closure(function (obj) {
  4026. //防止拖動圖標即打開了桌面應用
  4027. U.MD.D.click(this, obj);
  4028. }, [_x010204TeacherDeskIconInfo[i]]),
  4029. "onclick": U.UF.C.closure(function (obj) {
  4030. //防止拖動圖標即打開了桌面應用
  4031. U.MD.D.click(this, obj);
  4032. }, [_x010204TeacherDeskIconInfo[i]])
  4033. }, _frag); //
  4034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4037. }
  4038. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4039. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4040. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4041. continue
  4042. }
  4043. _content = $$("div", {
  4044. className: "U_MD_D_KO",
  4045. "onmousedown": U.UF.C.closure(function (obj) {
  4046. //防止拖動圖標即打開了桌面應用
  4047. U.MD.D.click(this, obj);
  4048. }, [_trailTeacherDeskIconInfo[i]]),
  4049. "onclick": U.UF.C.closure(function (obj) {
  4050. //防止拖動圖標即打開了桌面應用
  4051. U.MD.D.click(this, obj);
  4052. }, [_trailTeacherDeskIconInfo[i]])
  4053. }, _frag); //
  4054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4057. }
  4058. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4059. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4060. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4061. continue
  4062. }
  4063. _content = $$("div", {
  4064. className: "U_MD_D_KO",
  4065. "onmousedown": U.UF.C.closure(function (obj) {
  4066. //防止拖動圖標即打開了桌面應用
  4067. U.MD.D.click(this, obj);
  4068. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4069. "onclick": U.UF.C.closure(function (obj) {
  4070. //防止拖動圖標即打開了桌面應用
  4071. U.MD.D.click(this, obj);
  4072. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4073. }, _frag); //
  4074. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4075. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4076. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4077. }
  4078. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4079. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4080. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4081. continue
  4082. }
  4083. _content = $$("div", {
  4084. className: "U_MD_D_KO",
  4085. "onmousedown": U.UF.C.closure(function (obj) {
  4086. //防止拖動圖標即打開了桌面應用
  4087. U.MD.D.click(this, obj);
  4088. }, [_x010608TeacherDeskIconInfo[i]]),
  4089. "onclick": U.UF.C.closure(function (obj) {
  4090. //防止拖動圖標即打開了桌面應用
  4091. U.MD.D.click(this, obj);
  4092. }, [_x010608TeacherDeskIconInfo[i]])
  4093. }, _frag); //
  4094. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4095. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4096. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4097. }
  4098. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4099. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4100. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4101. continue
  4102. }
  4103. _content = $$("div", {
  4104. className: "U_MD_D_KO",
  4105. "onmousedown": U.UF.C.closure(function (obj) {
  4106. //防止拖動圖標即打開了桌面應用
  4107. U.MD.D.click(this, obj);
  4108. }, [_x010611TeacherDeskIconInfo[i]]),
  4109. "onclick": U.UF.C.closure(function (obj) {
  4110. //防止拖動圖標即打開了桌面應用
  4111. U.MD.D.click(this, obj);
  4112. }, [_x010611TeacherDeskIconInfo[i]])
  4113. }, _frag); //
  4114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4117. }
  4118. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4119. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4120. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4121. continue
  4122. }
  4123. _content = $$("div", {
  4124. className: "U_MD_D_KO",
  4125. "onmousedown": U.UF.C.closure(function (obj) {
  4126. //防止拖動圖標即打開了桌面應用
  4127. U.MD.D.click(this, obj);
  4128. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4129. "onclick": U.UF.C.closure(function (obj) {
  4130. //防止拖動圖標即打開了桌面應用
  4131. U.MD.D.click(this, obj);
  4132. }, [_tianyuanTeacherDeskIconInfo[i]])
  4133. }, _frag); //
  4134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4137. }
  4138. } else {
  4139. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4140. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4141. continue
  4142. }
  4143. _content = $$("div", {
  4144. className: "U_MD_D_KO",
  4145. "onmousedown": U.UF.C.closure(function (obj) {
  4146. //防止拖動圖標即打開了桌面應用
  4147. U.MD.D.click(this, obj);
  4148. }, [_teacherDesktopIconInfo[i]]),
  4149. "onclick": U.UF.C.closure(function (obj) {
  4150. //防止拖動圖標即打開了桌面應用
  4151. U.MD.D.click(this, obj);
  4152. }, [_teacherDesktopIconInfo[i]])
  4153. }, _frag); //
  4154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4157. }
  4158. }
  4159. } else {
  4160. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4161. _content = $$("div", {
  4162. className: "U_MD_D_KO",
  4163. style: { 'width': '124px', 'height': '145px' },
  4164. "onmousedown": U.UF.C.closure(function (obj) {
  4165. //防止拖動圖標即打開了桌面應用
  4166. U.MD.D.click(this, obj);
  4167. }, [_easyDesktopIconInfo[i]]),
  4168. "onclick": U.UF.C.closure(function (obj) {
  4169. //防止拖動圖標即打開了桌面應用
  4170. U.MD.D.click(this, obj);
  4171. }, [_easyDesktopIconInfo[i]])
  4172. }, _frag); //
  4173. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4176. }
  4177. }
  4178. if (type == 1) {
  4179. //加載好後給圖標定位
  4180. U.MD.D.iconPostion($(_frag).Child());
  4181. } else {
  4182. //加載好後給圖標定位
  4183. U.MD.D.iconPostion2($(_frag).Child());
  4184. }
  4185. //把圖標加載到頁面
  4186. el.appendChild(_frag);
  4187. }
  4188. /**
  4189. * 顯示任務欄
  4190. *
  4191. * @param {element} 桌面元素
  4192. */
  4193. U.MD.D.I.displayTaskbar = function (el) {
  4194. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4195. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4196. //任務欄位置變化
  4197. U.selectEl(el).css({ "bottom": "0px" });
  4198. //桌面位置變話
  4199. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4200. }
  4201. }
  4202. //#region 桌面圖標拖動邏輯
  4203. /**
  4204. * 桌面排列圖標
  4205. *
  4206. * @param {element} 桌面元素
  4207. * @param {object} 上下相距的距離
  4208. * @param {object} 左右相距的距離
  4209. * @return {object} 命名空間
  4210. */
  4211. U.MD.D.iconPostion = function (childs, top, left) {
  4212. var i; //用於循環處理
  4213. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4214. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4215. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4216. for (i = 0; i < childs.length; i++) {
  4217. //如果豎排top超過了範圍處理
  4218. if (top + 95 > US.height - 10) {
  4219. //left超過了頁面範圍處理,則向上重疊打印處理
  4220. if ((left + 180) > US.width) {
  4221. top -= 110;
  4222. left -= 90;
  4223. }
  4224. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4225. else {
  4226. left += 90;
  4227. top = 15;
  4228. };
  4229. }
  4230. //給圖標的位置賦值
  4231. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4232. if (i < childs.length - 1) {
  4233. //頁面圖標每次向下加95
  4234. top += 95;
  4235. }
  4236. }
  4237. //返回最後調用的圖標的位置
  4238. return [top, left];
  4239. }
  4240. /**
  4241. * 桌面排列圖標
  4242. *
  4243. * @param {element} 桌面元素
  4244. * @param {object} 上下相距的距離
  4245. * @param {object} 左右相距的距離
  4246. * @return {object} 命名空間
  4247. */
  4248. U.MD.D.iconPostion2 = function (childs, top, left) {
  4249. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4250. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4251. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4252. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4253. for (i = 0; i < childs.length; i++) {
  4254. //如果豎排top超過了範圍處理
  4255. if (left + 150 > US.width - 10) {
  4256. //left超過了頁面範圍處理,則向上重疊打印處理
  4257. if ((top + 180) > US.Height) {
  4258. top -= 150;
  4259. left -= 150;
  4260. }
  4261. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4262. else {
  4263. top += 150;
  4264. left = ol;
  4265. };
  4266. }
  4267. //給圖標的位置賦值
  4268. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4269. if (i < childs.length - 1) {
  4270. //頁面圖標每次向下加95
  4271. left += 150;
  4272. }
  4273. }
  4274. //返回最後調用的圖標的位置
  4275. return [top, left];
  4276. }
  4277. /**
  4278. * 桌面點擊事件邏輯
  4279. *
  4280. * @param {element} 桌面元素
  4281. * @param {object} 上下相距的距離
  4282. * @param {object} 左右相距的距離
  4283. * @return {object} 命名空間
  4284. */
  4285. U.MD.D.click = function (el, obj) {
  4286. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4287. var _userinfo = US.userInfo;
  4288. U.UF.EV.stopBubble(); //阻止向上冒泡
  4289. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4290. if (_buttonnumber < 2) {
  4291. //如果是click事件的處理
  4292. if (event.type == "click") {
  4293. //如果元素在mousemove事件中沒有移動則出發click事件
  4294. if (!U.MD.D.I.IsDrag) {
  4295. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4296. U.alert("請先登錄您的賬號!");
  4297. setTimeout(() => {
  4298. U.MD.U.L.login();
  4299. }, 2000);
  4300. } else {
  4301. //打開應用處理
  4302. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4303. }
  4304. }
  4305. }
  4306. //如果是mouse事件的處理
  4307. else {
  4308. if (US.Config.type == '1') {
  4309. //拖動處理,添加拖動和拖動結束事件
  4310. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4311. }
  4312. }
  4313. U.MD.D.I.IsDrag = false;
  4314. }
  4315. }
  4316. /**
  4317. * 拖動的處理
  4318. *
  4319. */
  4320. U.MD.D.iconMove = function () {
  4321. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4322. U.MD.D.I.IsDrag = true;
  4323. }
  4324. /**
  4325. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4326. *
  4327. * @param {element} 拖動的元素
  4328. * @return {object} 命名空間
  4329. */
  4330. U.MD.D.iconUp = function (el) {
  4331. var _top = 15,
  4332. _left = 20,
  4333. _margin,
  4334. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4335. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4336. if (_positioninfo["OT"] > 15) {
  4337. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4338. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4339. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4340. }
  4341. if (_positioninfo["OL"] > 20) {
  4342. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4343. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4344. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4345. }
  4346. //while循環判斷麼一個重疊的元素
  4347. do {
  4348. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4349. _top = _positioninfo[0] + 95; //得到定位後的top
  4350. _left = _positioninfo[1]; //得到定位後的left
  4351. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4352. }
  4353. /**
  4354. * 判斷拖動後圖標是否重疊
  4355. *
  4356. * @param {element} 拖動的元素
  4357. * @param {element} 桌面所有的元素
  4358. * @param {array} 拖動元素的位置
  4359. ----------[0] 上 top
  4360. ----------[1] 左 left
  4361. * @return {object} 命名空間
  4362. */
  4363. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4364. //循環所有的圖標
  4365. for (var i = 0; i < childs.length; i++) {
  4366. //判斷有沒有和該圖標誒子重疊的元素
  4367. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4368. return childs[i]; //如果有返回
  4369. }
  4370. }
  4371. }
  4372. //#endregion
  4373. //#endregion
  4374. //#region 桌面應用
  4375. /**
  4376. * 打開應用
  4377. *
  4378. * @param {string} 類型
  4379. -----------------Disk 網盤系統
  4380. -----------------PDisk 學習系統網盤
  4381. -----------------Poto 圖片
  4382. -----------------Video 視頻
  4383. -----------------Music 音樂
  4384. -----------------Word word
  4385. -----------------Excel excel
  4386. -----------------Txt 記事本
  4387. -----------------PB 學習系統
  4388. -----------------Blog 朋友圈系統
  4389. -----------------FTP ftp系統
  4390. -----------------Group 好友群
  4391. -----------------SY 首頁系統
  4392. -----------------Set 個人設置
  4393. -----------------XSet 系統設置
  4394. -----------------App 我們所有的app
  4395. -----------------BC c.1473.cn 平臺
  4396. -----------------CWeb d.1473.cn 變成平臺
  4397. -----------------其他的外聯系統 我們統一用iframe打開
  4398. * @param {array} 類型
  4399. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4400. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4401. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4402. 如果第一個參數為其他,則無第二個參數
  4403. * @returns {array}
  4404. */
  4405. window.addEventListener('message', function (e) { // 監聽 message 事件
  4406. // alert(e.data.type);
  4407. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4408. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4409. //3是展示全部階段 2學生 1老師 4專家
  4410. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4411. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4412. //3是展示全部階段 2學生 1老師 4專家
  4413. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4414. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4415. //3是展示全部階段 2學生 1老師 4專家
  4416. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4417. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4418. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4419. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4420. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4421. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4422. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4423. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4424. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4425. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4426. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4427. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4428. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4429. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4430. //3是展示全部階段 2學生 1老師 4專家
  4431. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4432. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4433. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4434. U.MD.D.I.selectUser();
  4435. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4436. var _formel = document.getElementById("study");
  4437. U.UF.F.windowZooming(_formel);
  4438. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4439. var _formel = document.getElementById("studyDetail");
  4440. U.UF.F.windowZooming(_formel);
  4441. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4442. var _formel = document.getElementById("studyDetail");
  4443. U.UF.F.windowZooming(_formel);
  4444. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4445. var _formel = document.getElementById("studentStudy");
  4446. U.UF.F.windowZooming(_formel);
  4447. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4448. // var _formel = document.getElementById("study");
  4449. //如果最大化了,那麼就把他縮小
  4450. // if (_formel.ismaximize) {
  4451. // return;
  4452. // }
  4453. // U.UF.F.windowZooming(_formel);
  4454. // U.UF.F.topWindow(_formel);
  4455. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4456. // var _formel = document.getElementById("studyDetail");
  4457. //如果最大化了,那麼就把他縮小
  4458. // if (_formel.ismaximize) {
  4459. // return;
  4460. // }
  4461. // U.UF.F.windowZooming(_formel);
  4462. // U.UF.F.topWindow(_formel);
  4463. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4464. // var _formel = document.getElementById("studentStudy");
  4465. // if (_formel.ismaximize) {
  4466. // return;
  4467. // }
  4468. // U.UF.F.windowZooming(_formel);
  4469. // U.UF.F.topWindow(_formel);
  4470. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4471. var _formel = document.getElementById("study");
  4472. // if (_formel.ismaximize) {
  4473. // return;
  4474. // }
  4475. // U.UF.F.windowZooming(_formel);
  4476. U.UF.F.topWindow(_formel);
  4477. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4478. var _formel = document.getElementById("studentIndex");
  4479. U.UF.F.windowZooming(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4481. var _formel = document.getElementById("studyDetailS");
  4482. U.UF.F.windowZooming(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4484. var _formel = document.getElementById("studioIndex");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4487. var _formel = document.getElementById("studyDetailStudio");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4490. var _formel = document.getElementById("studyDetailStudio");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4493. var _formel = document.getElementById("studyDetailNT");
  4494. U.UF.F.windowZooming(_formel);
  4495. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4496. var _formel = document.getElementById("studyDetailS");
  4497. U.UF.F.windowZooming(_formel);
  4498. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4499. var _formel = document.getElementById("studyDetailS");
  4500. U.UF.F.topWindow(_formel);
  4501. } else if (e.data.tools && e.data.tools == "1") {
  4502. // U.MD.D.I.openApplication("whiteboard")
  4503. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4504. } else if (e.data.tools && e.data.tools == "2") {
  4505. U.MD.D.I.openApplication("note")
  4506. } else if (e.data.tools && e.data.tools == "3") {
  4507. // U.MD.D.I.openApplication("mind")
  4508. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4509. } else if (e.data.tools && e.data.tools == "4") {
  4510. U.MD.D.I.openApplication("investigation")
  4511. } else if (e.data.tools && e.data.tools == "6") {
  4512. // U.MD.D.I.openApplication("doc")
  4513. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4514. } else if (e.data.tools && e.data.tools == "7") {
  4515. // U.MD.D.I.openApplication("mindNetwork")
  4516. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4517. } else if (e.data.tools && e.data.tools == "8") {
  4518. U.MD.D.I.openApplication("library")
  4519. } else if (e.data.tools && e.data.tools == "17") {
  4520. U.MD.D.I.openApplication("stuLibrary")
  4521. } else if (e.data.tools && e.data.tools == "18") {
  4522. U.MD.D.I.openApplication("train")
  4523. } else if (e.data.tools && e.data.tools == "21") {
  4524. U.MD.D.I.openApplication("program")
  4525. } else if (e.data.tools && e.data.tools == "22") {
  4526. U.MD.D.I.openApplication("AIprogram2")
  4527. } else if (e.data.tools && e.data.tools == "23") {
  4528. U.MD.D.I.openApplication("Pythonprogram")
  4529. } else if (e.data.tools && e.data.tools == "24") {
  4530. U.MD.D.I.openApplication("AIprogram")
  4531. } else if (e.data.tools && e.data.tools == "25") {
  4532. U.MD.D.I.openApplication("sys")
  4533. } else if (e.data.tools && e.data.tools == "26") {
  4534. // U.MD.D.I.openApplication("courseDesign")
  4535. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4536. } else if (e.data.tools && e.data.tools == "31") {
  4537. U.MD.D.I.openApplication("netWorkPanel")
  4538. } else if (e.data.tools && e.data.tools == "32") {
  4539. U.MD.D.I.openApplication("codeEdit")
  4540. } else if (e.data.tools && e.data.tools == "57") {
  4541. U.MD.D.I.openApplication("CocoPi")
  4542. } else if (e.data.tools && e.data.tools == "63") {
  4543. U.MD.D.I.openApplication("Wood")
  4544. } else if (e.data.tools && e.data.tools == "58") {
  4545. U.MD.D.I.openApplication("car")
  4546. } else if (e.data.tools && e.data.tools == "59") {
  4547. U.MD.D.I.openApplication("lineSearch")
  4548. } else if (e.data.tools && e.data.tools == "60") {
  4549. U.MD.D.I.openApplication("deepLearning")
  4550. } else if (e.data.tools && e.data.tools == "61") {
  4551. U.MD.D.I.openApplication("allHistory")
  4552. } else if (e.data.tools && e.data.tools == "28") {
  4553. U.MD.D.I.openApplication("translation")
  4554. } else if (e.data.tools && e.data.tools == "37") {
  4555. U.MD.D.I.openApplication("mohe")
  4556. } else if (e.data.tools && e.data.tools == "38") {
  4557. U.MD.D.I.openApplication("24game")
  4558. } else if (e.data.tools && e.data.tools == "39") {
  4559. U.MD.D.I.openApplication("GeoGebra")
  4560. } else if (e.data.tools && e.data.tools == "43") {
  4561. U.MD.D.I.openApplication("studentEvaluate")
  4562. } else if (e.data.tools && e.data.tools == "44") {
  4563. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4564. } else if (e.data.tools && e.data.tools == "46") {
  4565. U.MD.D.I.openApplication("project")
  4566. } else if (e.data.tools && e.data.tools == "71") {
  4567. U.MD.D.I.openApplication("aigptCourse")
  4568. } else if (e.data.tools && e.data.tools == "1s") {
  4569. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4570. } else if (e.data.tools && e.data.tools == "3s") {
  4571. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4572. } else if (e.data.tools && e.data.tools == "6s") {
  4573. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4574. } else if (e.data.tools && e.data.tools == "1studio") {
  4575. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "3studio") {
  4577. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "6studio") {
  4579. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "3y") {
  4581. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "1y") {
  4583. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4584. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4585. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4586. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4587. U.MD.D.I.openApplication("AIAnalyse")
  4588. } else if (e.data.tools && e.data.tools == "1teacher") {
  4589. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4590. } else if (e.data.tools && e.data.tools == "3teacher") {
  4591. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4592. } else if (e.data.tools && e.data.tools == "7teacher") {
  4593. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4594. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4595. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4596. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4597. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4598. } else if (e.data.tools && e.data.tools == "1E") {
  4599. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4600. } else if (e.data.tools && e.data.tools == "3E") {
  4601. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4602. } else if (e.data.tools && e.data.tools == "57y") {
  4603. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4604. } else if (e.data.tools && e.data.tools == "57u") {
  4605. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4606. } else if (e.data.tools && e.data.tools == "57teacher") {
  4607. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4608. } else if (e.data.tools && e.data.tools == "64") {
  4609. U.MD.D.I.openApplication("AIChat")
  4610. } else if (e.data.tools && e.data.tools == "66") {
  4611. U.MD.D.I.openApplication("formulaEdi")
  4612. } else if (e.data.tools && e.data.tools == "67") {
  4613. U.MD.D.I.openApplication("molStr")
  4614. } else if (e.data.tools && e.data.tools == "68") {
  4615. U.MD.D.I.openApplication("timeAxis")
  4616. } else if (e.data.tools && e.data.tools == "openCourse") {
  4617. let _data = {
  4618. typea: e.data.typea || '',
  4619. typeb: e.data.typeb || '',
  4620. typed: e.data.typed || '',
  4621. }
  4622. U.MD.D.I.openInApplication("index", _data)
  4623. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4624. let _data = {
  4625. classid: e.data.classid || '',
  4626. }
  4627. U.MD.D.I.openInApplication("dataClass", _data)
  4628. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4629. let _data = {
  4630. cid: e.data.cid || '',
  4631. gid: e.data.gid || '',
  4632. }
  4633. U.MD.D.I.openInApplication("opencCscl", _data)
  4634. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4635. U.MD.D.I.openApplication("dataBoardTest")
  4636. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4637. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4638. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4639. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4640. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4641. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4642. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4643. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4644. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4645. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4646. }else if (e.data.tools && e.data.tools == "loginSz") {
  4647. U.MD.D.I.openInApplication("loginSz")
  4648. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4649. if($('#classroom_observation_board')[0]){
  4650. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4651. }
  4652. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4653. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4654. if($('#classroom_observation_ob_comment')[0]){
  4655. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4656. }
  4657. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4658. }else if (e.data.tools && e.data.tools == "logout"){
  4659. U.MD.U.LO.logoutSystem()
  4660. }else if (e.data.tools && e.data.tools == "getLogin"){
  4661. let _iframe = $('#UI_Login')[0];
  4662. if (_iframe) {
  4663. var userInfo = US.userInfo;
  4664. var type = 2
  4665. if(userInfo && userInfo.userid){
  4666. type = 1
  4667. }
  4668. _contentWindow = _iframe.contentWindow;
  4669. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4670. }
  4671. }
  4672. });
  4673. U.MD.D.I.selectUser = function () {
  4674. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4675. if (res.value[0].length > 0) {
  4676. US.userInfo = res.value[0][0];
  4677. $(".userName")[0].innerHTML = US.userInfo.username;
  4678. }
  4679. }, [], { "type": "GET", "withCredentials": true });
  4680. }
  4681. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4682. var _userinfo = US.userInfo, //登錄用戶信息
  4683. _userid = US.userInfo.userid, //登錄用戶id
  4684. _oid = _userinfo.organizeid,
  4685. _type = US.userInfo.type,
  4686. _org = US.userInfo.org,
  4687. _role = US.userInfo.role,
  4688. _classId = US.userInfo.classid;
  4689. if (_type == 4) {
  4690. tType = 4
  4691. }
  4692. switch (str) {
  4693. case "studyDetailNT": //無終端模式
  4694. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4695. setTimeout(() => {
  4696. U.MD.U.L.login();
  4697. }, 2000);
  4698. } else {
  4699. _formdiv = new U.UF.UI.form(
  4700. "課程詳情",
  4701. $$("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 }), {
  4702. "id": "studyDetailNT",
  4703. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4704. "onresize": function () { }
  4705. }, {
  4706. closecallback: function () { }
  4707. }, { "style": { "height": "36px" } }).form; //創建窗體
  4708. _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); } }
  4709. break;
  4710. }
  4711. case "studyDetail":
  4712. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4713. setTimeout(() => {
  4714. U.MD.U.L.login();
  4715. }, 2000);
  4716. } else {
  4717. _formdiv = new U.UF.UI.form(
  4718. "課程詳情",
  4719. $$("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 }), {
  4720. "id": "studyDetail",
  4721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4722. "onresize": function () { }
  4723. }, {
  4724. closecallback: function () { }
  4725. }, { "style": { "height": "36px" } }).form; //創建窗體
  4726. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4727. break;
  4728. }
  4729. case "studyDetailTrain":
  4730. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4731. setTimeout(() => {
  4732. U.MD.U.L.login();
  4733. }, 2000);
  4734. } else {
  4735. _formdiv = new U.UF.UI.form(
  4736. "培訓詳情",
  4737. $$("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 }), {
  4738. "id": "studyDetailTrain",
  4739. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4740. "onresize": function () { }
  4741. }, {
  4742. closecallback: function () { }
  4743. }, { "style": { "height": "36px" } }).form; //創建窗體
  4744. _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); } }
  4745. break;
  4746. }
  4747. case "studyDetailS":
  4748. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4749. setTimeout(() => {
  4750. U.MD.U.L.login();
  4751. }, 2000);
  4752. } else {
  4753. _formdiv = new U.UF.UI.form(
  4754. "項目詳情",
  4755. $$("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 }), {
  4756. "id": "studyDetailS",
  4757. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4758. "onresize": function () { }
  4759. }, {
  4760. closecallback: function () { }
  4761. }, { "style": { "height": "36px" } }).form; //創建窗體
  4762. _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); } }
  4763. break;
  4764. }
  4765. case "studyDetailStudio":
  4766. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4767. setTimeout(() => {
  4768. U.MD.U.L.login();
  4769. }, 2000);
  4770. } else {
  4771. _formdiv = new U.UF.UI.form(
  4772. "工作詳情",
  4773. $$("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 }), {
  4774. "id": "studyDetailStudio",
  4775. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4776. "onresize": function () { }
  4777. }, {
  4778. closecallback: function () { }
  4779. }, { "style": { "height": "36px" } }).form; //創建窗體
  4780. _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); } }
  4781. break;
  4782. }
  4783. case "studyDetailS5":
  4784. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4785. setTimeout(() => {
  4786. U.MD.U.L.login();
  4787. }, 2000);
  4788. } else {
  4789. _formdiv = new U.UF.UI.form(
  4790. "項目詳情",
  4791. $$("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 }), {
  4792. "id": "studyDetailS",
  4793. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4794. "onresize": function () { }
  4795. }, {
  4796. closecallback: function () { }
  4797. }, { "style": { "height": "36px" } }).form; //創建窗體
  4798. _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); } }
  4799. break;
  4800. }
  4801. case "studyDetailGM":
  4802. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4803. setTimeout(() => {
  4804. U.MD.U.L.login();
  4805. }, 2000);
  4806. } else {
  4807. _formdiv = new U.UF.UI.form(
  4808. "課程詳情",
  4809. $$("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 }), {
  4810. "id": "studyDetail",
  4811. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4812. "onresize": function () { }
  4813. }, {
  4814. closecallback: function () { }
  4815. }, { "style": { "height": "36px" } }).form; //創建窗體
  4816. _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); } }
  4817. break;
  4818. }
  4819. case "hanUrl":
  4820. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4821. setTimeout(() => {
  4822. U.MD.U.L.login();
  4823. }, 2000);
  4824. } else {
  4825. _formdiv = new U.UF.UI.form(
  4826. "漢字宮",
  4827. $$("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" }), {
  4828. "id": "hanUrl",
  4829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //創建窗體
  4834. _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); } }
  4835. break;
  4836. }
  4837. case "index":
  4838. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4839. setTimeout(() => {
  4840. U.MD.U.L.login();
  4841. }, 2000);
  4842. } else {
  4843. _formdiv = new U.UF.UI.form(
  4844. "課程中心",
  4845. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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 }), {
  4846. "id": "study",
  4847. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4848. "onresize": function () { }
  4849. }, {
  4850. closecallback: function () { }
  4851. }, { "style": { "height": "36px" } }).form; //創建窗體
  4852. _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); } }
  4853. break;
  4854. }
  4855. case "dataClass":
  4856. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4857. setTimeout(() => {
  4858. U.MD.U.L.login();
  4859. }, 2000);
  4860. } else {
  4861. _formdiv = new U.UF.UI.form(
  4862. "數據報告",
  4863. $$("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 }), {
  4864. "id": "dataClass",
  4865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4866. "onresize": function () { }
  4867. }, {
  4868. closecallback: function () { }
  4869. }, { "style": { "height": "36px" } }).form; //創建窗體
  4870. _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); } }
  4871. break;
  4872. }
  4873. case "opencCscl":
  4874. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4875. setTimeout(() => {
  4876. U.MD.U.L.login();
  4877. }, 2000);
  4878. } else {
  4879. _formdiv = new U.UF.UI.form(
  4880. "協同建構",
  4881. $$("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 }), {
  4882. "id": "futureClass",
  4883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4884. "onresize": function () { }
  4885. }, {
  4886. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4887. }, { "style": { "height": "36px" } }).form; //創建窗體
  4888. _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); } }
  4889. break;
  4890. }
  4891. case "openCourseUpdate":
  4892. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4893. setTimeout(() => {
  4894. U.MD.U.L.login();
  4895. }, 2000);
  4896. } else {
  4897. _formdiv = new U.UF.UI.form(
  4898. "課程管理",
  4899. $$("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 }), {
  4900. "id": "openCourseUpdate",
  4901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4902. "onresize": function () { }
  4903. }, {
  4904. closecallback: function () { }
  4905. }, { "style": { "height": "36px" } }).form; //創建窗體
  4906. break;
  4907. }
  4908. case "openNewCourseUpdate":
  4909. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4910. setTimeout(() => {
  4911. U.MD.U.L.login();
  4912. }, 2000);
  4913. } else {
  4914. _formdiv = new U.UF.UI.form(
  4915. "課程管理",
  4916. $$("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 }), {
  4917. "id": "openCourseUpdate",
  4918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //創建窗體
  4923. break;
  4924. }
  4925. case "openCourseEUpdate":
  4926. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4927. setTimeout(() => {
  4928. U.MD.U.L.login();
  4929. }, 2000);
  4930. } else {
  4931. _formdiv = new U.UF.UI.form(
  4932. "課程管理",
  4933. $$("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 }), {
  4934. "id": "openCourseUpdate",
  4935. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4936. "onresize": function () { }
  4937. }, {
  4938. closecallback: function () { }
  4939. }, { "style": { "height": "36px" } }).form; //創建窗體
  4940. break;
  4941. }
  4942. case "openCourseAiUpdate":
  4943. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4944. setTimeout(() => {
  4945. U.MD.U.L.login();
  4946. }, 2000);
  4947. } else {
  4948. _formdiv = new U.UF.UI.form(
  4949. "課程管理",
  4950. $$("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 }), {
  4951. "id": "openCourseUpdate",
  4952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //創建窗體
  4957. break;
  4958. }
  4959. case "openCourseNewUpdate":
  4960. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4961. setTimeout(() => {
  4962. U.MD.U.L.login();
  4963. }, 2000);
  4964. } else {
  4965. _formdiv = new U.UF.UI.form(
  4966. "課程管理",
  4967. $$("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 }), {
  4968. "id": "openCourseUpdate",
  4969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4970. "onresize": function () { }
  4971. }, {
  4972. closecallback: function () { }
  4973. }, { "style": { "height": "36px" } }).form; //創建窗體
  4974. break;
  4975. }
  4976. case "inviteLoginSz":
  4977. _formdiv = new U.UF.UI.form(
  4978. "隨機碼登錄",
  4979. $$("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 }), {
  4980. "id": "loginSz",
  4981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4982. "onresize": function () { }
  4983. }, {
  4984. closecallback: function () { }
  4985. }, { "style": { "height": "36px" } }).form; //創建窗體
  4986. break;
  4987. case "loginSz":
  4988. _formdiv = new U.UF.UI.form(
  4989. "教師登錄",
  4990. $$("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" }), {
  4991. "id": "loginSz",
  4992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //創建窗體
  4997. break;
  4998. case "teacher":
  4999. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5000. setTimeout(() => {
  5001. U.MD.U.L.login();
  5002. }, 2000);
  5003. } else {
  5004. _formdiv = new U.UF.UI.form(
  5005. "教師管理",
  5006. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5007. "id": "teacher",
  5008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //創建窗體
  5013. break;
  5014. }
  5015. case "dataBoardSZArea":
  5016. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5017. setTimeout(() => {
  5018. U.MD.U.L.login();
  5019. }, 2000);
  5020. } else {
  5021. _formdiv = new U.UF.UI.form(
  5022. "綜合數據看板",
  5023. $$("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 }), {
  5024. "id": "dataBoardSZArea",
  5025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5026. "onresize": function () { }
  5027. }, {
  5028. closecallback: function () { }
  5029. }, { "style": { "height": "36px" } }).form; //創建窗體
  5030. break;
  5031. }
  5032. case "dataBoardSZCity":
  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-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5041. "id": "dataBoardSZCity",
  5042. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //創建窗體
  5047. break;
  5048. }
  5049. case "classroom_observation_board":
  5050. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5051. setTimeout(() => {
  5052. U.MD.U.L.login();
  5053. }, 2000);
  5054. } else {
  5055. _formdiv = new U.UF.UI.form(
  5056. "課堂觀察",
  5057. $$("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 }), {
  5058. "id": "classroom_observation_board",
  5059. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { }
  5063. }, { "style": { "height": "36px" } }).form; //創建窗體
  5064. break;
  5065. }
  5066. case "classroom_observation_ob_comment":
  5067. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5068. setTimeout(() => {
  5069. U.MD.U.L.login();
  5070. }, 2000);
  5071. } else {
  5072. _formdiv = new U.UF.UI.form(
  5073. "課堂審核",
  5074. $$("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 }), {
  5075. "id": "classroom_observation_ob_comment",
  5076. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //創建窗體
  5081. break;
  5082. }
  5083. }
  5084. }
  5085. U.MD.D.I.openApplication = function (str, obj, info) {
  5086. obj = obj || {};
  5087. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5088. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5089. _userinfo = US.userInfo, //登錄用戶信息
  5090. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5091. _oid = obj.organizeid || _userinfo.organizeid,
  5092. _type = US.userInfo.type,
  5093. _org = US.userInfo.org,
  5094. _role = US.userInfo.role,
  5095. _classId = US.userInfo.classid,
  5096. _TscreenType = 1
  5097. _screenType = 2,
  5098. _SscreenType = 3;
  5099. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5100. return;
  5101. }
  5102. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5103. switch (str) {
  5104. case "studnetProject": //好友打開
  5105. _formdiv = new U.UF.UI.form(
  5106. "我的項目",
  5107. $$("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 }), {
  5108. "id": "studnetProject",
  5109. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5110. "onresize": function () { }
  5111. }, {
  5112. closecallback: function () { }
  5113. }, { "style": { "height": "36px" } }).form; //創建窗體
  5114. _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); } }
  5115. break;
  5116. case "studentEvaluate": //好友打開
  5117. _formdiv = new U.UF.UI.form(
  5118. "我的評價",
  5119. $$("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 }), {
  5120. "id": "studentEvaluate",
  5121. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { }
  5125. }, { "style": { "height": "36px" } }).form; //創建窗體
  5126. _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); } }
  5127. break;
  5128. case "my":
  5129. _formdiv = new U.UF.UI.form(
  5130. "我的資料",
  5131. $$("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 }), {
  5132. "id": "my",
  5133. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5134. "onresize": function () { }
  5135. }, {
  5136. closecallback: function () { }
  5137. }, { "style": { "height": "36px" } }).form; //創建窗體
  5138. _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); } }
  5139. break;
  5140. case "program":
  5141. _formdiv = new U.UF.UI.form(
  5142. "編程平臺",
  5143. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5144. "id": "program",
  5145. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //創建窗體
  5150. _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); } }
  5151. break;
  5152. case "library":
  5153. _formdiv = new U.UF.UI.form(
  5154. "素材庫",
  5155. $$("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 }), {
  5156. "id": "library",
  5157. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5158. "onresize": function () { }
  5159. }, {
  5160. closecallback: function () { }
  5161. }, { "style": { "height": "36px" } }).form; //創建窗體
  5162. _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); } }
  5163. break;
  5164. case "whiteboard":
  5165. _formdiv = new U.UF.UI.form(
  5166. "電子白板",
  5167. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5168. "id": "whiteboard",
  5169. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5170. "onresize": function () { }
  5171. }, {
  5172. closecallback: function () { }
  5173. }, { "style": { "height": "36px" } }).form; //創建窗體
  5174. _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); } }
  5175. break;
  5176. case "investigation":
  5177. _formdiv = new U.UF.UI.form(
  5178. "問卷調查",
  5179. $$("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 }), {
  5180. "id": "investigation",
  5181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5182. "onresize": function () { }
  5183. }, {
  5184. closecallback: function () { }
  5185. }, { "style": { "height": "36px" } }).form; //創建窗體
  5186. _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); } }
  5187. break;
  5188. case "note":
  5189. _formdiv = new U.UF.UI.form(
  5190. "便簽分類",
  5191. $$("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 }), {
  5192. "id": "note",
  5193. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5194. "onresize": function () { }
  5195. }, {
  5196. closecallback: function () { }
  5197. }, { "style": { "height": "36px" } }).form; //創建窗體
  5198. _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); } }
  5199. break;
  5200. // case "score":
  5201. // _formdiv = new U.UF.UI.form(
  5202. // "量規評分",
  5203. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5204. // "id": "score",
  5205. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5206. // "onresize": function() {}
  5207. // }, {
  5208. // closecallback: function() {}
  5209. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5210. // _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); } }
  5211. // break;
  5212. case "mind":
  5213. _formdiv = new U.UF.UI.form(
  5214. "思維導圖",
  5215. $$("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"
  5216. "id": "mind",
  5217. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5218. "onresize": function () { }
  5219. }, {
  5220. closecallback: function () { }
  5221. }, { "style": { "height": "36px" } }).form; //創建窗體
  5222. _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); } }
  5223. break;
  5224. case "doc":
  5225. // U.MD.D.I.isRoom();
  5226. _formdiv = new U.UF.UI.form(
  5227. "協同文檔",
  5228. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5229. "id": "doc",
  5230. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5231. "onresize": function () { }
  5232. }, {
  5233. closecallback: function () { }
  5234. }, { "style": { "height": "36px" } }).form; //創建窗體
  5235. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5236. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5237. // })
  5238. _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); } }
  5239. break;
  5240. case "studentStudy":
  5241. _formdiv = new U.UF.UI.form(
  5242. "課程中心",
  5243. $$("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
  5244. "id": "studentStudy",
  5245. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //創建窗體
  5250. _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); } }
  5251. break;
  5252. case "train": //好友打開
  5253. _formdiv = new U.UF.UI.form(
  5254. "訓練平臺",
  5255. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5256. "id": "train",
  5257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //創建窗體
  5262. _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); } }
  5263. break;
  5264. case "mindNetwork": //好友打開
  5265. _formdiv = new U.UF.UI.form(
  5266. "思維網格",
  5267. $$("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 }), {
  5268. "id": "mindNetwork",
  5269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //創建窗體
  5274. _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); } }
  5275. break;
  5276. case "studentClassRoom": //好友打開
  5277. _formdiv = new U.UF.UI.form(
  5278. "實時課堂",
  5279. $$("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 }), {
  5280. "id": "studentClassRoom",
  5281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //創建窗體
  5286. _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); } }
  5287. setTimeout(() => {
  5288. U.UF.F.windowZooming(_formdiv)
  5289. }, 0);
  5290. break;
  5291. }
  5292. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5293. switch (str) {
  5294. case "studnetProject": //好友打開
  5295. _formdiv = new U.UF.UI.form(
  5296. "我的項目",
  5297. $$("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 }), {
  5298. "id": "studnetProject",
  5299. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5300. "onresize": function () { }
  5301. }, {
  5302. closecallback: function () { }
  5303. }, { "style": { "height": "36px" } }).form; //創建窗體
  5304. _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); } }
  5305. break;
  5306. case "studentEvaluate": //好友打開
  5307. _formdiv = new U.UF.UI.form(
  5308. "我的評價",
  5309. $$("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 }), {
  5310. "id": "studentEvaluate",
  5311. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5312. "onresize": function () { }
  5313. }, {
  5314. closecallback: function () { }
  5315. }, { "style": { "height": "36px" } }).form; //創建窗體
  5316. _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); } }
  5317. break;
  5318. case "my":
  5319. _formdiv = new U.UF.UI.form(
  5320. "我的資料",
  5321. $$("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 }), {
  5322. "id": "my",
  5323. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5324. "onresize": function () { }
  5325. }, {
  5326. closecallback: function () { }
  5327. }, { "style": { "height": "36px" } }).form; //創建窗體
  5328. _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); } }
  5329. break;
  5330. case "program":
  5331. _formdiv = new U.UF.UI.form(
  5332. "編程平臺",
  5333. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5334. "id": "program",
  5335. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //創建窗體
  5340. _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); } }
  5341. break;
  5342. case "library":
  5343. _formdiv = new U.UF.UI.form(
  5344. "素材庫",
  5345. $$("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 }), {
  5346. "id": "library",
  5347. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5348. "onresize": function () { }
  5349. }, {
  5350. closecallback: function () { }
  5351. }, { "style": { "height": "36px" } }).form; //創建窗體
  5352. _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); } }
  5353. break;
  5354. case "whiteboard":
  5355. _formdiv = new U.UF.UI.form(
  5356. "電子白板",
  5357. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5358. "id": "whiteboard",
  5359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5360. "onresize": function () { }
  5361. }, {
  5362. closecallback: function () { }
  5363. }, { "style": { "height": "36px" } }).form; //創建窗體
  5364. _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); } }
  5365. break;
  5366. case "investigation":
  5367. _formdiv = new U.UF.UI.form(
  5368. "問卷調查",
  5369. $$("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 }), {
  5370. "id": "investigation",
  5371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, { "style": { "height": "36px" } }).form; //創建窗體
  5376. _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); } }
  5377. break;
  5378. case "note":
  5379. _formdiv = new U.UF.UI.form(
  5380. "便簽分類",
  5381. $$("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 }), {
  5382. "id": "note",
  5383. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5384. "onresize": function () { }
  5385. }, {
  5386. closecallback: function () { }
  5387. }, { "style": { "height": "36px" } }).form; //創建窗體
  5388. _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); } }
  5389. break;
  5390. // case "score":
  5391. // _formdiv = new U.UF.UI.form(
  5392. // "量規評分",
  5393. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5394. // "id": "score",
  5395. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5396. // "onresize": function() {}
  5397. // }, {
  5398. // closecallback: function() {}
  5399. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5400. // _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); } }
  5401. // break;
  5402. case "mind":
  5403. _formdiv = new U.UF.UI.form(
  5404. "思維導圖",
  5405. $$("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"
  5406. "id": "mind",
  5407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5408. "onresize": function () { }
  5409. }, {
  5410. closecallback: function () { }
  5411. }, { "style": { "height": "36px" } }).form; //創建窗體
  5412. _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); } }
  5413. break;
  5414. case "doc":
  5415. // U.MD.D.I.isRoom();
  5416. _formdiv = new U.UF.UI.form(
  5417. "協同文檔",
  5418. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5419. "id": "doc",
  5420. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5421. "onresize": function () { }
  5422. }, {
  5423. closecallback: function () { }
  5424. }, { "style": { "height": "36px" } }).form; //創建窗體
  5425. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5426. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5427. })
  5428. _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); } }
  5429. break;
  5430. case "train": //好友打開
  5431. _formdiv = new U.UF.UI.form(
  5432. "訓練平臺",
  5433. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5434. "id": "train",
  5435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //創建窗體
  5440. _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); } }
  5441. break;
  5442. case "studentStudy":
  5443. _formdiv = new U.UF.UI.form(
  5444. "課程中心",
  5445. $$("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
  5446. "id": "studentStudy",
  5447. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //創建窗體
  5452. _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); } }
  5453. break;
  5454. case "mindNetwork": //好友打開
  5455. _formdiv = new U.UF.UI.form(
  5456. "思維網格",
  5457. $$("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 }), {
  5458. "id": "mindNetwork",
  5459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //創建窗體
  5464. _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); } }
  5465. break;
  5466. case "studentClassRoom": //好友打開
  5467. _formdiv = new U.UF.UI.form(
  5468. "實時課堂",
  5469. $$("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 }), {
  5470. "id": "studentClassRoom",
  5471. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5472. "onresize": function () { }
  5473. }, {
  5474. closecallback: function () { }
  5475. }, { "style": { "height": "36px" } }).form; //創建窗體
  5476. _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); } }
  5477. setTimeout(() => {
  5478. U.UF.F.windowZooming(_formdiv)
  5479. }, 0);
  5480. break;
  5481. }
  5482. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5483. //選擇應用處理
  5484. switch (str) {
  5485. case "project": //好友打開
  5486. _formdiv = new U.UF.UI.form(
  5487. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5488. $$("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 }), {
  5489. "id": "project",
  5490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5491. "onresize": function () { }
  5492. }, {
  5493. closecallback: function () { }
  5494. }, { "style": { "height": "36px" } }).form; //創建窗體
  5495. _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); } }
  5496. break;
  5497. case "student":
  5498. _formdiv = new U.UF.UI.form(
  5499. "學生管理",
  5500. $$("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 }), {
  5501. "id": "student",
  5502. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5503. "onresize": function () { }
  5504. }, {
  5505. closecallback: function () { }
  5506. }, { "style": { "height": "36px" } }).form; //創建窗體
  5507. _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); } }
  5508. break;
  5509. case "evaluate":
  5510. _formdiv = new U.UF.UI.form(
  5511. "學生評價",
  5512. $$("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 }), {
  5513. "id": "evaluate",
  5514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5515. "onresize": function () { }
  5516. }, {
  5517. closecallback: function () { }
  5518. }, { "style": { "height": "36px" } }).form; //創建窗體
  5519. _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); } }
  5520. break;
  5521. case "sys":
  5522. _formdiv = new U.UF.UI.form(
  5523. "目標管理",
  5524. $$("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 }), {
  5525. "id": "sys",
  5526. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5527. "onresize": function () { }
  5528. }, {
  5529. closecallback: function () { }
  5530. }, { "style": { "height": "36px" } }).form; //創建窗體
  5531. _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); } }
  5532. break;
  5533. case "courseDesign":
  5534. _formdiv = new U.UF.UI.form(
  5535. "項目設計",
  5536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5537. "id": "courseDesign",
  5538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //創建窗體
  5543. _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); } }
  5544. break;
  5545. case "program":
  5546. _formdiv = new U.UF.UI.form(
  5547. "編程平臺",
  5548. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5549. "id": "program",
  5550. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //創建窗體
  5555. _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); } }
  5556. break;
  5557. case "class":
  5558. _formdiv = new U.UF.UI.form(
  5559. "班級管理",
  5560. $$("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 }), {
  5561. "id": "class",
  5562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. "onresize": function () { }
  5564. }, {
  5565. closecallback: function () { }
  5566. }, { "style": { "height": "36px" } }).form; //創建窗體
  5567. _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); } }
  5568. break;
  5569. case "Grade":
  5570. _formdiv = new U.UF.UI.form(
  5571. "年級管理",
  5572. $$("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 }), {
  5573. "id": "Grade",
  5574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5575. "onresize": function () { }
  5576. }, {
  5577. closecallback: function () { }
  5578. }, { "style": { "height": "36px" } }).form; //創建窗體
  5579. _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); } }
  5580. break;
  5581. case "teacherOffice":
  5582. _formdiv = new U.UF.UI.form(
  5583. "教研室",
  5584. $$("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 }), {
  5585. "id": "teacherOffice",
  5586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5587. "onresize": function () { }
  5588. }, {
  5589. closecallback: function () { }
  5590. }, { "style": { "height": "36px" } }).form; //創建窗體
  5591. _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); } }
  5592. break;
  5593. case "my":
  5594. _formdiv = new U.UF.UI.form(
  5595. "我的資料",
  5596. $$("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 }), {
  5597. "id": "my",
  5598. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5599. "onresize": function () { }
  5600. }, {
  5601. closecallback: function () { }
  5602. }, { "style": { "height": "36px" } }).form; //創建窗體
  5603. _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); } }
  5604. break;
  5605. case "notice":
  5606. _formdiv = new U.UF.UI.form(
  5607. "通知公告",
  5608. $$("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 }), {
  5609. "id": "notice",
  5610. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5611. "onresize": function () { }
  5612. }, {
  5613. closecallback: function () { }
  5614. }, { "style": { "height": "36px" } }).form; //創建窗體
  5615. _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); } }
  5616. break;
  5617. case "library":
  5618. _formdiv = new U.UF.UI.form(
  5619. "素材庫",
  5620. $$("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 }), {
  5621. "id": "library",
  5622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //創建窗體
  5627. _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); } }
  5628. break;
  5629. case "whiteboard":
  5630. _formdiv = new U.UF.UI.form(
  5631. "電子白板",
  5632. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5633. "id": "whiteboard",
  5634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //創建窗體
  5639. _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); } }
  5640. break;
  5641. case "investigation":
  5642. _formdiv = new U.UF.UI.form(
  5643. "問卷調查",
  5644. $$("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 }), {
  5645. "id": "investigation",
  5646. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //創建窗體
  5651. _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); } }
  5652. break;
  5653. case "note":
  5654. _formdiv = new U.UF.UI.form(
  5655. "便簽分類",
  5656. $$("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 }), {
  5657. "id": "note",
  5658. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //創建窗體
  5663. _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); } }
  5664. break;
  5665. // case "score":
  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 + "" }), {
  5669. // "id": "score",
  5670. // "style": { "width": "90%", "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/score.png)" }, "name": "量規評分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5676. // break;
  5677. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5681. "id": "mind",
  5682. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5688. break;
  5689. case "doc":
  5690. // U.MD.D.I.isRoom();
  5691. _formdiv = new U.UF.UI.form(
  5692. "協同文檔",
  5693. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5694. "id": "doc",
  5695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //創建窗體
  5700. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5701. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5702. })
  5703. _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); } }
  5704. break;
  5705. case "study":
  5706. _formdiv = new U.UF.UI.form(
  5707. "課程中心",
  5708. $$("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
  5709. "id": "study",
  5710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5711. "onresize": function () { }
  5712. }, {
  5713. closecallback: function () { }
  5714. }, { "style": { "height": "36px" } }).form; //創建窗體
  5715. _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); } }
  5716. break;
  5717. case "mindNetwork": //好友打開
  5718. _formdiv = new U.UF.UI.form(
  5719. "思維網格",
  5720. $$("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 }), {
  5721. "id": "mindNetwork",
  5722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5723. "onresize": function () { }
  5724. }, {
  5725. closecallback: function () { }
  5726. }, { "style": { "height": "36px" } }).form; //創建窗體
  5727. _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); } }
  5728. break;
  5729. case "train": //好友打開
  5730. _formdiv = new U.UF.UI.form(
  5731. "訓練平臺",
  5732. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5733. "id": "mindNetwork",
  5734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //創建窗體
  5739. _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); } }
  5740. break;
  5741. case "teacherClassRoom": //好友打開
  5742. _formdiv = new U.UF.UI.form(
  5743. "實時課堂",
  5744. $$("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 }), {
  5745. "id": "teacherClassRoom",
  5746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //創建窗體
  5751. _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); } }
  5752. setTimeout(() => {
  5753. U.UF.F.windowZooming(_formdiv)
  5754. }, 0);
  5755. break;
  5756. }
  5757. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5758. switch (str) {
  5759. case "project": //好友打開
  5760. _formdiv = new U.UF.UI.form(
  5761. "課程管理",
  5762. $$("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 }), {
  5763. "id": "project",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //創建窗體
  5769. _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); } }
  5770. break;
  5771. case "evaluate":
  5772. _formdiv = new U.UF.UI.form(
  5773. "學生評價",
  5774. $$("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 }), {
  5775. "id": "evaluate",
  5776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5777. "onresize": function () { }
  5778. }, {
  5779. closecallback: function () { }
  5780. }, { "style": { "height": "36px" } }).form; //創建窗體
  5781. _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); } }
  5782. break;
  5783. case "notice":
  5784. _formdiv = new U.UF.UI.form(
  5785. "通知公告",
  5786. $$("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 }), {
  5787. "id": "notice",
  5788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //創建窗體
  5793. _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); } }
  5794. break;
  5795. case "stuLibrary":
  5796. _formdiv = new U.UF.UI.form(
  5797. "學習資料",
  5798. $$("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 }), {
  5799. "id": "stuLibrary",
  5800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //創建窗體
  5805. _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); } }
  5806. break;
  5807. case "program":
  5808. _formdiv = new U.UF.UI.form(
  5809. "編程平臺",
  5810. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5811. "id": "program",
  5812. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5813. "onresize": function () { }
  5814. }, {
  5815. closecallback: function () { }
  5816. }, { "style": { "height": "36px" } }).form; //創建窗體
  5817. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5818. break;
  5819. case "whiteboard":
  5820. _formdiv = new U.UF.UI.form(
  5821. "電子白板",
  5822. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5823. "id": "whiteboard",
  5824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //創建窗體
  5829. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "電子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5830. break;
  5831. case "investigation":
  5832. _formdiv = new U.UF.UI.form(
  5833. "問卷調查",
  5834. $$("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 }), {
  5835. "id": "investigation",
  5836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //創建窗體
  5841. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5842. break;
  5843. case "mind":
  5844. _formdiv = new U.UF.UI.form(
  5845. "思維導圖",
  5846. $$("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"
  5847. "id": "mind",
  5848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5849. "onresize": function () { }
  5850. }, {
  5851. closecallback: function () { }
  5852. }, { "style": { "height": "36px" } }).form; //創建窗體
  5853. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5854. break;
  5855. case "doc":
  5856. // U.MD.D.I.isRoom();
  5857. _formdiv = new U.UF.UI.form(
  5858. "協同文檔",
  5859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5860. "id": "doc",
  5861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //創建窗體
  5866. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5867. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5868. })
  5869. _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); } }
  5870. break;
  5871. case "study":
  5872. _formdiv = new U.UF.UI.form(
  5873. "課程中心",
  5874. $$("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
  5875. "id": "study",
  5876. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //創建窗體
  5881. _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); } }
  5882. break;
  5883. case "mindNetwork": //好友打開
  5884. _formdiv = new U.UF.UI.form(
  5885. "思維網格",
  5886. $$("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 }), {
  5887. "id": "mindNetwork",
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //創建窗體
  5893. _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); } }
  5894. break;
  5895. case "train": //好友打開
  5896. _formdiv = new U.UF.UI.form(
  5897. "訓練平臺",
  5898. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5899. "id": "train",
  5900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5901. "onresize": function () { }
  5902. }, {
  5903. closecallback: function () { }
  5904. }, { "style": { "height": "36px" } }).form; //創建窗體
  5905. _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); } }
  5906. break;
  5907. case "sys":
  5908. _formdiv = new U.UF.UI.form(
  5909. "目標管理",
  5910. $$("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 }), {
  5911. "id": "sys",
  5912. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //創建窗體
  5917. _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); } }
  5918. break;
  5919. case "courseDesign":
  5920. _formdiv = new U.UF.UI.form(
  5921. "項目設計",
  5922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5923. "id": "courseDesign",
  5924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //創建窗體
  5929. _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); } }
  5930. break;
  5931. }
  5932. } else if (!_type) {
  5933. switch (str) {
  5934. case "my":
  5935. _formdiv = new U.UF.UI.form(
  5936. "我的資料",
  5937. $$("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 }), {
  5938. "id": "my",
  5939. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //創建窗體
  5944. _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); } }
  5945. break;
  5946. }
  5947. }
  5948. switch (str) {
  5949. // AIprogram2 AI體驗 aihub.cocorobo.cn
  5950. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  5951. // AIprogram AI編程 ai-blockly.cocorobo.cn
  5952. case "formulaEdi": //公式編輯
  5953. _formdiv = new U.UF.UI.form(
  5954. "公式編輯",
  5955. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5956. "id": "formulaEdi",
  5957. "style": { "width": "70%", "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/formulaEdi.png)" }, "name": "公式編輯", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5963. break;
  5964. case "molStr": //分子結構
  5965. _formdiv = new U.UF.UI.form(
  5966. "分子結構",
  5967. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5968. "id": "molStr",
  5969. "style": { "width": "70%", "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/molStr.png)" }, "name": "分子結構", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5975. break;
  5976. case "timeAxis": //時間軸
  5977. _formdiv = new U.UF.UI.form(
  5978. "時間軸",
  5979. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5980. "id": "timeAxis",
  5981. "style": { "width": "70%", "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/timeAxis.png)" }, "name": "時間軸", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5987. break;
  5988. case "AIprogram2": //AI體驗
  5989. _formdiv = new U.UF.UI.form(
  5990. "AI體驗",
  5991. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5992. "id": "AIprogram2",
  5993. "style": { "width": "70%", "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/AIprogram2.png)" }, "name": "AI體驗", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5999. break;
  6000. case "Pythonprogram": //python編程
  6001. _formdiv = new U.UF.UI.form(
  6002. "Python編程",
  6003. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6004. "id": "Pythonprogram",
  6005. "style": { "width": "70%", "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/Pythonprogram.png)" }, "name": "Python編程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6011. break;
  6012. case "AIprogram": //ai編程
  6013. _formdiv = new U.UF.UI.form(
  6014. "AI編程平臺",
  6015. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6016. "id": "AIprogram",
  6017. "style": { "width": "70%", "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/AIprogram.png)" }, "name": "AI編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6023. break;
  6024. case "CocoPi": //CocoPi
  6025. _formdiv = new U.UF.UI.form(
  6026. "CocoPi",
  6027. $$("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" }), {
  6028. "id": "CocoPi",
  6029. "style": { "width": "70%", "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/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6035. break;
  6036. case "Wood": //Wood
  6037. _formdiv = new U.UF.UI.form(
  6038. "海龜編程",
  6039. $$("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/" }), {
  6040. "id": "Wood",
  6041. "style": { "width": "70%", "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/Wood.png)" }, "name": "海龜編程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6047. break;
  6048. case "car": //模擬駕駛
  6049. _formdiv = new U.UF.UI.form(
  6050. "模擬駕駛",
  6051. $$("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/" }), {
  6052. "id": "car",
  6053. "style": { "width": "70%", "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/car.png)" }, "name": "模擬駕駛", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6059. break;
  6060. case "lineSearch": //路徑搜索
  6061. _formdiv = new U.UF.UI.form(
  6062. "路徑搜索",
  6063. $$("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/" }), {
  6064. "id": "lineSearch",
  6065. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6066. "onresize": function () { }
  6067. }, {
  6068. closecallback: function () { }
  6069. }, { "style": { "height": "36px" } }).form; //創建窗體
  6070. _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); } }
  6071. break;
  6072. case "deepLearning": //深度學習
  6073. _formdiv = new U.UF.UI.form(
  6074. "深度學習",
  6075. $$("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/#" }), {
  6076. "id": "deepLearning",
  6077. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, { "style": { "height": "36px" } }).form; //創建窗體
  6082. _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); } }
  6083. break;
  6084. case "allHistory": //深度學習
  6085. _formdiv = new U.UF.UI.form(
  6086. "全歷史",
  6087. $$("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/" }), {
  6088. "id": "allHistory",
  6089. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //創建窗體
  6094. _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); } }
  6095. break;
  6096. case "chatPDF": //ai編程
  6097. _formdiv = new U.UF.UI.form(
  6098. "chatPDF",
  6099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6100. "id": "chatPDF",
  6101. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6102. "onresize": function () { }
  6103. }, {
  6104. closecallback: function () { }
  6105. }, { "style": { "height": "36px" } }).form; //創建窗體
  6106. _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); } }
  6107. break;
  6108. case "resources": //國家教育
  6109. _formdiv = new U.UF.UI.form(
  6110. "國家教育",
  6111. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6112. "id": "resources",
  6113. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //創建窗體
  6118. _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); } }
  6119. break;
  6120. case "codeEdit": //源碼編輯
  6121. _formdiv = new U.UF.UI.form(
  6122. "源碼編輯",
  6123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6124. "id": "codeEdit",
  6125. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, { "style": { "height": "36px" } }).form; //創建窗體
  6130. _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); } }
  6131. break; //
  6132. case "MindMap": //MindMap
  6133. _formdiv = new U.UF.UI.form(
  6134. "MindMap",
  6135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6136. "id": "MindMap",
  6137. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6138. "onresize": function () { }
  6139. }, {
  6140. closecallback: function () { }
  6141. }, { "style": { "height": "36px" } }).form; //創建窗體
  6142. _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); } }
  6143. break;
  6144. case "netWorkPanel": //netWorkPanel
  6145. _formdiv = new U.UF.UI.form(
  6146. "netWorkPanel",
  6147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6148. "id": "netWorkPanel",
  6149. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6150. "onresize": function () { }
  6151. }, {
  6152. closecallback: function () { }
  6153. }, { "style": { "height": "36px" } }).form; //創建窗體
  6154. _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); } }
  6155. break;
  6156. case "GeoGebra": //GeoGebra
  6157. _formdiv = new U.UF.UI.form(
  6158. "GeoGebra",
  6159. $$("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" }), {
  6160. "id": "GeoGebra",
  6161. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6162. "onresize": function () { }
  6163. }, {
  6164. closecallback: function () { }
  6165. }, { "style": { "height": "36px" } }).form; //創建窗體
  6166. _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); } }
  6167. break;
  6168. case "translation": //翻譯
  6169. _formdiv = new U.UF.UI.form(
  6170. "翻譯",
  6171. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6172. "id": "translation",
  6173. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //創建窗體
  6178. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻譯", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6179. break;
  6180. case "mohe": //魔盒
  6181. _formdiv = new U.UF.UI.form(
  6182. "魔盒識字",
  6183. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6184. "id": "mohe",
  6185. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6186. "onresize": function () { }
  6187. }, {
  6188. closecallback: function () { }
  6189. }, { "style": { "height": "36px" } }).form; //創建窗體
  6190. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒識字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6191. break;
  6192. case "24game": //24點
  6193. _formdiv = new U.UF.UI.form(
  6194. "24點",
  6195. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6196. "id": "24game",
  6197. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6198. "onresize": function () { }
  6199. }, {
  6200. closecallback: function () { }
  6201. }, { "style": { "height": "36px" } }).form; //創建窗體
  6202. _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); } }
  6203. break;
  6204. case "case":
  6205. _formdiv = new U.UF.UI.form(
  6206. "課程進展",
  6207. $$("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 }), {
  6208. "id": "case",
  6209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6210. "onresize": function () { }
  6211. }, {
  6212. closecallback: function () { }
  6213. }, { "style": { "height": "36px" } }).form; //創建窗體
  6214. _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); } }
  6215. break;
  6216. case "snf":
  6217. _formdiv = new U.UF.UI.form(
  6218. "賽諾梵",
  6219. $$("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" }), {
  6220. "id": "snf",
  6221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6222. "onresize": function () { }
  6223. }, {
  6224. closecallback: function () { }
  6225. }, { "style": { "height": "36px" } }).form; //創建窗體
  6226. _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); } }
  6227. break;
  6228. case "hanFamily":
  6229. _formdiv = new U.UF.UI.form(
  6230. "漢字家族",
  6231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6232. "id": "hanFamily",
  6233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //創建窗體
  6238. _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); } }
  6239. break;
  6240. case "hanClassics":
  6241. _formdiv = new U.UF.UI.form(
  6242. "國學經典",
  6243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6244. "id": "hanClassics",
  6245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //創建窗體
  6250. _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); } }
  6251. break;
  6252. case "hanTraining":
  6253. _formdiv = new U.UF.UI.form(
  6254. "筆畫訓練",
  6255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6256. "id": "hanTraining",
  6257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //創建窗體
  6262. _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); } }
  6263. break;
  6264. case "hanClass":
  6265. _formdiv = new U.UF.UI.form(
  6266. "書法課堂",
  6267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6268. "id": "hanClass",
  6269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //創建窗體
  6274. _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); } }
  6275. break;
  6276. case "han":
  6277. _formdiv = new U.UF.UI.form(
  6278. "漢字宮",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6280. "id": "han",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //創建窗體
  6286. _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); } }
  6287. break;
  6288. case "projectGM": //課程管理
  6289. _formdiv = new U.UF.UI.form(
  6290. "課程管理",
  6291. $$("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 }), {
  6292. "id": "projectGM",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //創建窗體
  6298. _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); } }
  6299. break;
  6300. case "studyGM": //課程中心
  6301. _formdiv = new U.UF.UI.form(
  6302. "課程中心",
  6303. $$("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
  6304. "id": "study",
  6305. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6306. "onresize": function () { }
  6307. }, {
  6308. closecallback: function () { }
  6309. }, { "style": { "height": "36px" } }).form; //創建窗體
  6310. _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); } }
  6311. break;
  6312. // studentGM
  6313. case "studentGM": //學生管理
  6314. _formdiv = new U.UF.UI.form(
  6315. "學生管理",
  6316. $$("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 }), {
  6317. "id": "studentGM",
  6318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //創建窗體
  6323. _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); } }
  6324. break;
  6325. case "evaluateGM": //學生評價
  6326. _formdiv = new U.UF.UI.form(
  6327. "學生評價",
  6328. $$("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 }), {
  6329. "id": "evaluateGM",
  6330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //創建窗體
  6335. _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); } }
  6336. break;
  6337. // classGM
  6338. case "classGM": //班級管理
  6339. _formdiv = new U.UF.UI.form(
  6340. "班級管理",
  6341. $$("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 }), {
  6342. "id": "classGM",
  6343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6344. "onresize": function () { }
  6345. }, {
  6346. closecallback: function () { }
  6347. }, { "style": { "height": "36px" } }).form; //創建窗體
  6348. _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); } }
  6349. break;
  6350. // dataGM
  6351. case "dataGM":
  6352. _formdiv = new U.UF.UI.form(
  6353. "我的資料",
  6354. $$("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 }), {
  6355. "id": "dataGM",
  6356. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, { "style": { "height": "36px" } }).form; //創建窗體
  6361. _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); } }
  6362. break;
  6363. // caseGM
  6364. case "caseGM": //課程進展
  6365. _formdiv = new U.UF.UI.form(
  6366. "課程進展",
  6367. $$("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 }), {
  6368. "id": "caseGM",
  6369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6370. "onresize": function () { }
  6371. }, {
  6372. closecallback: function () { }
  6373. }, { "style": { "height": "36px" } }).form; //創建窗體
  6374. _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); } }
  6375. break;
  6376. // meterialGM
  6377. case "meterialGM": //素材庫
  6378. _formdiv = new U.UF.UI.form(
  6379. "素材庫",
  6380. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6381. "id": "meterialGM",
  6382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //創建窗體
  6387. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材庫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6388. break;
  6389. // evaluateSGM
  6390. case "evaluateSGM": //我的評價
  6391. _formdiv = new U.UF.UI.form(
  6392. "我的評價",
  6393. $$("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 }), {
  6394. "id": "evaluateSGM",
  6395. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6396. "onresize": function () { }
  6397. }, {
  6398. closecallback: function () { }
  6399. }, { "style": { "height": "36px" } }).form; //創建窗體
  6400. _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); } }
  6401. break;
  6402. case "jupyter": //jupyter
  6403. _formdiv = new U.UF.UI.form(
  6404. "jupyter",
  6405. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6406. "id": "jupyter",
  6407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6408. "onresize": function () { }
  6409. }, {
  6410. closecallback: function () { }
  6411. }, { "style": { "height": "36px" } }).form; //創建窗體
  6412. _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); } }
  6413. break;
  6414. case "number": //數字實驗室
  6415. _formdiv = new U.UF.UI.form(
  6416. "數字實驗室",
  6417. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6418. "id": "number",
  6419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6420. "onresize": function () { }
  6421. }, {
  6422. closecallback: function () { }
  6423. }, { "style": { "height": "36px" } }).form; //創建窗體
  6424. _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); } }
  6425. break;
  6426. case "studentCourse": //項目管理 學生
  6427. _formdiv = new U.UF.UI.form(
  6428. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6429. $$("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 }), {
  6430. "id": "studentCourse",
  6431. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6432. "onresize": function () { }
  6433. }, {
  6434. closecallback: function () { }
  6435. }, { "style": { "height": "36px" } }).form; //創建窗體
  6436. _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); } }
  6437. break;
  6438. case "studentCourseS": //項目管理 老師
  6439. _formdiv = new U.UF.UI.form(
  6440. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6441. $$("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 }), {
  6442. "id": "studentCourseS",
  6443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6444. "onresize": function () { }
  6445. }, {
  6446. closecallback: function () { }
  6447. }, { "style": { "height": "36px" } }).form; //創建窗體
  6448. _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); } }
  6449. break;
  6450. case "studentIndex": //項目中心
  6451. _formdiv = new U.UF.UI.form(
  6452. "項目中心",
  6453. $$("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 }), {
  6454. "id": "studentIndex",
  6455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6456. "onresize": function () { }
  6457. }, {
  6458. closecallback: function () { }
  6459. }, { "style": { "height": "36px" } }).form; //創建窗體
  6460. _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); } }
  6461. break;
  6462. case "CaseDesignS":
  6463. _formdiv = new U.UF.UI.form(
  6464. "項目進展",
  6465. $$("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 }), {
  6466. "id": "case",
  6467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6468. "onresize": function () { }
  6469. }, {
  6470. closecallback: function () { }
  6471. }, { "style": { "height": "36px" } }).form; //創建窗體
  6472. _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); } }
  6473. break;
  6474. case "tcStudent": //騰訊學生管理
  6475. _formdiv = new U.UF.UI.form(
  6476. "學生管理",
  6477. $$("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 }), {
  6478. "id": "tcStudent",
  6479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6480. "onresize": function () { }
  6481. }, {
  6482. closecallback: function () { }
  6483. }, { "style": { "height": "36px" } }).form; //創建窗體
  6484. _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); } }
  6485. break;
  6486. case "tcSchool": //騰訊學校管理
  6487. _formdiv = new U.UF.UI.form(
  6488. "學校管理",
  6489. $$("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 }), {
  6490. "id": "tcSchool",
  6491. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6492. "onresize": function () { }
  6493. }, {
  6494. closecallback: function () { }
  6495. }, { "style": { "height": "36px" } }).form; //創建窗體
  6496. _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); } }
  6497. break;
  6498. case "tcTeacher": //騰訊學校管理
  6499. _formdiv = new U.UF.UI.form(
  6500. "教師管理",
  6501. $$("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 }), {
  6502. "id": "tcTeacher",
  6503. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6504. "onresize": function () { }
  6505. }, {
  6506. closecallback: function () { }
  6507. }, { "style": { "height": "36px" } }).form; //創建窗體
  6508. _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); } }
  6509. break;
  6510. case "teacher":
  6511. _formdiv = new U.UF.UI.form(
  6512. "教師管理",
  6513. $$("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 }), {
  6514. "id": "teacher",
  6515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6516. "onresize": function () { }
  6517. }, {
  6518. closecallback: function () { }
  6519. }, { "style": { "height": "36px" } }).form; //創建窗體
  6520. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教師管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6521. break;
  6522. case "tcData": //騰訊我的資料
  6523. _formdiv = new U.UF.UI.form(
  6524. "我的資料",
  6525. $$("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 }), {
  6526. "id": "tcData",
  6527. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //創建窗體
  6532. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6533. break;
  6534. case "tcNotice": //騰訊消息通知
  6535. _formdiv = new U.UF.UI.form(
  6536. "消息通知",
  6537. $$("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 }), {
  6538. "id": "tcNotice",
  6539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //創建窗體
  6544. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6545. break;
  6546. case "myReport": //好友打開
  6547. _formdiv = new U.UF.UI.form(
  6548. "我的評價",
  6549. $$("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 }), {
  6550. "id": "myReport",
  6551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //創建窗體
  6556. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6557. break;
  6558. case "learnAna": //好友打開
  6559. _formdiv = new U.UF.UI.form(
  6560. "學習分析",
  6561. $$("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 }), {
  6562. "id": "learnAna",
  6563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //創建窗體
  6568. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "學習分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6569. break;
  6570. case "AIChat": //AI共創
  6571. _formdiv = new U.UF.UI.form(
  6572. "AI共創",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  6574. "id": "AIChat",
  6575. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. istop: true,
  6579. closecallback: function () { $("#aichat_icon").remove(); },
  6580. narrowcallback: function () {
  6581. if (!$("#aichat_icon")[0]) {
  6582. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6583. }
  6584. },
  6585. }, { "style": { "height": "36px" } }).form; //創建窗體
  6586. _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); } }
  6587. break;
  6588. case "ainew": //AI共創
  6589. _formdiv = new U.UF.UI.form(
  6590. "AI協同",
  6591. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  6592. "id": "ainew",
  6593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, { "style": { "height": "36px" } }).form; //創建窗體
  6598. _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); } }
  6599. break;
  6600. case "gpt4": //gpt4
  6601. _formdiv = new U.UF.UI.form(
  6602. "AI助手",
  6603. $$("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 }), {
  6604. "id": "gpt4",
  6605. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6606. "onresize": function () { }
  6607. }, {
  6608. closecallback: function () { }
  6609. }, { "style": { "height": "36px" } }).form; //創建窗體
  6610. _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); } }
  6611. break;
  6612. case "aigpt": //gpt4
  6613. _formdiv = new U.UF.UI.form(
  6614. "AI助手+",
  6615. $$("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 }), {
  6616. "id": "aigpt",
  6617. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () {
  6621. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6622. }
  6623. }, { "style": { "height": "36px" } }).form; //創建窗體
  6624. _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); } }
  6625. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6626. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6627. })
  6628. break;
  6629. case "aiKnowledge": //aiKnowledge
  6630. _formdiv = new U.UF.UI.form(
  6631. "知識建構",
  6632. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6633. "id": "aiKnowledge",
  6634. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6635. "onresize": function () { }
  6636. }, {
  6637. closecallback: function () { }
  6638. }, { "style": { "height": "36px" } }).form; //創建窗體
  6639. _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); } }
  6640. break;
  6641. case "futureClass": //AI共創
  6642. _formdiv = new U.UF.UI.form(
  6643. "協同建構",
  6644. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.hk
  6645. "id": "synergyCourse",
  6646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6647. "onresize": function () { }
  6648. }, {
  6649. closecallback: function () {
  6650. $("iframe", _formdiv)[0].contentWindow.loginout();
  6651. }
  6652. }, { "style": { "height": "36px" } }).form; //創建窗體
  6653. _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); } }
  6654. break;
  6655. case "aiagent": //ai agent
  6656. _formdiv = new U.UF.UI.form(
  6657. "AI Agent",
  6658. $$("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" }), {
  6659. "id": "AIAgent",
  6660. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6661. "onresize": function () { }
  6662. }, {
  6663. closecallback: function () { }
  6664. }, { "style": { "height": "36px" } }).form; //創建窗體
  6665. _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); } }
  6666. break;
  6667. case "dataBoard": //數據看板
  6668. _formdiv = new U.UF.UI.form(
  6669. "數據看板",
  6670. $$("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 }), {
  6671. "id": "dataBoard",
  6672. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6673. "onresize": function () { }
  6674. }, {
  6675. closecallback: function () { }
  6676. }, { "style": { "height": "36px" } }).form; //創建窗體
  6677. _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); } }
  6678. break;
  6679. case "dataBoardSies": //數據融合
  6680. _formdiv = new U.UF.UI.form(
  6681. "數據融合",
  6682. $$("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 }), {
  6683. "id": "dataBoardSies",
  6684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6685. "onresize": function () { }
  6686. }, {
  6687. closecallback: function () { }
  6688. }, { "style": { "height": "36px" } }).form; //創建窗體
  6689. _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); } }
  6690. break;
  6691. case "dataBoardNew": //數據看板
  6692. _formdiv = new U.UF.UI.form(
  6693. "綜合看板",
  6694. $$("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 }), {
  6695. "id": "dataBoardNew",
  6696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6697. "onresize": function () { }
  6698. }, {
  6699. closecallback: function () { }
  6700. }, { "style": { "height": "36px" } }).form; //創建窗體
  6701. _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); } }
  6702. break;
  6703. case "dataBoardTest": //數據看板
  6704. _formdiv = new U.UF.UI.form(
  6705. "評測看板",
  6706. $$("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 }), {
  6707. "id": "dataBoardTest",
  6708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6709. "onresize": function () { }
  6710. }, {
  6711. closecallback: function () { }
  6712. }, { "style": { "height": "36px" } }).form; //創建窗體
  6713. _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); } }
  6714. break;
  6715. case "AIAnalyse": //AI共創
  6716. _formdiv = new U.UF.UI.form(
  6717. "AI分析",
  6718. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  6719. "id": "AIAnalyse",
  6720. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6721. "onresize": function () { }
  6722. }, {
  6723. closecallback: function () { }
  6724. }, { "style": { "height": "36px" } }).form; //創建窗體
  6725. _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); } }
  6726. break;
  6727. case "studioCourse": //AI共創
  6728. _formdiv = new U.UF.UI.form(
  6729. "工作管理",
  6730. $$("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 }), {
  6731. "id": "studioCourse",
  6732. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6733. "onresize": function () { }
  6734. }, {
  6735. closecallback: function () { }
  6736. }, { "style": { "height": "36px" } }).form; //創建窗體
  6737. _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); } }
  6738. break;
  6739. case "studioIndex": //AI共創
  6740. _formdiv = new U.UF.UI.form(
  6741. "工作中心",
  6742. $$("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 }), {
  6743. "id": "studioIndex",
  6744. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6745. "onresize": function () { }
  6746. }, {
  6747. closecallback: function () { }
  6748. }, { "style": { "height": "36px" } }).form; //創建窗體
  6749. _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); } }
  6750. break;
  6751. case "source":
  6752. _formdiv = new U.UF.UI.form(
  6753. "教學資源",
  6754. $$("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 }), {
  6755. "id": "source",
  6756. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6757. "onresize": function () { }
  6758. }, {
  6759. closecallback: function () { }
  6760. }, { "style": { "height": "36px" } }).form; //創建窗體
  6761. _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); } }
  6762. break;
  6763. case "testTeacher":
  6764. _formdiv = new U.UF.UI.form(
  6765. "智能表單",
  6766. $$("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 }), {
  6767. "id": "testTeacher",
  6768. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6769. "onresize": function () { }
  6770. }, {
  6771. closecallback: function () { }
  6772. }, { "style": { "height": "36px" } }).form; //創建窗體
  6773. _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); } }
  6774. break;
  6775. case "testStudent":
  6776. _formdiv = new U.UF.UI.form(
  6777. "教師中心",
  6778. $$("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 }), {
  6779. "id": "testStudent",
  6780. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6781. "onresize": function () { }
  6782. }, {
  6783. closecallback: function () { }
  6784. }, { "style": { "height": "36px" } }).form; //創建窗體
  6785. _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); } }
  6786. break;
  6787. case "testTeacherSies":
  6788. _formdiv = new U.UF.UI.form(
  6789. "教師管理",
  6790. $$("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 }), {
  6791. "id": "testTeacherSies",
  6792. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6793. "onresize": function () { }
  6794. }, {
  6795. closecallback: function () { }
  6796. }, { "style": { "height": "36px" } }).form; //創建窗體
  6797. _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); } }
  6798. break;
  6799. case "testStudentSies":
  6800. _formdiv = new U.UF.UI.form(
  6801. "教師中心",
  6802. $$("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 }), {
  6803. "id": "testStudentSies",
  6804. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6805. "onresize": function () { }
  6806. }, {
  6807. closecallback: function () { }
  6808. }, { "style": { "height": "36px" } }).form; //創建窗體
  6809. _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); } }
  6810. break;
  6811. case "ytpbl": //消息通知
  6812. _formdiv = new U.UF.UI.form(
  6813. "案例征集",
  6814. $$("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 }), {
  6815. "id": "ytpbl",
  6816. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6817. "onresize": function () { }
  6818. }, {
  6819. closecallback: function () { }
  6820. }, { "style": { "height": "36px" } }).form; //創建窗體
  6821. _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); } }
  6822. // 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");
  6823. break;
  6824. case "aiCourseResource": //人工智能窗體
  6825. _formdiv = new U.UF.UI.form(
  6826. false,
  6827. $$("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 }), {
  6828. "id": "aiCourseResource",
  6829. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6830. "onresize": function () { },
  6831. "isdrag": false,
  6832. }, {
  6833. closecallback: function () { }
  6834. }, { "style": { "height": "36px" } }).form; //創建窗體
  6835. _taskbar = ''
  6836. break;
  6837. case "szdjgCocooroboX": //圖形化編程
  6838. _formdiv = new U.UF.UI.form(
  6839. "圖形化編程",
  6840. $$("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" }), {
  6841. "id": "szdjgCocooroboX",
  6842. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6843. "onresize": function () { }
  6844. }, {
  6845. closecallback: function () { }
  6846. }, { "style": { "height": "36px" } }).form; //創建窗體
  6847. _taskbar = ''
  6848. break;
  6849. case "szdjgPython": //python編程
  6850. _formdiv = new U.UF.UI.form(
  6851. "Python編程",
  6852. $$("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" }), {
  6853. "id": "szdjgPython",
  6854. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6855. "onresize": function () { }
  6856. }, {
  6857. closecallback: function () { }
  6858. }, { "style": { "height": "36px" } }).form; //創建窗體
  6859. _taskbar = ''
  6860. break;
  6861. case "Record":
  6862. _formdiv = new U.UF.UI.form(
  6863. "觀察記錄",
  6864. $$("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 }), {
  6865. "id": "Record",
  6866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6867. "onresize": function () { }
  6868. }, {
  6869. closecallback: function () { }
  6870. }, { "style": { "height": "36px" } }).form; //創建窗體
  6871. _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); } }
  6872. break;
  6873. case "aigptCourse":
  6874. _formdiv = new U.UF.UI.form(
  6875. "AI智能體",
  6876. $$("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' }), {
  6877. "id": "aigptCourse",
  6878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6879. "onresize": function () { }
  6880. }, {
  6881. closecallback: function () { }
  6882. }, { "style": { "height": "36px" } }).form; //創建窗體
  6883. _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); } }
  6884. break;
  6885. case "classroomObservation":
  6886. _formdiv = new U.UF.UI.form(
  6887. "課堂觀察",
  6888. $$("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 }), {
  6889. "id": "classroomObservation",
  6890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6891. "onresize": function () { }
  6892. }, {
  6893. closecallback: function () { }
  6894. }, { "style": { "height": "36px" } }).form; //創建窗體
  6895. _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); } }
  6896. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6897. break;
  6898. case "pblCourse":
  6899. _formdiv = new U.UF.UI.form(
  6900. "學生PBL",
  6901. $$("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 }), {
  6902. "id": "pblCourse",
  6903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6904. "onresize": function () { }
  6905. }, {
  6906. closecallback: function () { }
  6907. }, { "style": { "height": "36px" } }).form; //創建窗體
  6908. _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); } }
  6909. break;
  6910. case "appStore":
  6911. _formdiv = new U.UF.UI.form(
  6912. "應用中心",
  6913. $$("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/#/appStore?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6914. "id": "pblCourse",
  6915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6916. "onresize": function () { }
  6917. }, {
  6918. closecallback: function () { }
  6919. }, { "style": { "height": "36px" } }).form; //創建窗體
  6920. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "應用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6921. break;
  6922. }
  6923. //U.MD.D.I.openClick(str);
  6924. //如果有任務欄信息
  6925. if (_taskbar) {
  6926. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  6927. }
  6928. }
  6929. // U.MD.D.I.openClick = function(str){
  6930. // var click = '';
  6931. // switch(str){
  6932. // case 'friend':
  6933. // click = '我的好友';
  6934. // break;
  6935. // case 'domain':
  6936. // click = '域名管理';
  6937. // break;
  6938. // case 'disk':
  6939. // click = '我的雲盤';
  6940. // break;
  6941. // case 'word':
  6942. // click = 'Word';
  6943. // break;
  6944. // case 'excel':
  6945. // click = 'Execl';
  6946. // break;
  6947. // case 'txt':
  6948. // click = '文本文件';
  6949. // break;
  6950. // case 'lookupFriend':
  6951. // click = '查找好友';
  6952. // break;
  6953. // case 'ftp':
  6954. // click = 'FTP';
  6955. // break;
  6956. // case 'group':
  6957. // click = '群組';
  6958. // break;
  6959. // case 'set':
  6960. // click = '我的設置';
  6961. // break;
  6962. // case 'systemSet':
  6963. // click = '系統設置';
  6964. // break;
  6965. // case 'boomYun':
  6966. // click = '互聯辦公';
  6967. // break;
  6968. // case 'xz':
  6969. // click = '雲端下載';
  6970. // break;
  6971. // case 'client':
  6972. // click = '有思瀏覽器';
  6973. // break;
  6974. // case 'backEndProgramming':
  6975. // click = '在線後臺編程';
  6976. // break;
  6977. // case 'frontEndProgramming':
  6978. // click = '在線前端編程';
  6979. // break;
  6980. // default: break;
  6981. // }
  6982. // if(U.MD.D.I.Ip && click){
  6983. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6984. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6985. // })
  6986. // }
  6987. // }
  6988. /**
  6989. *函數作用:ajax簡易函數,使用post格式
  6990. *@param url {data} 後臺地址
  6991. *@param data {data} 參數json
  6992. *@param fn {data} 回調函數
  6993. *
  6994. */
  6995. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6996. // var xhr = new XMLHttpRequest();
  6997. // xhr.open("GET",url,true);
  6998. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6999. // xhr.onreadystatechange = function(){
  7000. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7001. // fn.call(this,xhr.responseText);
  7002. // }
  7003. // };
  7004. // xhr.send();
  7005. // }
  7006. /*判斷是否是內網IP*/
  7007. // U.MD.D.I.isInnerIPFn = function(str){
  7008. // var curPageUrl = str;
  7009. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7010. // curPageUrl =curPageUrl.replace(reg1,'');
  7011. // // console.log('curPageUrl-1 '+curPageUrl);
  7012. // var reg2 = /\:+/g;//替換冒號為一點
  7013. // curPageUrl =curPageUrl.replace(reg2,'.');
  7014. // // console.log('curPageUrl-2 '+curPageUrl);
  7015. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7016. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7017. // if(curPageUrl[2] != '16'){
  7018. // return ipAddress;
  7019. // }else{
  7020. // return false;
  7021. // }
  7022. // }
  7023. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7024. // //compatibility for firefox and chrome
  7025. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7026. // var pc = new myPeerConnection({
  7027. // iceServers: []
  7028. // }),
  7029. // noop = function() {},
  7030. // localIPs = {},
  7031. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7032. // key;
  7033. // function iterateIP(ip) {
  7034. // if (!localIPs[ip]) onNewIP(ip);
  7035. // localIPs[ip] = true;
  7036. // }
  7037. // //create a bogus data channel
  7038. // pc.createDataChannel("");
  7039. // // create offer and set local description
  7040. // pc.createOffer().then(function(sdp) {
  7041. // sdp.sdp.split('\n').forEach(function(line) {
  7042. // if (line.indexOf('candidate') < 0) return;
  7043. // line.match(ipRegex).forEach(iterateIP);
  7044. // });
  7045. // pc.setLocalDescription(sdp, noop, noop);
  7046. // }).catch(function(reason) {
  7047. // // An error occurred, so handle the failure to connect
  7048. // });
  7049. // //sten for candidate events
  7050. // pc.onicecandidate = function(ice) {
  7051. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7052. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7053. // };
  7054. // }
  7055. // U.MD.D.I.getUserIpBool = function(callback){
  7056. // U.MD.D.I.getUserIP(function(ip){
  7057. // alert("Got IP! :" + ip);
  7058. // });
  7059. //}
  7060. //#endregion
  7061. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7062. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7063. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7064. _userinfo = US.userInfo, //登錄用戶信息
  7065. _userid = US.userInfo.userid //登錄用戶id
  7066. let _iframe;
  7067. let _cid = cid,
  7068. _stage = stage,
  7069. _task = task,
  7070. _tool = tool;
  7071. var _jie = $$("div", {
  7072. "style": {
  7073. "position": "absolute",
  7074. "bottom": "50px",
  7075. "right": "50px",
  7076. "zIndex": "9999",
  7077. "backgroundColor": "#2268bc",
  7078. "color": "#fff",
  7079. "padding": "12px 20px",
  7080. "cursor": "pointer",
  7081. "borderRadius": "4px",
  7082. },
  7083. "innerHTML": "提交作業"
  7084. })
  7085. let aTool = ''
  7086. let _loading = document.createElement('div')
  7087. _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;"
  7088. // _loading.id = "";
  7089. let _lchild = document.createElement('div')
  7090. let _limg = document.createElement('img')
  7091. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7092. _limg.style = "width: 26px;margin-right: 10px;"
  7093. _lchild.appendChild(_limg)
  7094. let _lspan = document.createElement('span')
  7095. _lspan.innerHTML = "上傳中..."
  7096. _lchild.appendChild(_lspan)
  7097. _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%);"
  7098. _loading.appendChild(_lchild)
  7099. var _box = $$('div', {
  7100. "style": {
  7101. "position": "relative",
  7102. "width": "100%",
  7103. "height": "100%",
  7104. },
  7105. })
  7106. _box.appendChild(_loading)
  7107. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7108. switch (str) {
  7109. case "whiteboard":
  7110. aTool = 1;
  7111. _iframe = $$("iframe", {
  7112. "frameborder": "no",
  7113. "border": "0",
  7114. "scrolling ": "no",
  7115. "style": {
  7116. "cssText": "border:0;width:100%;height:100%"
  7117. },
  7118. "src": "https://iwb.cocorobo.hk/"
  7119. })
  7120. _box.appendChild(_iframe);
  7121. _box.appendChild(_jie);
  7122. _formdiv = new U.UF.UI.form(
  7123. "電子白板",
  7124. _box, {
  7125. "id": "whiteboard" + cid + stage + task + tool,
  7126. "style": {
  7127. "width": "90%",
  7128. "height": "90%",
  7129. "overflow": 'hidden'
  7130. },
  7131. "onresize": function () { }
  7132. }, {
  7133. closecallback: function () { }
  7134. }, {
  7135. "style": {
  7136. "height": "36px"
  7137. }
  7138. }).form; //創建窗體
  7139. _taskbar = {
  7140. "id": str + _formdiv.id,
  7141. "style": {
  7142. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7143. },
  7144. "name": "電子白板",
  7145. "forms": _formdiv,
  7146. "click": function () {
  7147. U.MD.D.I.openApplication(str, obj, info);
  7148. }
  7149. }
  7150. break;
  7151. case "mind":
  7152. aTool = 3;
  7153. _iframe = $$("iframe", {
  7154. "frameborder": "no",
  7155. "border": "0",
  7156. "scrolling ": "no",
  7157. "style": {
  7158. "cssText": "border:0;width:100%;height:100%"
  7159. },
  7160. "src": "/kityminder-editor/dist/index.html"
  7161. })
  7162. _box.appendChild(_iframe);
  7163. _box.appendChild(_jie);
  7164. _formdiv = new U.UF.UI.form(
  7165. "思維導圖",
  7166. _box, { //"/jsmind/example/demo.html"
  7167. "id": "mind" + cid + stage + task + tool,
  7168. "style": {
  7169. "width": "90%",
  7170. "height": "90%",
  7171. "overflow": 'hidden'
  7172. },
  7173. "onresize": function () { }
  7174. }, {
  7175. closecallback: function () { }
  7176. }, {
  7177. "style": {
  7178. "height": "36px"
  7179. }
  7180. }).form; //創建窗體
  7181. _taskbar = {
  7182. "id": str + _formdiv.id,
  7183. "style": {
  7184. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7185. },
  7186. "name": "思維導圖",
  7187. "forms": _formdiv,
  7188. "click": function () {
  7189. U.MD.D.I.openApplication(str, obj, info);
  7190. }
  7191. }
  7192. break;
  7193. case "MindMap":
  7194. aTool = 3;
  7195. _iframe = $$("iframe", {
  7196. "frameborder": "no",
  7197. "border": "0",
  7198. "scrolling ": "no",
  7199. "style": {
  7200. "cssText": "border:0;width:100%;height:100%"
  7201. },
  7202. "src": "//cloud.cocorobo.hk/mind/"
  7203. })
  7204. _box.appendChild(_iframe);
  7205. _box.appendChild(_jie);
  7206. _formdiv = new U.UF.UI.form(
  7207. "思維導圖",
  7208. _box, { //"/jsmind/example/demo.html"
  7209. "id": "mind" + cid + stage + task + tool,
  7210. "style": {
  7211. "width": "90%",
  7212. "height": "90%",
  7213. "overflow": 'hidden'
  7214. },
  7215. "onresize": function () { }
  7216. }, {
  7217. closecallback: function () { }
  7218. }, {
  7219. "style": {
  7220. "height": "36px"
  7221. }
  7222. }).form; //創建窗體
  7223. _taskbar = {
  7224. "id": str + _formdiv.id,
  7225. "style": {
  7226. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7227. },
  7228. "name": "思維導圖",
  7229. "forms": _formdiv,
  7230. "click": function () {
  7231. U.MD.D.I.openApplication(str, obj, info);
  7232. }
  7233. }
  7234. break;
  7235. case "doc":
  7236. aTool = 6;
  7237. _iframe = $$("iframe", {
  7238. "frameborder": "no",
  7239. "border": "0",
  7240. "scrolling ": "no",
  7241. "style": {
  7242. "cssText": "border:0;width:100%;height:100%"
  7243. },
  7244. "src": "/Office/Word/WordEditArea.htm"
  7245. })
  7246. _box.appendChild(_iframe);
  7247. _box.appendChild(_jie);
  7248. _formdiv = new U.UF.UI.form(
  7249. "協同文檔",
  7250. _box, {
  7251. "id": "doc" + cid + stage + task + tool,
  7252. "style": {
  7253. "width": "90%",
  7254. "height": "90%",
  7255. "overflow": 'hidden'
  7256. },
  7257. "onresize": function () { }
  7258. }, {
  7259. closecallback: function () { }
  7260. }, {
  7261. "style": {
  7262. "height": "36px"
  7263. }
  7264. }).form; //創建窗體
  7265. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7266. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7267. })
  7268. _taskbar = {
  7269. "id": str + _formdiv.id,
  7270. "style": {
  7271. "backgroundImage": "url(/img/icon/doc.png)"
  7272. },
  7273. "name": "協同文檔",
  7274. "forms": _formdiv,
  7275. "click": function () {
  7276. U.MD.D.I.openApplication(str, obj, info);
  7277. }
  7278. }
  7279. break;
  7280. case "mindNetwork": //好友打開
  7281. aTool = 7;
  7282. _iframe = $$("iframe", {
  7283. "webkitallowfullscreen": "",
  7284. "mozallowfullscreen": "",
  7285. "allowfullscreen": "",
  7286. "frameborder": "no",
  7287. "border": "0",
  7288. "scrolling ": "no",
  7289. "style": {
  7290. "cssText": "border:0; width:100%; height:100%;"
  7291. },
  7292. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7293. })
  7294. _box.appendChild(_iframe);
  7295. _box.appendChild(_jie);
  7296. _formdiv = new U.UF.UI.form(
  7297. "思維網格",
  7298. _box, {
  7299. "id": "mindNetwork" + cid + stage + task + tool,
  7300. "style": {
  7301. "width": "90%",
  7302. "height": "90%",
  7303. "overflow": 'hidden'
  7304. },
  7305. "onresize": function () { }
  7306. }, {
  7307. closecallback: function () { }
  7308. }, {
  7309. "style": {
  7310. "height": "36px"
  7311. }
  7312. }).form; //創建窗體
  7313. _taskbar = {
  7314. "id": str + _formdiv.id,
  7315. "style": {
  7316. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7317. },
  7318. "name": "思維網格",
  7319. "forms": _formdiv,
  7320. "click": function () {
  7321. U.MD.D.I.openApplication(str, obj, info);
  7322. }
  7323. }
  7324. break;
  7325. case "courseDesign":
  7326. _iframe = $$("iframe", {
  7327. "webkitallowfullscreen": "",
  7328. "mozallowfullscreen": "",
  7329. "allowfullscreen": "",
  7330. "frameborder": "no",
  7331. "border": "0",
  7332. "scrolling ": "no",
  7333. "style": {
  7334. "cssText": "border:0; width:100%; height:100%;"
  7335. },
  7336. "src": "/course-design-vue"
  7337. })
  7338. _box.appendChild(_iframe);
  7339. _box.appendChild(_jie);
  7340. _formdiv = new U.UF.UI.form(
  7341. "項目設計",
  7342. _box, {
  7343. "id": "courseDesign" + cid + stage + task + tool,
  7344. "style": {
  7345. "width": "90%",
  7346. "height": "90%",
  7347. "overflow": 'hidden'
  7348. },
  7349. "onresize": function () { }
  7350. }, {
  7351. closecallback: function () { }
  7352. }, {
  7353. "style": {
  7354. "height": "36px"
  7355. }
  7356. }).form; //創建窗體
  7357. _taskbar = {
  7358. "id": str + _formdiv.id,
  7359. "style": {
  7360. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7361. },
  7362. "name": "項目設計",
  7363. "forms": _formdiv,
  7364. "click": function () {
  7365. U.MD.D.I.openApplication(str, obj, info);
  7366. }
  7367. }
  7368. break;
  7369. }
  7370. const script1 = document.createElement("script");
  7371. script1.type = "text/javascript";
  7372. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7373. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7374. const script2 = document.createElement("script");
  7375. script2.type = "text/javascript";
  7376. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7377. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7378. const script3 = document.createElement("script");
  7379. script3.type = "text/javascript";
  7380. script3.charset = "UTF-8";
  7381. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7382. const script4 = document.createElement("script");
  7383. script4.type = "text/javascript";
  7384. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7385. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7386. if (_iframe) {
  7387. if (str == 'doc') {
  7388. _iframe = _formdiv.querySelector('iframe')
  7389. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7390. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7391. _iframe.contentWindow.document.body.appendChild(script1);
  7392. _iframe.contentWindow.document.body.appendChild(script2);
  7393. // _iframe.contentWindow.document.body.appendChild(script3);
  7394. _iframe.contentWindow.document.body.appendChild(script4);
  7395. })
  7396. if (onloadListener) {
  7397. _iframe.contentDocument.location.reload()
  7398. } else {
  7399. _iframe.contentDocument.location.reload()
  7400. }
  7401. } else if (str == 'courseDesign') {
  7402. U.UF.DL.iframeLoad(_iframe, function () {
  7403. // _iframe.contentWindow.U.MD.O.W.load();
  7404. // _iframe.contentWindow.document.body.appendChild(script1);
  7405. _iframe.contentWindow.document.body.appendChild(script2);
  7406. _iframe.contentWindow.document.body.appendChild(script4);
  7407. })
  7408. } else if (str == 'mind') {
  7409. _iframe = _formdiv.querySelector('iframe')
  7410. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7411. //
  7412. _iframe.contentWindow.document.body.appendChild(script1);
  7413. _iframe.contentWindow.document.body.appendChild(script2);
  7414. _iframe.contentWindow.document.body.appendChild(script4);
  7415. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7416. })
  7417. if (onloadListener) {
  7418. _iframe.contentDocument.location.reload()
  7419. } else {
  7420. _iframe.contentDocument.location.reload()
  7421. }
  7422. } else if (str == 'whiteboard') {
  7423. _iframe = _formdiv.querySelector('iframe')
  7424. let onloadListener = _iframe.onload = () => {
  7425. _iframe.contentWindow.document.body.appendChild(script1);
  7426. _iframe.contentWindow.document.body.appendChild(script2);
  7427. _iframe.contentWindow.document.body.appendChild(script4);
  7428. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7429. };
  7430. // if (onloadListener) {
  7431. // try {
  7432. // _iframe.src += "?cocorobo="+new Date().getTime()
  7433. // _iframe.contentWindow.document.location.reload()
  7434. // } catch (error) {
  7435. // }
  7436. // } else {
  7437. // _iframe.contentDocument.location.reload()
  7438. // }
  7439. } else {
  7440. _iframe.onload = () => {
  7441. _iframe.contentWindow.document.body.appendChild(script1);
  7442. _iframe.contentWindow.document.body.appendChild(script2);
  7443. // _iframe.contentWindow.document.body.appendChild(script3);
  7444. _iframe.contentWindow.document.body.appendChild(script4);
  7445. };
  7446. }
  7447. _jie.onclick = async () => {
  7448. let text = ''
  7449. if (aTool == 1) {
  7450. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7451. } else if (aTool == 6) {
  7452. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7453. } else if (aTool == 3) {
  7454. text = await U.MD.D.I.getEditorContent(_iframe);
  7455. }
  7456. _loading.style.display = 'flex'
  7457. console.log(_loading);
  7458. var _ajs = _iframe.contentWindow.document.createElement("script");
  7459. _ajs.type = "text/javascript";
  7460. _ajs.innerHTML =
  7461. // 'console.log(' + _loading + ');\n' +
  7462. 'var _js = document.createElement("script");\n' +
  7463. '_js.type="text/javascript";\n' +
  7464. '_js.charset="UTF-8";\n' +
  7465. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7466. "_js.onload = function(){\n" +
  7467. ' var a = document.getElementsByTagName("img")\n' +
  7468. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7469. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7470. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7471. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7472. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7473. "beforeUpload_shishi(file," +
  7474. "'" +
  7475. _userid +
  7476. "'" +
  7477. ", " +
  7478. "'" +
  7479. _cid +
  7480. "'" +
  7481. ", " +
  7482. "'" +
  7483. _stage +
  7484. "'" +
  7485. ", " +
  7486. "'" +
  7487. _task +
  7488. "'" +
  7489. ", " +
  7490. "'" +
  7491. _tool +
  7492. "'" +
  7493. ", " +
  7494. "'" +
  7495. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7496. "'" +
  7497. ", " +
  7498. "'" +
  7499. aTool +
  7500. "'" +
  7501. ", " +
  7502. "`" +
  7503. text +
  7504. "`" +
  7505. ")\n" +
  7506. " });\n" +
  7507. "}\n" +
  7508. "document.head.appendChild(_js);\n";
  7509. _iframe.contentWindow.document.head.appendChild(_ajs);
  7510. }
  7511. }
  7512. //U.MD.D.I.openClick(str);
  7513. //如果有任務欄信息
  7514. // if (_taskbar) {
  7515. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7516. // }
  7517. }
  7518. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7519. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7520. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7521. _userinfo = US.userInfo, //登錄用戶信息
  7522. _userid = US.userInfo.userid //登錄用戶id
  7523. let _iframe;
  7524. let _cid = cid,
  7525. _stage = stage,
  7526. _task = task,
  7527. _tool = tool;
  7528. var _jie = $$("div", {
  7529. "style": {
  7530. "position": "absolute",
  7531. "bottom": "50px",
  7532. "right": "50px",
  7533. "zIndex": "9999",
  7534. "backgroundColor": "#2268bc",
  7535. "color": "#fff",
  7536. "padding": "12px 20px",
  7537. "cursor": "pointer",
  7538. "borderRadius": "4px",
  7539. },
  7540. "innerHTML": "提交作業"
  7541. })
  7542. let aTool = ''
  7543. let _loading = document.createElement('div')
  7544. _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;"
  7545. // _loading.id = "";
  7546. let _lchild = document.createElement('div')
  7547. let _limg = document.createElement('img')
  7548. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7549. _limg.style = "width: 26px;margin-right: 10px;"
  7550. _lchild.appendChild(_limg)
  7551. let _lspan = document.createElement('span')
  7552. _lspan.innerHTML = "上傳中..."
  7553. _lchild.appendChild(_lspan)
  7554. _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%);"
  7555. _loading.appendChild(_lchild)
  7556. let _box = $$('div', {
  7557. "style": {
  7558. "position": "relative",
  7559. "width": "100%",
  7560. "height": "100%",
  7561. },
  7562. })
  7563. _box.appendChild(_loading)
  7564. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7565. switch (str) {
  7566. case "whiteboard":
  7567. aTool = 1;
  7568. _iframe = $$("iframe", {
  7569. "frameborder": "no",
  7570. "border": "0",
  7571. "scrolling ": "no",
  7572. "style": {
  7573. "cssText": "border:0;width:100%;height:100%"
  7574. },
  7575. "src": "https://iwb.cocorobo.hk/"
  7576. })
  7577. _box.appendChild(_iframe);
  7578. _box.appendChild(_jie);
  7579. _formdiv = new U.UF.UI.form(
  7580. "電子白板",
  7581. _box, {
  7582. "id": "whiteboard" + cid + stage + task + tool,
  7583. "style": {
  7584. "width": "90%",
  7585. "height": "90%",
  7586. "overflow": 'hidden'
  7587. },
  7588. "onresize": function () { }
  7589. }, {
  7590. closecallback: function () { }
  7591. }, {
  7592. "style": {
  7593. "height": "36px"
  7594. }
  7595. }).form; //創建窗體
  7596. _taskbar = {
  7597. "id": str + _formdiv.id,
  7598. "style": {
  7599. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7600. },
  7601. "name": "電子白板",
  7602. "forms": _formdiv,
  7603. "click": function () {
  7604. U.MD.D.I.openApplication(str, obj, info);
  7605. }
  7606. }
  7607. break;
  7608. case "mind":
  7609. aTool = 3;
  7610. _iframe = $$("iframe", {
  7611. "frameborder": "no",
  7612. "border": "0",
  7613. "scrolling ": "no",
  7614. "style": {
  7615. "cssText": "border:0;width:100%;height:100%"
  7616. },
  7617. "src": "/kityminder-editor/dist/index.html"
  7618. })
  7619. _box.appendChild(_iframe);
  7620. _box.appendChild(_jie);
  7621. _formdiv = new U.UF.UI.form(
  7622. "思維導圖",
  7623. _box, { //"/jsmind/example/demo.html"
  7624. "id": "mind" + cid + stage + task + tool,
  7625. "style": {
  7626. "width": "90%",
  7627. "height": "90%",
  7628. "overflow": 'hidden'
  7629. },
  7630. "onresize": function () { }
  7631. }, {
  7632. closecallback: function () { }
  7633. }, {
  7634. "style": {
  7635. "height": "36px"
  7636. }
  7637. }).form; //創建窗體
  7638. _taskbar = {
  7639. "id": str + _formdiv.id,
  7640. "style": {
  7641. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7642. },
  7643. "name": "思維導圖",
  7644. "forms": _formdiv,
  7645. "click": function () {
  7646. U.MD.D.I.openApplication(str, obj, info);
  7647. }
  7648. }
  7649. break;
  7650. case "MindMap":
  7651. aTool = 3;
  7652. _iframe = $$("iframe", {
  7653. "frameborder": "no",
  7654. "border": "0",
  7655. "scrolling ": "no",
  7656. "style": {
  7657. "cssText": "border:0;width:100%;height:100%"
  7658. },
  7659. "src": "//cloud.cocorobo.hk/mind/"
  7660. })
  7661. _box.appendChild(_iframe);
  7662. _box.appendChild(_jie);
  7663. _formdiv = new U.UF.UI.form(
  7664. "思維導圖",
  7665. _box, { //"/jsmind/example/demo.html"
  7666. "id": "mind" + cid + stage + task + tool,
  7667. "style": {
  7668. "width": "90%",
  7669. "height": "90%",
  7670. "overflow": 'hidden'
  7671. },
  7672. "onresize": function () { }
  7673. }, {
  7674. closecallback: function () { }
  7675. }, {
  7676. "style": {
  7677. "height": "36px"
  7678. }
  7679. }).form; //創建窗體
  7680. _taskbar = {
  7681. "id": str + _formdiv.id,
  7682. "style": {
  7683. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7684. },
  7685. "name": "思維導圖",
  7686. "forms": _formdiv,
  7687. "click": function () {
  7688. U.MD.D.I.openApplication(str, obj, info);
  7689. }
  7690. }
  7691. break;
  7692. case "doc":
  7693. aTool = 6;
  7694. _iframe = $$("iframe", {
  7695. "frameborder": "no",
  7696. "border": "0",
  7697. "scrolling ": "no",
  7698. "style": {
  7699. "cssText": "border:0;width:100%;height:100%"
  7700. },
  7701. "src": "/Office/Word/WordEditArea.htm"
  7702. })
  7703. _box.appendChild(_iframe);
  7704. _box.appendChild(_jie);
  7705. _formdiv = new U.UF.UI.form(
  7706. "協同文檔",
  7707. _box, {
  7708. "id": "doc" + cid + stage + task + tool,
  7709. "style": {
  7710. "width": "90%",
  7711. "height": "90%",
  7712. "overflow": 'hidden'
  7713. },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, {
  7718. "style": {
  7719. "height": "36px"
  7720. }
  7721. }).form; //創建窗體
  7722. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7723. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7724. })
  7725. _taskbar = {
  7726. "id": str + _formdiv.id,
  7727. "style": {
  7728. "backgroundImage": "url(/img/icon/doc.png)"
  7729. },
  7730. "name": "協同文檔",
  7731. "forms": _formdiv,
  7732. "click": function () {
  7733. U.MD.D.I.openApplication(str, obj, info);
  7734. }
  7735. }
  7736. break;
  7737. case "mindNetwork": //好友打開
  7738. aTool = 7;
  7739. _iframe = $$("iframe", {
  7740. "webkitallowfullscreen": "",
  7741. "mozallowfullscreen": "",
  7742. "allowfullscreen": "",
  7743. "frameborder": "no",
  7744. "border": "0",
  7745. "scrolling ": "no",
  7746. "style": {
  7747. "cssText": "border:0; width:100%; height:100%;"
  7748. },
  7749. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7750. })
  7751. _box.appendChild(_iframe);
  7752. _box.appendChild(_jie);
  7753. _formdiv = new U.UF.UI.form(
  7754. "思維網格",
  7755. _box, {
  7756. "id": "mindNetwork" + cid + stage + task + tool,
  7757. "style": {
  7758. "width": "90%",
  7759. "height": "90%",
  7760. "overflow": 'hidden'
  7761. },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, {
  7766. "style": {
  7767. "height": "36px"
  7768. }
  7769. }).form; //創建窗體
  7770. _taskbar = {
  7771. "id": str + _formdiv.id,
  7772. "style": {
  7773. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7774. },
  7775. "name": "思維網格",
  7776. "forms": _formdiv,
  7777. "click": function () {
  7778. U.MD.D.I.openApplication(str, obj, info);
  7779. }
  7780. }
  7781. break;
  7782. case "courseDesign":
  7783. _iframe = $$("iframe", {
  7784. "webkitallowfullscreen": "",
  7785. "mozallowfullscreen": "",
  7786. "allowfullscreen": "",
  7787. "frameborder": "no",
  7788. "border": "0",
  7789. "scrolling ": "no",
  7790. "style": {
  7791. "cssText": "border:0; width:100%; height:100%;"
  7792. },
  7793. "src": "/course-design-vue"
  7794. })
  7795. _box.appendChild(_iframe);
  7796. _box.appendChild(_jie);
  7797. _formdiv = new U.UF.UI.form(
  7798. "項目設計",
  7799. _box, {
  7800. "id": "courseDesign" + cid + stage + task + tool,
  7801. "style": {
  7802. "width": "90%",
  7803. "height": "90%",
  7804. "overflow": 'hidden'
  7805. },
  7806. "onresize": function () { }
  7807. }, {
  7808. closecallback: function () { }
  7809. }, {
  7810. "style": {
  7811. "height": "36px"
  7812. }
  7813. }).form; //創建窗體
  7814. _taskbar = {
  7815. "id": str + _formdiv.id,
  7816. "style": {
  7817. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7818. },
  7819. "name": "項目設計",
  7820. "forms": _formdiv,
  7821. "click": function () {
  7822. U.MD.D.I.openApplication(str, obj, info);
  7823. }
  7824. }
  7825. break;
  7826. }
  7827. const script1 = document.createElement("script");
  7828. script1.type = "text/javascript";
  7829. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7830. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7831. const script2 = document.createElement("script");
  7832. script2.type = "text/javascript";
  7833. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7834. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7835. const script3 = document.createElement("script");
  7836. script3.type = "text/javascript";
  7837. script3.charset = "UTF-8";
  7838. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7839. const script4 = document.createElement("script");
  7840. script4.type = "text/javascript";
  7841. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7842. script4.src = window.origin + "/js/Common/jietu2E.js";
  7843. if (_iframe) {
  7844. if (str == 'doc') {
  7845. _iframe = _formdiv.querySelector('iframe')
  7846. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7847. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7848. _iframe.contentWindow.document.body.appendChild(script1);
  7849. _iframe.contentWindow.document.body.appendChild(script2);
  7850. // _iframe.contentWindow.document.body.appendChild(script3);
  7851. _iframe.contentWindow.document.body.appendChild(script4);
  7852. })
  7853. if (onloadListener) {
  7854. _iframe.contentDocument.location.reload()
  7855. } else {
  7856. _iframe.contentDocument.location.reload()
  7857. }
  7858. } else if (str == 'courseDesign') {
  7859. U.UF.DL.iframeLoad(_iframe, function () {
  7860. // _iframe.contentWindow.U.MD.O.W.load();
  7861. // _iframe.contentWindow.document.body.appendChild(script1);
  7862. _iframe.contentWindow.document.body.appendChild(script2);
  7863. _iframe.contentWindow.document.body.appendChild(script4);
  7864. })
  7865. } else if (str == 'mind') {
  7866. _iframe = _formdiv.querySelector('iframe')
  7867. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7868. //
  7869. _iframe.contentWindow.document.body.appendChild(script1);
  7870. _iframe.contentWindow.document.body.appendChild(script2);
  7871. _iframe.contentWindow.document.body.appendChild(script4);
  7872. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7873. })
  7874. if (onloadListener) {
  7875. _iframe.contentDocument.location.reload()
  7876. } else {
  7877. _iframe.contentDocument.location.reload()
  7878. }
  7879. } else if (str == 'whiteboard') {
  7880. _iframe = _formdiv.querySelector('iframe')
  7881. let onloadListener = _iframe.onload = () => {
  7882. _iframe.contentWindow.document.body.appendChild(script1);
  7883. _iframe.contentWindow.document.body.appendChild(script2);
  7884. _iframe.contentWindow.document.body.appendChild(script4);
  7885. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7886. };
  7887. // if (onloadListener) {
  7888. // try {
  7889. // _iframe.src += "?cocorobo="+new Date().getTime()
  7890. // _iframe.contentWindow.document.location.reload()
  7891. // } catch (error) {
  7892. // }
  7893. // } else {
  7894. // _iframe.contentDocument.location.reload()
  7895. // }
  7896. } else {
  7897. _iframe.onload = () => {
  7898. _iframe.contentWindow.document.body.appendChild(script1);
  7899. _iframe.contentWindow.document.body.appendChild(script2);
  7900. // _iframe.contentWindow.document.body.appendChild(script3);
  7901. _iframe.contentWindow.document.body.appendChild(script4);
  7902. };
  7903. }
  7904. _jie.onclick = async () => {
  7905. let text = ''
  7906. if (aTool == 1) {
  7907. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7908. } else if (aTool == 6) {
  7909. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7910. } else if (aTool == 3) {
  7911. text = await U.MD.D.I.getEditorContent(_iframe);
  7912. }
  7913. _loading.style.display = 'flex'
  7914. console.log(_loading);
  7915. var _ajs = _iframe.contentWindow.document.createElement("script");
  7916. _ajs.type = "text/javascript";
  7917. _ajs.innerHTML =
  7918. // 'console.log(' + _loading + ');\n' +
  7919. 'var _js = document.createElement("script");\n' +
  7920. '_js.type="text/javascript";\n' +
  7921. '_js.charset="UTF-8";\n' +
  7922. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7923. "_js.onload = function(){\n" +
  7924. ' var a = document.getElementsByTagName("img")\n' +
  7925. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7926. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7927. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7928. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7929. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7930. "beforeUpload_shishi(file," +
  7931. "'" +
  7932. _userid +
  7933. "'" +
  7934. ", " +
  7935. "'" +
  7936. _cid +
  7937. "'" +
  7938. ", " +
  7939. "'" +
  7940. _stage +
  7941. "'" +
  7942. ", " +
  7943. "'" +
  7944. _task +
  7945. "'" +
  7946. ", " +
  7947. "'" +
  7948. _tool +
  7949. "'" +
  7950. ", " +
  7951. "'" +
  7952. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7953. "'" +
  7954. ", " +
  7955. "'" +
  7956. aTool +
  7957. "'" +
  7958. ", " +
  7959. "`" +
  7960. text +
  7961. "`" +
  7962. ")\n" +
  7963. " });\n" +
  7964. "}\n" +
  7965. "document.head.appendChild(_js);\n";
  7966. _iframe.contentWindow.document.head.appendChild(_ajs);
  7967. }
  7968. }
  7969. //U.MD.D.I.openClick(str);
  7970. //如果有任務欄信息
  7971. // if (_taskbar) {
  7972. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7973. // }
  7974. }
  7975. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7976. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7977. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7978. _userid = student.userid, //登錄用戶id
  7979. _username = student.student //用戶名字
  7980. let _iframe;
  7981. let _cid = cid,
  7982. _stage = stage,
  7983. _task = task,
  7984. _tool = tool;
  7985. var _jie = $$("div", {
  7986. "style": {
  7987. "position": "absolute",
  7988. "bottom": "50px",
  7989. "right": "50px",
  7990. "zIndex": "9999",
  7991. "backgroundColor": "#2268bc",
  7992. "color": "#fff",
  7993. "padding": "12px 20px",
  7994. "cursor": "pointer",
  7995. "borderRadius": "4px",
  7996. },
  7997. "innerHTML": "提交作業"
  7998. })
  7999. let aTool = ''
  8000. let _loading = document.createElement('div')
  8001. _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;"
  8002. // _loading.id = "";
  8003. let _lchild = document.createElement('div')
  8004. let _limg = document.createElement('img')
  8005. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8006. _limg.style = "width: 26px;margin-right: 10px;"
  8007. _lchild.appendChild(_limg)
  8008. let _lspan = document.createElement('span')
  8009. _lspan.innerHTML = "上傳中..."
  8010. _lchild.appendChild(_lspan)
  8011. _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%);"
  8012. _loading.appendChild(_lchild)
  8013. var _box = $$('div', {
  8014. "style": {
  8015. "position": "relative",
  8016. "width": "100%",
  8017. "height": "100%",
  8018. },
  8019. })
  8020. _box.appendChild(_loading)
  8021. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8022. switch (str) {
  8023. case "whiteboard":
  8024. aTool = 1;
  8025. _iframe = $$("iframe", {
  8026. "frameborder": "no",
  8027. "border": "0",
  8028. "scrolling ": "no",
  8029. "style": {
  8030. "cssText": "border:0;width:100%;height:100%"
  8031. },
  8032. "src": "https://iwb.cocorobo.hk/"
  8033. })
  8034. _box.appendChild(_iframe);
  8035. _box.appendChild(_jie);
  8036. _formdiv = new U.UF.UI.form(
  8037. "電子白板-" + _username,
  8038. _box, {
  8039. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8040. "style": {
  8041. "width": "90%",
  8042. "height": "90%",
  8043. "overflow": 'hidden'
  8044. },
  8045. "onresize": function () { }
  8046. }, {
  8047. closecallback: function () { }
  8048. }, {
  8049. "style": {
  8050. "height": "36px"
  8051. }
  8052. }).form; //創建窗體
  8053. _taskbar = {
  8054. "id": str + _formdiv.id,
  8055. "style": {
  8056. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8057. },
  8058. "name": "電子白板",
  8059. "forms": _formdiv,
  8060. "click": function () {
  8061. U.MD.D.I.openApplication(str, obj, info);
  8062. }
  8063. }
  8064. break;
  8065. case "mind":
  8066. aTool = 3;
  8067. _iframe = $$("iframe", {
  8068. "frameborder": "no",
  8069. "border": "0",
  8070. "scrolling ": "no",
  8071. "style": {
  8072. "cssText": "border:0;width:100%;height:100%"
  8073. },
  8074. "src": "/kityminder-editor/dist/index.html"
  8075. })
  8076. _box.appendChild(_iframe);
  8077. _box.appendChild(_jie);
  8078. _formdiv = new U.UF.UI.form(
  8079. "思維導圖-" + _username,
  8080. _box, { //"/jsmind/example/demo.html"
  8081. "id": "mind" + cid + stage + task + tool + _userid,
  8082. "style": {
  8083. "width": "90%",
  8084. "height": "90%",
  8085. "overflow": 'hidden'
  8086. },
  8087. "onresize": function () { }
  8088. }, {
  8089. closecallback: function () { }
  8090. }, {
  8091. "style": {
  8092. "height": "36px"
  8093. }
  8094. }).form; //創建窗體
  8095. _taskbar = {
  8096. "id": str + _formdiv.id,
  8097. "style": {
  8098. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8099. },
  8100. "name": "思維導圖",
  8101. "forms": _formdiv,
  8102. "click": function () {
  8103. U.MD.D.I.openApplication(str, obj, info);
  8104. }
  8105. }
  8106. break;
  8107. case "MindMap":
  8108. aTool = 3;
  8109. _iframe = $$("iframe", {
  8110. "frameborder": "no",
  8111. "border": "0",
  8112. "scrolling ": "no",
  8113. "style": {
  8114. "cssText": "border:0;width:100%;height:100%"
  8115. },
  8116. "src": "//cloud.cocorobo.hk/mind/"
  8117. })
  8118. _box.appendChild(_iframe);
  8119. _box.appendChild(_jie);
  8120. _formdiv = new U.UF.UI.form(
  8121. "思維導圖-" + _username,
  8122. _box, { //"/jsmind/example/demo.html"
  8123. "id": "mind" + cid + stage + task + tool + _userid,
  8124. "style": {
  8125. "width": "90%",
  8126. "height": "90%",
  8127. "overflow": 'hidden'
  8128. },
  8129. "onresize": function () { }
  8130. }, {
  8131. closecallback: function () { }
  8132. }, {
  8133. "style": {
  8134. "height": "36px"
  8135. }
  8136. }).form; //創建窗體
  8137. _taskbar = {
  8138. "id": str + _formdiv.id,
  8139. "style": {
  8140. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8141. },
  8142. "name": "思維導圖",
  8143. "forms": _formdiv,
  8144. "click": function () {
  8145. U.MD.D.I.openApplication(str, obj, info);
  8146. }
  8147. }
  8148. break;
  8149. case "doc":
  8150. aTool = 6;
  8151. _iframe = $$("iframe", {
  8152. "frameborder": "no",
  8153. "border": "0",
  8154. "scrolling ": "no",
  8155. "style": {
  8156. "cssText": "border:0;width:100%;height:100%"
  8157. },
  8158. "src": "/Office/Word/WordEditArea.htm"
  8159. })
  8160. _box.appendChild(_iframe);
  8161. _box.appendChild(_jie);
  8162. _formdiv = new U.UF.UI.form(
  8163. "協同文檔-" + _username,
  8164. _box, {
  8165. "id": "doc" + cid + stage + task + tool + _userid,
  8166. "style": {
  8167. "width": "90%",
  8168. "height": "90%",
  8169. "overflow": 'hidden'
  8170. },
  8171. "onresize": function () { }
  8172. }, {
  8173. closecallback: function () { }
  8174. }, {
  8175. "style": {
  8176. "height": "36px"
  8177. }
  8178. }).form; //創建窗體
  8179. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8180. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8181. })
  8182. _taskbar = {
  8183. "id": str + _formdiv.id,
  8184. "style": {
  8185. "backgroundImage": "url(/img/icon/doc.png)"
  8186. },
  8187. "name": "協同文檔",
  8188. "forms": _formdiv,
  8189. "click": function () {
  8190. U.MD.D.I.openApplication(str, obj, info);
  8191. }
  8192. }
  8193. break;
  8194. case "mindNetwork": //好友打開
  8195. aTool = 7;
  8196. _iframe = $$("iframe", {
  8197. "webkitallowfullscreen": "",
  8198. "mozallowfullscreen": "",
  8199. "allowfullscreen": "",
  8200. "frameborder": "no",
  8201. "border": "0",
  8202. "scrolling ": "no",
  8203. "style": {
  8204. "cssText": "border:0; width:100%; height:100%;"
  8205. },
  8206. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8207. })
  8208. _box.appendChild(_iframe);
  8209. _box.appendChild(_jie);
  8210. _formdiv = new U.UF.UI.form(
  8211. "思維網格-" + _username,
  8212. _box, {
  8213. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8214. "style": {
  8215. "width": "90%",
  8216. "height": "90%",
  8217. "overflow": 'hidden'
  8218. },
  8219. "onresize": function () { }
  8220. }, {
  8221. closecallback: function () { }
  8222. }, {
  8223. "style": {
  8224. "height": "36px"
  8225. }
  8226. }).form; //創建窗體
  8227. _taskbar = {
  8228. "id": str + _formdiv.id,
  8229. "style": {
  8230. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8231. },
  8232. "name": "思維網格",
  8233. "forms": _formdiv,
  8234. "click": function () {
  8235. U.MD.D.I.openApplication(str, obj, info);
  8236. }
  8237. }
  8238. break;
  8239. case "courseDesign":
  8240. _iframe = $$("iframe", {
  8241. "webkitallowfullscreen": "",
  8242. "mozallowfullscreen": "",
  8243. "allowfullscreen": "",
  8244. "frameborder": "no",
  8245. "border": "0",
  8246. "scrolling ": "no",
  8247. "style": {
  8248. "cssText": "border:0; width:100%; height:100%;"
  8249. },
  8250. "src": "/course-design-vue"
  8251. })
  8252. _box.appendChild(_iframe);
  8253. _box.appendChild(_jie);
  8254. _formdiv = new U.UF.UI.form(
  8255. "項目設計-" + _username,
  8256. _box, {
  8257. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8258. "style": {
  8259. "width": "90%",
  8260. "height": "90%",
  8261. "overflow": 'hidden'
  8262. },
  8263. "onresize": function () { }
  8264. }, {
  8265. closecallback: function () { }
  8266. }, {
  8267. "style": {
  8268. "height": "36px"
  8269. }
  8270. }).form; //創建窗體
  8271. _taskbar = {
  8272. "id": str + _formdiv.id,
  8273. "style": {
  8274. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8275. },
  8276. "name": "項目設計",
  8277. "forms": _formdiv,
  8278. "click": function () {
  8279. U.MD.D.I.openApplication(str, obj, info);
  8280. }
  8281. }
  8282. break;
  8283. }
  8284. const script1 = document.createElement("script");
  8285. script1.type = "text/javascript";
  8286. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8287. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8288. const script2 = document.createElement("script");
  8289. script2.type = "text/javascript";
  8290. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8291. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8292. const script3 = document.createElement("script");
  8293. script3.type = "text/javascript";
  8294. script3.charset = "UTF-8";
  8295. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8296. const script4 = document.createElement("script");
  8297. script4.type = "text/javascript";
  8298. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8299. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8300. if (_iframe) {
  8301. if (str == 'doc') {
  8302. _iframe = _formdiv.querySelector('iframe')
  8303. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8304. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8305. _iframe.contentWindow.document.body.appendChild(script1);
  8306. _iframe.contentWindow.document.body.appendChild(script2);
  8307. // _iframe.contentWindow.document.body.appendChild(script3);
  8308. _iframe.contentWindow.document.body.appendChild(script4);
  8309. })
  8310. if (onloadListener) {
  8311. _iframe.contentDocument.location.reload()
  8312. } else {
  8313. _iframe.contentDocument.location.reload()
  8314. }
  8315. } else if (str == 'courseDesign') {
  8316. U.UF.DL.iframeLoad(_iframe, function () {
  8317. // _iframe.contentWindow.U.MD.O.W.load();
  8318. // _iframe.contentWindow.document.body.appendChild(script1);
  8319. _iframe.contentWindow.document.body.appendChild(script2);
  8320. _iframe.contentWindow.document.body.appendChild(script4);
  8321. })
  8322. } else if (str == 'mind') {
  8323. _iframe = _formdiv.querySelector('iframe')
  8324. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8325. //
  8326. _iframe.contentWindow.document.body.appendChild(script1);
  8327. _iframe.contentWindow.document.body.appendChild(script2);
  8328. _iframe.contentWindow.document.body.appendChild(script4);
  8329. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8330. })
  8331. if (onloadListener) {
  8332. _iframe.contentDocument.location.reload()
  8333. } else {
  8334. _iframe.contentDocument.location.reload()
  8335. }
  8336. } else if (str == 'whiteboard') {
  8337. _iframe = _formdiv.querySelector('iframe')
  8338. let onloadListener = _iframe.onload = () => {
  8339. _iframe.contentWindow.document.body.appendChild(script1);
  8340. _iframe.contentWindow.document.body.appendChild(script2);
  8341. _iframe.contentWindow.document.body.appendChild(script4);
  8342. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8343. };
  8344. // if (onloadListener) {
  8345. // try {
  8346. // _iframe.src += "?cocorobo="+new Date().getTime()
  8347. // _iframe.contentWindow.document.location.reload()
  8348. // } catch (error) {
  8349. // }
  8350. // } else {
  8351. // _iframe.contentDocument.location.reload()
  8352. // }
  8353. } else {
  8354. _iframe.onload = () => {
  8355. _iframe.contentWindow.document.body.appendChild(script1);
  8356. _iframe.contentWindow.document.body.appendChild(script2);
  8357. // _iframe.contentWindow.document.body.appendChild(script3);
  8358. _iframe.contentWindow.document.body.appendChild(script4);
  8359. };
  8360. }
  8361. _jie.onclick = async () => {
  8362. let text = ''
  8363. if (aTool == 1) {
  8364. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8365. } else if (aTool == 6) {
  8366. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8367. } else if (aTool == 3) {
  8368. text = await U.MD.D.I.getEditorContent(_iframe);
  8369. }
  8370. _loading.style.display = 'flex'
  8371. console.log(_loading);
  8372. var _ajs = _iframe.contentWindow.document.createElement("script");
  8373. _ajs.type = "text/javascript";
  8374. _ajs.innerHTML =
  8375. // 'console.log(' + _loading + ');\n' +
  8376. 'var _js = document.createElement("script");\n' +
  8377. '_js.type="text/javascript";\n' +
  8378. '_js.charset="UTF-8";\n' +
  8379. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8380. "_js.onload = function(){\n" +
  8381. ' var a = document.getElementsByTagName("img")\n' +
  8382. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8383. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8384. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8385. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8386. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8387. "beforeUpload_shishi(file," +
  8388. "'" +
  8389. _userid +
  8390. "'" +
  8391. ", " +
  8392. "'" +
  8393. _cid +
  8394. "'" +
  8395. ", " +
  8396. "'" +
  8397. _stage +
  8398. "'" +
  8399. ", " +
  8400. "'" +
  8401. _task +
  8402. "'" +
  8403. ", " +
  8404. "'" +
  8405. _tool +
  8406. "'" +
  8407. ", " +
  8408. "'" +
  8409. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8410. "'" +
  8411. ", " +
  8412. "'" +
  8413. aTool +
  8414. "'" +
  8415. ", " +
  8416. "`" +
  8417. text +
  8418. "`" +
  8419. ")\n" +
  8420. " });\n" +
  8421. "}\n" +
  8422. "document.head.appendChild(_js);\n";
  8423. _iframe.contentWindow.document.head.appendChild(_ajs);
  8424. }
  8425. }
  8426. }
  8427. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8428. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8429. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8430. _userid = student.userid, //登錄用戶id
  8431. _username = student.student //用戶名字
  8432. let _iframe;
  8433. let _cid = cid,
  8434. _stage = stage,
  8435. _task = task,
  8436. _tool = tool;
  8437. var _jie = $$("div", {
  8438. "style": {
  8439. "position": "absolute",
  8440. "bottom": "50px",
  8441. "right": "50px",
  8442. "zIndex": "9999",
  8443. "backgroundColor": "#2268bc",
  8444. "color": "#fff",
  8445. "padding": "12px 20px",
  8446. "cursor": "pointer",
  8447. "borderRadius": "4px",
  8448. },
  8449. "innerHTML": "提交作業"
  8450. })
  8451. let aTool = ''
  8452. let _loading = document.createElement('div')
  8453. _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;"
  8454. // _loading.id = "";
  8455. let _lchild = document.createElement('div')
  8456. let _limg = document.createElement('img')
  8457. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8458. _limg.style = "width: 26px;margin-right: 10px;"
  8459. _lchild.appendChild(_limg)
  8460. let _lspan = document.createElement('span')
  8461. _lspan.innerHTML = "上傳中..."
  8462. _lchild.appendChild(_lspan)
  8463. _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%);"
  8464. _loading.appendChild(_lchild)
  8465. var _box = $$('div', {
  8466. "style": {
  8467. "position": "relative",
  8468. "width": "100%",
  8469. "height": "100%",
  8470. },
  8471. })
  8472. _box.appendChild(_loading)
  8473. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8474. switch (str) {
  8475. case "whiteboard":
  8476. aTool = 1;
  8477. _iframe = $$("iframe", {
  8478. "frameborder": "no",
  8479. "border": "0",
  8480. "scrolling ": "no",
  8481. "style": {
  8482. "cssText": "border:0;width:100%;height:100%"
  8483. },
  8484. "src": "https://iwb.cocorobo.hk/"
  8485. })
  8486. _box.appendChild(_iframe);
  8487. _box.appendChild(_jie);
  8488. _formdiv = new U.UF.UI.form(
  8489. "電子白板-" + _username,
  8490. _box, {
  8491. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8492. "style": {
  8493. "width": "90%",
  8494. "height": "90%",
  8495. "overflow": 'hidden'
  8496. },
  8497. "onresize": function () { }
  8498. }, {
  8499. closecallback: function () { }
  8500. }, {
  8501. "style": {
  8502. "height": "36px"
  8503. }
  8504. }).form; //創建窗體
  8505. _taskbar = {
  8506. "id": str + _formdiv.id,
  8507. "style": {
  8508. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8509. },
  8510. "name": "電子白板",
  8511. "forms": _formdiv,
  8512. "click": function () {
  8513. U.MD.D.I.openApplication(str, obj, info);
  8514. }
  8515. }
  8516. break;
  8517. case "mind":
  8518. aTool = 3;
  8519. _iframe = $$("iframe", {
  8520. "frameborder": "no",
  8521. "border": "0",
  8522. "scrolling ": "no",
  8523. "style": {
  8524. "cssText": "border:0;width:100%;height:100%"
  8525. },
  8526. "src": "/kityminder-editor/dist/index.html"
  8527. })
  8528. _box.appendChild(_iframe);
  8529. _box.appendChild(_jie);
  8530. _formdiv = new U.UF.UI.form(
  8531. "思維導圖-" + _username,
  8532. _box, { //"/jsmind/example/demo.html"
  8533. "id": "mind" + cid + stage + task + tool + _userid,
  8534. "style": {
  8535. "width": "90%",
  8536. "height": "90%",
  8537. "overflow": 'hidden'
  8538. },
  8539. "onresize": function () { }
  8540. }, {
  8541. closecallback: function () { }
  8542. }, {
  8543. "style": {
  8544. "height": "36px"
  8545. }
  8546. }).form; //創建窗體
  8547. _taskbar = {
  8548. "id": str + _formdiv.id,
  8549. "style": {
  8550. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8551. },
  8552. "name": "思維導圖",
  8553. "forms": _formdiv,
  8554. "click": function () {
  8555. U.MD.D.I.openApplication(str, obj, info);
  8556. }
  8557. }
  8558. break;
  8559. case "MindMap":
  8560. aTool = 3;
  8561. _iframe = $$("iframe", {
  8562. "frameborder": "no",
  8563. "border": "0",
  8564. "scrolling ": "no",
  8565. "style": {
  8566. "cssText": "border:0;width:100%;height:100%"
  8567. },
  8568. "src": "//cloud.cocorobo.hk/mind/"
  8569. })
  8570. _box.appendChild(_iframe);
  8571. _box.appendChild(_jie);
  8572. _formdiv = new U.UF.UI.form(
  8573. "思維導圖-" + _username,
  8574. _box, { //"/jsmind/example/demo.html"
  8575. "id": "mind" + cid + stage + task + tool + _userid,
  8576. "style": {
  8577. "width": "90%",
  8578. "height": "90%",
  8579. "overflow": 'hidden'
  8580. },
  8581. "onresize": function () { }
  8582. }, {
  8583. closecallback: function () { }
  8584. }, {
  8585. "style": {
  8586. "height": "36px"
  8587. }
  8588. }).form; //創建窗體
  8589. _taskbar = {
  8590. "id": str + _formdiv.id,
  8591. "style": {
  8592. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8593. },
  8594. "name": "思維導圖",
  8595. "forms": _formdiv,
  8596. "click": function () {
  8597. U.MD.D.I.openApplication(str, obj, info);
  8598. }
  8599. }
  8600. break;
  8601. case "doc":
  8602. aTool = 6;
  8603. _iframe = $$("iframe", {
  8604. "frameborder": "no",
  8605. "border": "0",
  8606. "scrolling ": "no",
  8607. "style": {
  8608. "cssText": "border:0;width:100%;height:100%"
  8609. },
  8610. "src": "/Office/Word/WordEditArea.htm"
  8611. })
  8612. _box.appendChild(_iframe);
  8613. _box.appendChild(_jie);
  8614. _formdiv = new U.UF.UI.form(
  8615. "協同文檔-" + _username,
  8616. _box, {
  8617. "id": "doc" + cid + stage + task + tool + _userid,
  8618. "style": {
  8619. "width": "90%",
  8620. "height": "90%",
  8621. "overflow": 'hidden'
  8622. },
  8623. "onresize": function () { }
  8624. }, {
  8625. closecallback: function () { }
  8626. }, {
  8627. "style": {
  8628. "height": "36px"
  8629. }
  8630. }).form; //創建窗體
  8631. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8632. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8633. })
  8634. _taskbar = {
  8635. "id": str + _formdiv.id,
  8636. "style": {
  8637. "backgroundImage": "url(/img/icon/doc.png)"
  8638. },
  8639. "name": "協同文檔",
  8640. "forms": _formdiv,
  8641. "click": function () {
  8642. U.MD.D.I.openApplication(str, obj, info);
  8643. }
  8644. }
  8645. break;
  8646. case "mindNetwork": //好友打開
  8647. aTool = 7;
  8648. _iframe = $$("iframe", {
  8649. "webkitallowfullscreen": "",
  8650. "mozallowfullscreen": "",
  8651. "allowfullscreen": "",
  8652. "frameborder": "no",
  8653. "border": "0",
  8654. "scrolling ": "no",
  8655. "style": {
  8656. "cssText": "border:0; width:100%; height:100%;"
  8657. },
  8658. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8659. })
  8660. _box.appendChild(_iframe);
  8661. _box.appendChild(_jie);
  8662. _formdiv = new U.UF.UI.form(
  8663. "思維網格-" + _username,
  8664. _box, {
  8665. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8666. "style": {
  8667. "width": "90%",
  8668. "height": "90%",
  8669. "overflow": 'hidden'
  8670. },
  8671. "onresize": function () { }
  8672. }, {
  8673. closecallback: function () { }
  8674. }, {
  8675. "style": {
  8676. "height": "36px"
  8677. }
  8678. }).form; //創建窗體
  8679. _taskbar = {
  8680. "id": str + _formdiv.id,
  8681. "style": {
  8682. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8683. },
  8684. "name": "思維網格",
  8685. "forms": _formdiv,
  8686. "click": function () {
  8687. U.MD.D.I.openApplication(str, obj, info);
  8688. }
  8689. }
  8690. break;
  8691. case "courseDesign":
  8692. _iframe = $$("iframe", {
  8693. "webkitallowfullscreen": "",
  8694. "mozallowfullscreen": "",
  8695. "allowfullscreen": "",
  8696. "frameborder": "no",
  8697. "border": "0",
  8698. "scrolling ": "no",
  8699. "style": {
  8700. "cssText": "border:0; width:100%; height:100%;"
  8701. },
  8702. "src": "/course-design-vue"
  8703. })
  8704. _box.appendChild(_iframe);
  8705. _box.appendChild(_jie);
  8706. _formdiv = new U.UF.UI.form(
  8707. "項目設計-" + _username,
  8708. _box, {
  8709. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8710. "style": {
  8711. "width": "90%",
  8712. "height": "90%",
  8713. "overflow": 'hidden'
  8714. },
  8715. "onresize": function () { }
  8716. }, {
  8717. closecallback: function () { }
  8718. }, {
  8719. "style": {
  8720. "height": "36px"
  8721. }
  8722. }).form; //創建窗體
  8723. _taskbar = {
  8724. "id": str + _formdiv.id,
  8725. "style": {
  8726. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8727. },
  8728. "name": "項目設計",
  8729. "forms": _formdiv,
  8730. "click": function () {
  8731. U.MD.D.I.openApplication(str, obj, info);
  8732. }
  8733. }
  8734. break;
  8735. }
  8736. const script1 = document.createElement("script");
  8737. script1.type = "text/javascript";
  8738. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8739. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8740. const script2 = document.createElement("script");
  8741. script2.type = "text/javascript";
  8742. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8743. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8744. const script3 = document.createElement("script");
  8745. script3.type = "text/javascript";
  8746. script3.charset = "UTF-8";
  8747. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8748. const script4 = document.createElement("script");
  8749. script4.type = "text/javascript";
  8750. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8751. script4.src = window.origin + "/js/Common/jietu2E.js";
  8752. if (_iframe) {
  8753. if (str == 'doc') {
  8754. _iframe = _formdiv.querySelector('iframe')
  8755. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8756. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8757. _iframe.contentWindow.document.body.appendChild(script1);
  8758. _iframe.contentWindow.document.body.appendChild(script2);
  8759. // _iframe.contentWindow.document.body.appendChild(script3);
  8760. _iframe.contentWindow.document.body.appendChild(script4);
  8761. })
  8762. if (onloadListener) {
  8763. _iframe.contentDocument.location.reload()
  8764. } else {
  8765. _iframe.contentDocument.location.reload()
  8766. }
  8767. } else if (str == 'courseDesign') {
  8768. U.UF.DL.iframeLoad(_iframe, function () {
  8769. // _iframe.contentWindow.U.MD.O.W.load();
  8770. // _iframe.contentWindow.document.body.appendChild(script1);
  8771. _iframe.contentWindow.document.body.appendChild(script2);
  8772. _iframe.contentWindow.document.body.appendChild(script4);
  8773. })
  8774. } else if (str == 'mind') {
  8775. _iframe = _formdiv.querySelector('iframe')
  8776. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8777. //
  8778. _iframe.contentWindow.document.body.appendChild(script1);
  8779. _iframe.contentWindow.document.body.appendChild(script2);
  8780. _iframe.contentWindow.document.body.appendChild(script4);
  8781. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8782. })
  8783. if (onloadListener) {
  8784. _iframe.contentDocument.location.reload()
  8785. } else {
  8786. _iframe.contentDocument.location.reload()
  8787. }
  8788. } else if (str == 'whiteboard') {
  8789. _iframe = _formdiv.querySelector('iframe')
  8790. let onloadListener = _iframe.onload = () => {
  8791. _iframe.contentWindow.document.body.appendChild(script1);
  8792. _iframe.contentWindow.document.body.appendChild(script2);
  8793. _iframe.contentWindow.document.body.appendChild(script4);
  8794. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8795. };
  8796. // if (onloadListener) {
  8797. // try {
  8798. // _iframe.src += "?cocorobo="+new Date().getTime()
  8799. // _iframe.contentWindow.document.location.reload()
  8800. // } catch (error) {
  8801. // }
  8802. // } else {
  8803. // _iframe.contentDocument.location.reload()
  8804. // }
  8805. } else {
  8806. _iframe.onload = () => {
  8807. _iframe.contentWindow.document.body.appendChild(script1);
  8808. _iframe.contentWindow.document.body.appendChild(script2);
  8809. // _iframe.contentWindow.document.body.appendChild(script3);
  8810. _iframe.contentWindow.document.body.appendChild(script4);
  8811. };
  8812. }
  8813. _jie.onclick = async () => {
  8814. let text = ''
  8815. if (aTool == 1) {
  8816. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8817. } else if (aTool == 6) {
  8818. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8819. } else if (aTool == 3) {
  8820. text = await U.MD.D.I.getEditorContent(_iframe);
  8821. }
  8822. _loading.style.display = 'flex'
  8823. console.log(_loading);
  8824. var _ajs = _iframe.contentWindow.document.createElement("script");
  8825. _ajs.type = "text/javascript";
  8826. _ajs.innerHTML =
  8827. // 'console.log(' + _loading + ');\n' +
  8828. 'var _js = document.createElement("script");\n' +
  8829. '_js.type="text/javascript";\n' +
  8830. '_js.charset="UTF-8";\n' +
  8831. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8832. "_js.onload = function(){\n" +
  8833. ' var a = document.getElementsByTagName("img")\n' +
  8834. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8835. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8836. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8837. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8838. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8839. "beforeUpload_shishi(file," +
  8840. "'" +
  8841. _userid +
  8842. "'" +
  8843. ", " +
  8844. "'" +
  8845. _cid +
  8846. "'" +
  8847. ", " +
  8848. "'" +
  8849. _stage +
  8850. "'" +
  8851. ", " +
  8852. "'" +
  8853. _task +
  8854. "'" +
  8855. ", " +
  8856. "'" +
  8857. _tool +
  8858. "'" +
  8859. ", " +
  8860. "'" +
  8861. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8862. "'" +
  8863. ", " +
  8864. "'" +
  8865. aTool +
  8866. "'" +
  8867. ", " +
  8868. "`" +
  8869. text +
  8870. "`" +
  8871. ")\n" +
  8872. " });\n" +
  8873. "}\n" +
  8874. "document.head.appendChild(_js);\n";
  8875. _iframe.contentWindow.document.head.appendChild(_ajs);
  8876. }
  8877. }
  8878. }
  8879. U.MD.D.I.getEditorContent = function (iframe) {
  8880. return new Promise((resolve, reject) => {
  8881. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8882. console.log(content);
  8883. resolve(content)
  8884. });
  8885. });
  8886. }
  8887. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8888. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8889. // if (res.value[0].length > 0) {
  8890. // // resolve(res.value[0][0].text);
  8891. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8892. // $(fileInput).val('');
  8893. // });
  8894. // }
  8895. // }, [], { "type": "GET", "withCredentials": true });
  8896. var xmlhttp;
  8897. var Mac, Sn, DeviceId
  8898. if (window.XMLHttpRequest) {
  8899. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  8900. xmlhttp = new XMLHttpRequest();
  8901. }
  8902. else {
  8903. // IE6, IE5 瀏覽器執行代碼
  8904. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8905. }
  8906. xmlhttp.onreadystatechange = function () {
  8907. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8908. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8909. // resolve(res.value[0][0].text);
  8910. if (type == '2') {
  8911. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8912. } else if (type == '3') {
  8913. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8914. }
  8915. } else {
  8916. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8917. }
  8918. }
  8919. }
  8920. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8921. xmlhttp.send();
  8922. }
  8923. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8924. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8925. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8926. _userinfo = US.userInfo, //登錄用戶信息
  8927. _userid = US.userInfo.userid //登錄用戶id
  8928. let _iframe;
  8929. let _cid = cid,
  8930. _stage = stage,
  8931. _task = task,
  8932. _tool = tool;
  8933. var _jie = $$("div", {
  8934. "style": {
  8935. "position": "absolute",
  8936. "bottom": "50px",
  8937. "right": "50px",
  8938. "zIndex": "9999",
  8939. "backgroundColor": "#2268bc",
  8940. "color": "#fff",
  8941. "padding": "12px 20px",
  8942. "cursor": "pointer",
  8943. "borderRadius": "4px",
  8944. },
  8945. "innerHTML": "確認並提交"
  8946. })
  8947. let aTool = ''
  8948. let _loading = document.createElement('div')
  8949. _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;"
  8950. // _loading.id = "";
  8951. let _lchild = document.createElement('div')
  8952. let _limg = document.createElement('img')
  8953. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8954. _limg.style = "width: 26px;margin-right: 10px;"
  8955. _lchild.appendChild(_limg)
  8956. let _lspan = document.createElement('span')
  8957. _lspan.innerHTML = "上傳中..."
  8958. _lchild.appendChild(_lspan)
  8959. _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%);"
  8960. _loading.appendChild(_lchild)
  8961. var _box = $$('div', {
  8962. "style": {
  8963. "position": "relative",
  8964. "width": "100%",
  8965. "height": "100%",
  8966. },
  8967. })
  8968. _box.appendChild(_loading)
  8969. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8970. switch (str) {
  8971. case "whiteboard":
  8972. aTool = 1;
  8973. _iframe = $$("iframe", {
  8974. "frameborder": "no",
  8975. "border": "0",
  8976. "scrolling ": "no",
  8977. "style": {
  8978. "cssText": "border:0;width:100%;height:100%"
  8979. },
  8980. "src": "https://iwb.cocorobo.hk/"
  8981. })
  8982. _box.appendChild(_iframe);
  8983. _box.appendChild(_jie);
  8984. _formdiv = new U.UF.UI.form(
  8985. "電子白板",
  8986. _box, {
  8987. "id": "whiteboards" + cid + stage + task + tool,
  8988. "style": {
  8989. "width": "90%",
  8990. "height": "90%",
  8991. "overflow": 'hidden'
  8992. },
  8993. "onresize": function () { }
  8994. }, {
  8995. closecallback: function () { }
  8996. }, {
  8997. "style": {
  8998. "height": "36px"
  8999. }
  9000. }).form; //創建窗體
  9001. _taskbar = {
  9002. "id": str + _formdiv.id,
  9003. "style": {
  9004. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9005. },
  9006. "name": "電子白板",
  9007. "forms": _formdiv,
  9008. "click": function () {
  9009. U.MD.D.I.openApplication(str, obj, info);
  9010. }
  9011. }
  9012. break;
  9013. case "mind":
  9014. aTool = 3;
  9015. _iframe = $$("iframe", {
  9016. "frameborder": "no",
  9017. "border": "0",
  9018. "scrolling ": "no",
  9019. "style": {
  9020. "cssText": "border:0;width:100%;height:100%"
  9021. },
  9022. "src": "/kityminder-editor/dist/index.html"
  9023. });
  9024. _box.appendChild(_iframe);
  9025. _box.appendChild(_jie);
  9026. _formdiv = new U.UF.UI.form(
  9027. "思維導圖",
  9028. _box, { //"/jsmind/example/demo.html"
  9029. "id": "minds" + cid + stage + task + tool,
  9030. "style": {
  9031. "width": "90%",
  9032. "height": "90%",
  9033. "overflow": 'hidden'
  9034. },
  9035. "onresize": function () { }
  9036. }, {
  9037. closecallback: function () { }
  9038. }, {
  9039. "style": {
  9040. "height": "36px"
  9041. }
  9042. }).form; //創建窗體
  9043. _taskbar = {
  9044. "id": str + _formdiv.id,
  9045. "style": {
  9046. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9047. },
  9048. "name": "思維導圖",
  9049. "forms": _formdiv,
  9050. "click": function () {
  9051. U.MD.D.I.openApplication(str, obj, info);
  9052. }
  9053. }
  9054. break;
  9055. case "doc":
  9056. aTool = 6;
  9057. _iframe = $$("iframe", {
  9058. "frameborder": "no",
  9059. "border": "0",
  9060. "scrolling ": "no",
  9061. "style": {
  9062. "cssText": "border:0;width:100%;height:100%"
  9063. },
  9064. "src": "/Office/Word/WordEditArea.htm"
  9065. })
  9066. _box.appendChild(_iframe);
  9067. _box.appendChild(_jie);
  9068. _formdiv = new U.UF.UI.form(
  9069. "協同文檔",
  9070. _box, {
  9071. "id": "docs" + cid + stage + task + tool,
  9072. "style": {
  9073. "width": "90%",
  9074. "height": "90%",
  9075. "overflow": 'hidden'
  9076. },
  9077. "onresize": function () { }
  9078. }, {
  9079. closecallback: function () { }
  9080. }, {
  9081. "style": {
  9082. "height": "36px"
  9083. }
  9084. }).form; //創建窗體
  9085. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9086. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9087. })
  9088. _taskbar = {
  9089. "id": str + _formdiv.id,
  9090. "style": {
  9091. "backgroundImage": "url(/img/icon/doc.png)"
  9092. },
  9093. "name": "協同文檔",
  9094. "forms": _formdiv,
  9095. "click": function () {
  9096. U.MD.D.I.openApplication(str, obj, info);
  9097. }
  9098. }
  9099. break;
  9100. }
  9101. const script1 = document.createElement("script");
  9102. script1.type = "text/javascript";
  9103. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9104. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9105. const script2 = document.createElement("script");
  9106. script2.type = "text/javascript";
  9107. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9108. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9109. const script3 = document.createElement("script");
  9110. script3.type = "text/javascript";
  9111. script3.charset = "UTF-8";
  9112. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9113. const script4 = document.createElement("script");
  9114. script4.type = "text/javascript";
  9115. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9116. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9117. if (_iframe) {
  9118. if (str == 'doc') {
  9119. _iframe = _formdiv.querySelector('iframe')
  9120. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9121. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9122. _iframe.contentWindow.document.body.appendChild(script1);
  9123. _iframe.contentWindow.document.body.appendChild(script2);
  9124. // _iframe.contentWindow.document.body.appendChild(script3);
  9125. _iframe.contentWindow.document.body.appendChild(script4);
  9126. })
  9127. if (onloadListener) {
  9128. _iframe.contentDocument.location.reload()
  9129. } else {
  9130. _iframe.contentDocument.location.reload()
  9131. }
  9132. } else if (str == 'mind') {
  9133. _iframe = _formdiv.querySelector('iframe')
  9134. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9135. _iframe.contentWindow.document.body.appendChild(script1);
  9136. _iframe.contentWindow.document.body.appendChild(script2);
  9137. _iframe.contentWindow.document.body.appendChild(script4);
  9138. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9139. })
  9140. if (onloadListener) {
  9141. _iframe.contentDocument.location.reload()
  9142. } else {
  9143. _iframe.contentDocument.location.reload()
  9144. }
  9145. } else {
  9146. _iframe.onload = () => {
  9147. _iframe.contentWindow.document.body.appendChild(script1);
  9148. _iframe.contentWindow.document.body.appendChild(script2);
  9149. // _iframe.contentWindow.document.body.appendChild(script3);
  9150. _iframe.contentWindow.document.body.appendChild(script4);
  9151. };
  9152. }
  9153. _jie.onclick = async () => {
  9154. let text = ''
  9155. if (aTool == 6) {
  9156. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9157. } else if (aTool == 3) {
  9158. text = await U.MD.D.I.getEditorContent(_iframe);
  9159. }
  9160. _loading.style.display = 'flex'
  9161. console.log(_loading);
  9162. var _ajs = _iframe.contentWindow.document.createElement("script");
  9163. _ajs.type = "text/javascript";
  9164. _ajs.innerHTML =
  9165. // 'console.log(' + _loading + ');\n' +
  9166. 'var _js = document.createElement("script");\n' +
  9167. '_js.type="text/javascript";\n' +
  9168. '_js.charset="UTF-8";\n' +
  9169. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9170. "_js.onload = function(){\n" +
  9171. ' var a = document.getElementsByTagName("img")\n' +
  9172. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9173. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9174. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9175. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9176. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9177. "beforeUpload_shishi(file," +
  9178. "'" +
  9179. _userid +
  9180. "'" +
  9181. ", " +
  9182. "'" +
  9183. _cid +
  9184. "'" +
  9185. ", " +
  9186. "'" +
  9187. _stage +
  9188. "'" +
  9189. ", " +
  9190. "'" +
  9191. _task +
  9192. "'" +
  9193. ", " +
  9194. "'" +
  9195. _tool +
  9196. "'" +
  9197. ", " +
  9198. "'" +
  9199. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9200. "'" +
  9201. ", " +
  9202. "'" +
  9203. aTool +
  9204. "'" +
  9205. ", " +
  9206. "`" +
  9207. text +
  9208. "`" +
  9209. ")\n" +
  9210. " });\n" +
  9211. "}\n" +
  9212. "document.head.appendChild(_js);\n";
  9213. _iframe.contentWindow.document.head.appendChild(_ajs);
  9214. }
  9215. }
  9216. //U.MD.D.I.openClick(str);
  9217. //如果有任務欄信息
  9218. // if (_taskbar) {
  9219. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9220. // }
  9221. }
  9222. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9223. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9224. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9225. _userinfo = US.userInfo, //登錄用戶信息
  9226. _userid = US.userInfo.userid //登錄用戶id
  9227. let _iframe;
  9228. let _cid = cid,
  9229. _stage = stage,
  9230. _task = task,
  9231. _tool = tool;
  9232. var _jie = $$("div", {
  9233. "style": {
  9234. "position": "absolute",
  9235. "bottom": "50px",
  9236. "right": "50px",
  9237. "zIndex": "9999",
  9238. "backgroundColor": "#2268bc",
  9239. "color": "#fff",
  9240. "padding": "12px 20px",
  9241. "cursor": "pointer",
  9242. "borderRadius": "4px",
  9243. },
  9244. "innerHTML": "確認並提交"
  9245. })
  9246. let aTool = ''
  9247. let _loading = document.createElement('div')
  9248. _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;"
  9249. // _loading.id = "";
  9250. let _lchild = document.createElement('div')
  9251. let _limg = document.createElement('img')
  9252. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9253. _limg.style = "width: 26px;margin-right: 10px;"
  9254. _lchild.appendChild(_limg)
  9255. let _lspan = document.createElement('span')
  9256. _lspan.innerHTML = "上傳中..."
  9257. _lchild.appendChild(_lspan)
  9258. _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%);"
  9259. _loading.appendChild(_lchild)
  9260. var _box = $$('div', {
  9261. "style": {
  9262. "position": "relative",
  9263. "width": "100%",
  9264. "height": "100%",
  9265. },
  9266. })
  9267. _box.appendChild(_loading)
  9268. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9269. switch (str) {
  9270. case "whiteboard":
  9271. aTool = 1;
  9272. _iframe = $$("iframe", {
  9273. "frameborder": "no",
  9274. "border": "0",
  9275. "scrolling ": "no",
  9276. "style": {
  9277. "cssText": "border:0;width:100%;height:100%"
  9278. },
  9279. "src": "https://iwb.cocorobo.hk/"
  9280. })
  9281. _box.appendChild(_iframe);
  9282. _box.appendChild(_jie);
  9283. _formdiv = new U.UF.UI.form(
  9284. "電子白板",
  9285. _box, {
  9286. "id": "whiteboards" + cid + stage + task + tool,
  9287. "style": {
  9288. "width": "90%",
  9289. "height": "90%",
  9290. "overflow": 'hidden'
  9291. },
  9292. "onresize": function () { }
  9293. }, {
  9294. closecallback: function () { }
  9295. }, {
  9296. "style": {
  9297. "height": "36px"
  9298. }
  9299. }).form; //創建窗體
  9300. _taskbar = {
  9301. "id": str + _formdiv.id,
  9302. "style": {
  9303. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9304. },
  9305. "name": "電子白板",
  9306. "forms": _formdiv,
  9307. "click": function () {
  9308. U.MD.D.I.openApplication(str, obj, info);
  9309. }
  9310. }
  9311. break;
  9312. case "mind":
  9313. aTool = 3;
  9314. _iframe = $$("iframe", {
  9315. "frameborder": "no",
  9316. "border": "0",
  9317. "scrolling ": "no",
  9318. "style": {
  9319. "cssText": "border:0;width:100%;height:100%"
  9320. },
  9321. "src": "/kityminder-editor/dist/index.html"
  9322. });
  9323. _box.appendChild(_iframe);
  9324. _box.appendChild(_jie);
  9325. _formdiv = new U.UF.UI.form(
  9326. "思維導圖",
  9327. _box, { //"/jsmind/example/demo.html"
  9328. "id": "minds" + cid + stage + task + tool,
  9329. "style": {
  9330. "width": "90%",
  9331. "height": "90%",
  9332. "overflow": 'hidden'
  9333. },
  9334. "onresize": function () { }
  9335. }, {
  9336. closecallback: function () { }
  9337. }, {
  9338. "style": {
  9339. "height": "36px"
  9340. }
  9341. }).form; //創建窗體
  9342. _taskbar = {
  9343. "id": str + _formdiv.id,
  9344. "style": {
  9345. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9346. },
  9347. "name": "思維導圖",
  9348. "forms": _formdiv,
  9349. "click": function () {
  9350. U.MD.D.I.openApplication(str, obj, info);
  9351. }
  9352. }
  9353. break;
  9354. case "doc":
  9355. aTool = 6;
  9356. _iframe = $$("iframe", {
  9357. "frameborder": "no",
  9358. "border": "0",
  9359. "scrolling ": "no",
  9360. "style": {
  9361. "cssText": "border:0;width:100%;height:100%"
  9362. },
  9363. "src": "/Office/Word/WordEditArea.htm"
  9364. })
  9365. _box.appendChild(_iframe);
  9366. _box.appendChild(_jie);
  9367. _formdiv = new U.UF.UI.form(
  9368. "協同文檔",
  9369. _box, {
  9370. "id": "docs" + cid + stage + task + tool,
  9371. "style": {
  9372. "width": "90%",
  9373. "height": "90%",
  9374. "overflow": 'hidden'
  9375. },
  9376. "onresize": function () { }
  9377. }, {
  9378. closecallback: function () { }
  9379. }, {
  9380. "style": {
  9381. "height": "36px"
  9382. }
  9383. }).form; //創建窗體
  9384. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9385. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9386. })
  9387. _taskbar = {
  9388. "id": str + _formdiv.id,
  9389. "style": {
  9390. "backgroundImage": "url(/img/icon/doc.png)"
  9391. },
  9392. "name": "協同文檔",
  9393. "forms": _formdiv,
  9394. "click": function () {
  9395. U.MD.D.I.openApplication(str, obj, info);
  9396. }
  9397. }
  9398. break;
  9399. }
  9400. const script1 = document.createElement("script");
  9401. script1.type = "text/javascript";
  9402. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9403. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9404. const script2 = document.createElement("script");
  9405. script2.type = "text/javascript";
  9406. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9407. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9408. const script3 = document.createElement("script");
  9409. script3.type = "text/javascript";
  9410. script3.charset = "UTF-8";
  9411. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9412. const script4 = document.createElement("script");
  9413. script4.type = "text/javascript";
  9414. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9415. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  9416. if (_iframe) {
  9417. if (str == 'doc') {
  9418. _iframe = _formdiv.querySelector('iframe')
  9419. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9420. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9421. _iframe.contentWindow.document.body.appendChild(script1);
  9422. _iframe.contentWindow.document.body.appendChild(script2);
  9423. // _iframe.contentWindow.document.body.appendChild(script3);
  9424. _iframe.contentWindow.document.body.appendChild(script4);
  9425. })
  9426. if (onloadListener) {
  9427. _iframe.contentDocument.location.reload()
  9428. } else {
  9429. _iframe.contentDocument.location.reload()
  9430. }
  9431. } else if (str == 'mind') {
  9432. _iframe = _formdiv.querySelector('iframe')
  9433. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9434. _iframe.contentWindow.document.body.appendChild(script1);
  9435. _iframe.contentWindow.document.body.appendChild(script2);
  9436. _iframe.contentWindow.document.body.appendChild(script4);
  9437. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9438. })
  9439. if (onloadListener) {
  9440. _iframe.contentDocument.location.reload()
  9441. } else {
  9442. _iframe.contentDocument.location.reload()
  9443. }
  9444. } else {
  9445. _iframe.onload = () => {
  9446. _iframe.contentWindow.document.body.appendChild(script1);
  9447. _iframe.contentWindow.document.body.appendChild(script2);
  9448. // _iframe.contentWindow.document.body.appendChild(script3);
  9449. _iframe.contentWindow.document.body.appendChild(script4);
  9450. };
  9451. }
  9452. _jie.onclick = async () => {
  9453. let text = ''
  9454. if (aTool == 6) {
  9455. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9456. } else if (aTool == 3) {
  9457. text = await U.MD.D.I.getEditorContent(_iframe);
  9458. }
  9459. _loading.style.display = 'flex'
  9460. console.log(_loading);
  9461. var _ajs = _iframe.contentWindow.document.createElement("script");
  9462. _ajs.type = "text/javascript";
  9463. _ajs.innerHTML =
  9464. // 'console.log(' + _loading + ');\n' +
  9465. 'var _js = document.createElement("script");\n' +
  9466. '_js.type="text/javascript";\n' +
  9467. '_js.charset="UTF-8";\n' +
  9468. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9469. "_js.onload = function(){\n" +
  9470. ' var a = document.getElementsByTagName("img")\n' +
  9471. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9472. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9473. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9474. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9475. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9476. "beforeUpload_shishi(file," +
  9477. "'" +
  9478. _userid +
  9479. "'" +
  9480. ", " +
  9481. "'" +
  9482. _cid +
  9483. "'" +
  9484. ", " +
  9485. "'" +
  9486. _stage +
  9487. "'" +
  9488. ", " +
  9489. "'" +
  9490. _task +
  9491. "'" +
  9492. ", " +
  9493. "'" +
  9494. _tool +
  9495. "'" +
  9496. ", " +
  9497. "'" +
  9498. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9499. "'" +
  9500. ", " +
  9501. "'" +
  9502. aTool +
  9503. "'" +
  9504. ", " +
  9505. "`" +
  9506. text +
  9507. "`" +
  9508. ")\n" +
  9509. " });\n" +
  9510. "}\n" +
  9511. "document.head.appendChild(_js);\n";
  9512. _iframe.contentWindow.document.head.appendChild(_ajs);
  9513. }
  9514. }
  9515. //U.MD.D.I.openClick(str);
  9516. //如果有任務欄信息
  9517. // if (_taskbar) {
  9518. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9519. // }
  9520. }
  9521. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9522. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9523. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9524. _userinfo = US.userInfo, //登錄用戶信息
  9525. _userid = US.userInfo.userid //登錄用戶id
  9526. let _iframe;
  9527. let _cid = cid,
  9528. _stage = stage,
  9529. _task = task,
  9530. _tool = tool;
  9531. var _jie = $$("div", {
  9532. "style": {
  9533. "position": "absolute",
  9534. "bottom": "50px",
  9535. "right": "50px",
  9536. "zIndex": "9999",
  9537. "backgroundColor": "#2268bc",
  9538. "color": "#fff",
  9539. "padding": "12px 20px",
  9540. "cursor": "pointer",
  9541. "borderRadius": "4px",
  9542. },
  9543. "innerHTML": "上傳模板"
  9544. })
  9545. let aTool = ''
  9546. let _loading = document.createElement('div')
  9547. _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;"
  9548. // _loading.id = "";
  9549. let _lchild = document.createElement('div')
  9550. let _limg = document.createElement('img')
  9551. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9552. _limg.style = "width: 26px;margin-right: 10px;"
  9553. _lchild.appendChild(_limg)
  9554. let _lspan = document.createElement('span')
  9555. _lspan.innerHTML = "上傳中..."
  9556. _lchild.appendChild(_lspan)
  9557. _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%);"
  9558. _loading.appendChild(_lchild)
  9559. var _box = $$('div', {
  9560. "style": {
  9561. "position": "relative",
  9562. "width": "100%",
  9563. "height": "100%",
  9564. },
  9565. })
  9566. _box.appendChild(_loading)
  9567. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9568. switch (str) {
  9569. case "whiteboard":
  9570. aTool = 1;
  9571. _iframe = $$("iframe", {
  9572. "frameborder": "no",
  9573. "border": "0",
  9574. "scrolling ": "no",
  9575. "style": {
  9576. "cssText": "border:0;width:100%;height:100%"
  9577. },
  9578. "src": "https://iwb.cocorobo.hk/"
  9579. })
  9580. _box.appendChild(_iframe);
  9581. _box.appendChild(_jie);
  9582. _formdiv = new U.UF.UI.form(
  9583. "電子白板",
  9584. _box, {
  9585. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9586. "style": {
  9587. "width": "90%",
  9588. "height": "90%",
  9589. "overflow": 'hidden'
  9590. },
  9591. "onresize": function () { }
  9592. }, {
  9593. closecallback: function () { }
  9594. }, {
  9595. "style": {
  9596. "height": "36px"
  9597. }
  9598. }).form; //創建窗體
  9599. _taskbar = {
  9600. "id": str + _formdiv.id,
  9601. "style": {
  9602. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9603. },
  9604. "name": "電子白板",
  9605. "forms": _formdiv,
  9606. "click": function () {
  9607. U.MD.D.I.openApplication(str, obj, info);
  9608. }
  9609. }
  9610. break;
  9611. case "mind":
  9612. aTool = 3;
  9613. _iframe = $$("iframe", {
  9614. "frameborder": "no",
  9615. "border": "0",
  9616. "scrolling ": "no",
  9617. "style": {
  9618. "cssText": "border:0;width:100%;height:100%"
  9619. },
  9620. "src": "/kityminder-editor/dist/index.html"
  9621. });
  9622. _box.appendChild(_iframe);
  9623. _box.appendChild(_jie);
  9624. _formdiv = new U.UF.UI.form(
  9625. "思維導圖",
  9626. _box, { //"/jsmind/example/demo.html"
  9627. "id": "minds_Yu" + cid + stage + task + tool,
  9628. "style": {
  9629. "width": "90%",
  9630. "height": "90%",
  9631. "overflow": 'hidden'
  9632. },
  9633. "onresize": function () { }
  9634. }, {
  9635. closecallback: function () { }
  9636. }, {
  9637. "style": {
  9638. "height": "36px"
  9639. }
  9640. }).form; //創建窗體
  9641. _taskbar = {
  9642. "id": str + _formdiv.id,
  9643. "style": {
  9644. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9645. },
  9646. "name": "思維導圖",
  9647. "forms": _formdiv,
  9648. "click": function () {
  9649. U.MD.D.I.openApplication(str, obj, info);
  9650. }
  9651. }
  9652. break;
  9653. case "doc":
  9654. aTool = 6;
  9655. _iframe = $$("iframe", {
  9656. "frameborder": "no",
  9657. "border": "0",
  9658. "scrolling ": "no",
  9659. "style": {
  9660. "cssText": "border:0;width:100%;height:100%"
  9661. },
  9662. "src": "/Office/Word/WordEditArea.htm"
  9663. })
  9664. _box.appendChild(_iframe);
  9665. _box.appendChild(_jie);
  9666. _formdiv = new U.UF.UI.form(
  9667. "協同文檔",
  9668. _box, {
  9669. "id": "docs_Yu" + cid + stage + task + tool,
  9670. "style": {
  9671. "width": "90%",
  9672. "height": "90%",
  9673. "overflow": 'hidden'
  9674. },
  9675. "onresize": function () { }
  9676. }, {
  9677. closecallback: function () { }
  9678. }, {
  9679. "style": {
  9680. "height": "36px"
  9681. }
  9682. }).form; //創建窗體
  9683. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9684. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9685. })
  9686. _taskbar = {
  9687. "id": str + _formdiv.id,
  9688. "style": {
  9689. "backgroundImage": "url(/img/icon/doc.png)"
  9690. },
  9691. "name": "協同文檔",
  9692. "forms": _formdiv,
  9693. "click": function () {
  9694. U.MD.D.I.openApplication(str, obj, info);
  9695. }
  9696. }
  9697. break;
  9698. case "CocoPi":
  9699. aTool = 57;
  9700. _iframe = $$("iframe", {
  9701. "allowpaymentrequest": "allowpaymentrequest",
  9702. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9703. "webkitallowfullscreen": "",
  9704. "mozallowfullscreen": "",
  9705. "frameborder": "no",
  9706. "border": "0",
  9707. "scrolling ": "no",
  9708. "style": {
  9709. "cssText": "border:0;width:100%;height:100%"
  9710. },
  9711. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9712. })
  9713. _box.appendChild(_iframe);
  9714. _box.appendChild(_jie);
  9715. _formdiv = new U.UF.UI.form(
  9716. "CocoPi",
  9717. _box, {
  9718. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9719. "style": {
  9720. "width": "90%",
  9721. "height": "90%",
  9722. "overflow": 'hidden'
  9723. },
  9724. "onresize": function () { }
  9725. }, {
  9726. closecallback: function () { }
  9727. }, {
  9728. "style": {
  9729. "height": "36px"
  9730. }
  9731. }).form; //創建窗體
  9732. _taskbar = {
  9733. "id": str + _formdiv.id,
  9734. "style": {
  9735. "backgroundImage": "url(/img/icon/cocopi.png)"
  9736. },
  9737. "name": "CocoPi",
  9738. "forms": _formdiv,
  9739. "click": function () {
  9740. U.MD.D.I.openApplication(str, obj, info);
  9741. }
  9742. }
  9743. break;
  9744. }
  9745. if (_iframe) {
  9746. if (str == 'doc') {
  9747. _iframe = _formdiv.querySelector('iframe')
  9748. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9749. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9750. })
  9751. if (onloadListener) {
  9752. _iframe.contentDocument.location.reload()
  9753. } else {
  9754. _iframe.contentDocument.location.reload()
  9755. }
  9756. } else if (str == 'mind') {
  9757. _iframe = _formdiv.querySelector('iframe')
  9758. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9759. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9760. })
  9761. if (onloadListener) {
  9762. _iframe.contentDocument.location.reload()
  9763. } else {
  9764. _iframe.contentDocument.location.reload()
  9765. }
  9766. } else if (str == 'whiteboard') {
  9767. _iframe = _formdiv.querySelector('iframe')
  9768. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9769. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9770. })
  9771. // if (onloadListener) {
  9772. // try {
  9773. // _iframe.src += "?cocorobo="+new Date().getTime()
  9774. // _iframe.contentWindow.document.location.reload()
  9775. // } catch (error) {
  9776. // }
  9777. // } else {
  9778. // _iframe.contentDocument.location.reload()
  9779. // }
  9780. } else if (str == 'CocoPi') {
  9781. _iframe = _formdiv.querySelector('iframe')
  9782. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9783. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9784. })
  9785. if (onloadListener) {
  9786. _iframe.contentDocument.location.reload()
  9787. } else {
  9788. _iframe.contentDocument.location.reload()
  9789. }
  9790. } else {
  9791. _iframe.onload = () => { };
  9792. }
  9793. _jie.onclick = async () => {
  9794. let text = ''
  9795. let type = '2'
  9796. if (aTool == 1) {
  9797. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9798. type = '3'
  9799. } else if (aTool == 6) {
  9800. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9801. type = '1'
  9802. } else if (aTool == 3) {
  9803. text = await U.MD.D.I.getEditorContent(_iframe);
  9804. type = '2'
  9805. } else if (aTool == 57) {
  9806. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9807. type = '4'
  9808. }
  9809. _loading.style.display = 'flex'
  9810. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9811. }
  9812. }
  9813. //U.MD.D.I.openClick(str);
  9814. //如果有任務欄信息
  9815. // if (_taskbar) {
  9816. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9817. // }
  9818. }
  9819. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9820. var xmlhttp;
  9821. var Mac, Sn, DeviceId
  9822. if (window.XMLHttpRequest) {
  9823. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9824. xmlhttp = new XMLHttpRequest();
  9825. }
  9826. else {
  9827. // IE6, IE5 瀏覽器執行代碼
  9828. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9829. }
  9830. xmlhttp.onreadystatechange = function () {
  9831. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9832. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9833. // resolve(res.value[0][0].text);
  9834. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9835. }
  9836. }
  9837. }
  9838. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9839. xmlhttp.send();
  9840. }
  9841. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9842. var xmlhttp;
  9843. var Mac, Sn, DeviceId
  9844. if (window.XMLHttpRequest) {
  9845. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9846. xmlhttp = new XMLHttpRequest();
  9847. }
  9848. else {
  9849. // IE6, IE5 瀏覽器執行代碼
  9850. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9851. }
  9852. xmlhttp.onreadystatechange = function () {
  9853. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9854. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9855. // resolve(res.value[0][0].text);
  9856. if (type == '2') {
  9857. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9858. } else if (type == '3') {
  9859. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9860. } else if (type == '4') {
  9861. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9862. }
  9863. } else {
  9864. if (type == '2') {
  9865. iframe.contentWindow.editor.minder.importData('json', '')
  9866. } else if (type == '3') {
  9867. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9868. } else if (type == '4') {
  9869. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9870. }
  9871. }
  9872. }
  9873. }
  9874. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9875. xmlhttp.send();
  9876. }
  9877. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9878. var xmlhttp;
  9879. var Mac, Sn, DeviceId
  9880. if (window.XMLHttpRequest) {
  9881. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9882. xmlhttp = new XMLHttpRequest();
  9883. }
  9884. else {
  9885. // IE6, IE5 瀏覽器執行代碼
  9886. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9887. }
  9888. xmlhttp.onreadystatechange = function () {
  9889. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9890. if (xmlhttp.response) {
  9891. // resolve(res.value[0][0].text);
  9892. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9893. // $(fileInput).val('');
  9894. // });
  9895. span.innerHTML = '上傳成功'
  9896. setTimeout(() => {
  9897. loading.style.display = 'none'
  9898. }, 1000);
  9899. }
  9900. }
  9901. }
  9902. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9903. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9904. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9905. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9906. // 設置請求頭,表示請求體的編碼格式
  9907. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9908. // 設置請求體,使用url-encoded格式的數據
  9909. }
  9910. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9911. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9912. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9913. _userinfo = US.userInfo, //登錄用戶信息
  9914. _userid = US.userInfo.userid //登錄用戶id
  9915. let _iframe;
  9916. let _cid = cid,
  9917. _stage = stage,
  9918. _task = task,
  9919. _tool = tool;
  9920. var _jie = $$("div", {
  9921. "style": {
  9922. "position": "absolute",
  9923. "bottom": "50px",
  9924. "right": "50px",
  9925. "zIndex": "9999",
  9926. "backgroundColor": "#2268bc",
  9927. "color": "#fff",
  9928. "padding": "12px 20px",
  9929. "cursor": "pointer",
  9930. "borderRadius": "4px",
  9931. },
  9932. "innerHTML": "提交作業"
  9933. })
  9934. let aTool = ''
  9935. let _loading = document.createElement('div')
  9936. _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;"
  9937. // _loading.id = "";
  9938. let _lchild = document.createElement('div')
  9939. let _limg = document.createElement('img')
  9940. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9941. _limg.style = "width: 26px;margin-right: 10px;"
  9942. _lchild.appendChild(_limg)
  9943. let _lspan = document.createElement('span')
  9944. _lspan.innerHTML = "上傳中..."
  9945. _lchild.appendChild(_lspan)
  9946. _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%);"
  9947. _loading.appendChild(_lchild)
  9948. var _box = $$('div', {
  9949. "style": {
  9950. "position": "relative",
  9951. "width": "100%",
  9952. "height": "100%",
  9953. },
  9954. })
  9955. _box.appendChild(_loading)
  9956. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9957. switch (str) {
  9958. case "CocoPi":
  9959. aTool = 57;
  9960. _iframe = $$("iframe", {
  9961. "allowpaymentrequest": "allowpaymentrequest",
  9962. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9963. "webkitallowfullscreen": "",
  9964. "mozallowfullscreen": "",
  9965. "frameborder": "no",
  9966. "border": "0",
  9967. "scrolling ": "no",
  9968. "style": {
  9969. "cssText": "border:0;width:100%;height:100%"
  9970. },
  9971. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9972. })
  9973. _box.appendChild(_iframe);
  9974. _box.appendChild(_jie);
  9975. _formdiv = new U.UF.UI.form(
  9976. "CocoPi",
  9977. _box, {
  9978. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9979. "style": {
  9980. "width": "90%",
  9981. "height": "90%",
  9982. "overflow": 'hidden'
  9983. },
  9984. "onresize": function () { }
  9985. }, {
  9986. closecallback: function () { }
  9987. }, {
  9988. "style": {
  9989. "height": "36px"
  9990. }
  9991. }).form; //創建窗體
  9992. _taskbar = {
  9993. "id": str + _formdiv.id,
  9994. "style": {
  9995. "backgroundImage": "url(/img/icon/cocopi.png)"
  9996. },
  9997. "name": "CocoPi",
  9998. "forms": _formdiv,
  9999. "click": function () {
  10000. U.MD.D.I.openApplication(str, obj, info);
  10001. }
  10002. }
  10003. break;
  10004. }
  10005. if (_iframe) {
  10006. if (str == 'CocoPi') {
  10007. _iframe = _formdiv.querySelector('iframe')
  10008. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10009. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10010. })
  10011. if (onloadListener) {
  10012. _iframe.contentDocument.location.reload()
  10013. } else {
  10014. _iframe.contentDocument.location.reload()
  10015. }
  10016. }
  10017. _jie.onclick = async () => {
  10018. let text = ''
  10019. if (aTool == 57) {
  10020. text = _iframe.contentWindow.getLoadXmlStr()
  10021. }
  10022. _loading.style.display = 'flex'
  10023. console.log(_loading);
  10024. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10025. _loading.style.display = 'none'
  10026. let _div = document.createElement('div')
  10027. _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;"
  10028. let _inner = document.createElement('div')
  10029. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10030. _inner.innerHTML = "上傳成功"
  10031. _div.appendChild(_inner)
  10032. _iframe.contentWindow.window.document.body.appendChild(_div)
  10033. _div.onclick = () => {
  10034. _iframe.contentWindow.window.document.body.removeChild(_div)
  10035. }
  10036. setTimeout(() => {
  10037. _iframe.contentWindow.window.document.body.removeChild(_div)
  10038. }, 1000);
  10039. }, [], { "type": "POST", "withCredentials": true });
  10040. }
  10041. }
  10042. }
  10043. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10044. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10045. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10046. _userid = student.userid, //登錄用戶id
  10047. _username = student.student //用戶名字
  10048. let _iframe;
  10049. let _cid = cid,
  10050. _stage = stage,
  10051. _task = task,
  10052. _tool = tool;
  10053. var _jie = $$("div", {
  10054. "style": {
  10055. "position": "absolute",
  10056. "bottom": "50px",
  10057. "right": "50px",
  10058. "zIndex": "9999",
  10059. "backgroundColor": "#2268bc",
  10060. "color": "#fff",
  10061. "padding": "12px 20px",
  10062. "cursor": "pointer",
  10063. "borderRadius": "4px",
  10064. },
  10065. "innerHTML": "提交作業"
  10066. })
  10067. let aTool = ''
  10068. let _loading = document.createElement('div')
  10069. _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;"
  10070. // _loading.id = "";
  10071. let _lchild = document.createElement('div')
  10072. let _limg = document.createElement('img')
  10073. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10074. _limg.style = "width: 26px;margin-right: 10px;"
  10075. _lchild.appendChild(_limg)
  10076. let _lspan = document.createElement('span')
  10077. _lspan.innerHTML = "上傳中..."
  10078. _lchild.appendChild(_lspan)
  10079. _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%);"
  10080. _loading.appendChild(_lchild)
  10081. var _box = $$('div', {
  10082. "style": {
  10083. "position": "relative",
  10084. "width": "100%",
  10085. "height": "100%",
  10086. },
  10087. })
  10088. _box.appendChild(_loading)
  10089. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10090. switch (str) {
  10091. case "CocoPi":
  10092. aTool = 57;
  10093. _iframe = $$("iframe", {
  10094. "allowpaymentrequest": "allowpaymentrequest",
  10095. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10096. "webkitallowfullscreen": "",
  10097. "mozallowfullscreen": "",
  10098. "frameborder": "no",
  10099. "border": "0",
  10100. "scrolling ": "no",
  10101. "style": {
  10102. "cssText": "border:0;width:100%;height:100%"
  10103. },
  10104. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10105. })
  10106. _box.appendChild(_iframe);
  10107. _box.appendChild(_jie);
  10108. _formdiv = new U.UF.UI.form(
  10109. "CocoPi-" + _username,
  10110. _box, {
  10111. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10112. "style": {
  10113. "width": "90%",
  10114. "height": "90%",
  10115. "overflow": 'hidden'
  10116. },
  10117. "onresize": function () { }
  10118. }, {
  10119. closecallback: function () { }
  10120. }, {
  10121. "style": {
  10122. "height": "36px"
  10123. }
  10124. }).form; //創建窗體
  10125. _taskbar = {
  10126. "id": str + _formdiv.id,
  10127. "style": {
  10128. "backgroundImage": "url(/img/icon/cocopi.png)"
  10129. },
  10130. "name": "CocoPi",
  10131. "forms": _formdiv,
  10132. "click": function () {
  10133. U.MD.D.I.openApplication(str, obj, info);
  10134. }
  10135. }
  10136. break;
  10137. }
  10138. if (_iframe) {
  10139. if (str == 'CocoPi') {
  10140. _iframe = _formdiv.querySelector('iframe')
  10141. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10142. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10143. })
  10144. if (onloadListener) {
  10145. _iframe.contentDocument.location.reload()
  10146. } else {
  10147. _iframe.contentDocument.location.reload()
  10148. }
  10149. }
  10150. _jie.onclick = async () => {
  10151. let text = ''
  10152. if (aTool == 57) {
  10153. text = _iframe.contentWindow.getLoadXmlStr()
  10154. }
  10155. _loading.style.display = 'flex'
  10156. console.log(_loading);
  10157. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10158. _loading.style.display = 'none'
  10159. let _div = document.createElement('div')
  10160. _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;"
  10161. let _inner = document.createElement('div')
  10162. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10163. _inner.innerHTML = "上傳成功"
  10164. _div.appendChild(_inner)
  10165. _iframe.contentWindow.window.document.body.appendChild(_div)
  10166. _div.onclick = () => {
  10167. _iframe.contentWindow.window.document.body.removeChild(_div)
  10168. }
  10169. setTimeout(() => {
  10170. _iframe.contentWindow.window.document.body.removeChild(_div)
  10171. }, 1000);
  10172. }, [], { "type": "POST", "withCredentials": true });
  10173. }
  10174. }
  10175. }
  10176. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10177. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10178. if (res.value[0].length > 0) {
  10179. if (atool == 57) {
  10180. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10181. }
  10182. } else {
  10183. if (atool == 57) {
  10184. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10185. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10186. }
  10187. }
  10188. }, [], { "type": "POST", "withCredentials": true });
  10189. }