DeskTop.js 712 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302
  1. /*
  2. 此處為桌面繫統啟動應用區域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面應用處理
  5. //判斷圖片是否在拖拽,如果是拖拽圖標的過程是不會打開圖片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教師桌面圖標的全局變量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //極簡模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教師桌面圖標的全局變量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "項目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的項目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "學習資料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例徵集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //鬆山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  418. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  435. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教師桌面圖標的全局變量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教師桌面圖標的全局變量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龍華中心小學教師桌面圖標的全局變量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院實小教師桌面圖標的全局變量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "評測看闆", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院實小教師桌面圖標的全局變量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小學教師桌面圖標的全局變量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小學學生桌面圖標的全局變量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. ];
  717. //hk
  718. U.MD.D.I.tycyteacherDeskIcon = [
  719. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  726. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  727. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  730. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  731. ];
  732. //hk
  733. U.MD.D.I.tycyStudentDeskIcon = [
  734. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  735. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  740. ];
  741. //hk
  742. U.MD.D.I.hkaceteacherDeskIcon = [
  743. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  744. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  745. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  746. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  747. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  748. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  749. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  750. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  751. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  752. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  753. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  754. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  755. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  756. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  757. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  758. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  759. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  760. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  761. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  762. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  763. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  764. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  765. ];
  766. //hk
  767. U.MD.D.I.hkaceStudentDeskIcon = [
  768. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  769. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  770. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  771. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  772. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  773. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. ];
  775. //香海正覺蓮社佛教正覺中學
  776. U.MD.D.I.hkZJLSteacherDeskIcon = [
  777. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  778. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  779. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  780. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  781. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  784. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  785. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  786. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  787. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  788. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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.hkZJLSStudentDeskIcon = [
  796. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  797. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  798. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  799. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //雲海
  802. U.MD.D.I.yunhaiTeacherDeskIcon = [
  803. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  810. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  811. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  812. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  813. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  814. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  815. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  816. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  817. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.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. //福田
  823. U.MD.D.I.heyuanTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  827. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  828. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  829. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  830. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  831. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  833. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  834. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  835. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  836. ];
  837. //福田
  838. U.MD.D.I.heyuanAdminDeskIcon = [
  839. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  840. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  841. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  842. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  843. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  844. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  845. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  846. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  847. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  848. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  849. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  850. ];
  851. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  852. U.MD.D.I.szherTeacherDeskIcon = [
  853. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  854. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  855. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  856. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  857. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  858. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  859. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  860. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  861. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  863. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  864. ];
  865. //dsei
  866. U.MD.D.I.dseiTeacherDeskIcon = [
  867. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  868. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  869. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  870. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  871. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  872. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  873. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  874. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  875. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  876. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  877. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  878. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  879. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  880. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  881. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  882. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  883. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  884. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  885. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  886. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  887. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  888. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  889. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  890. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  891. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  892. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  893. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  894. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  895. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  896. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  897. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  898. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  899. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  900. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  901. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  902. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  903. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  904. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  907. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  908. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  909. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  910. ];
  911. //dsei
  912. U.MD.D.I.dseiAdminDeskIcon = [
  913. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  914. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  915. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  916. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  917. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  918. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  919. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  920. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  921. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  922. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  923. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  924. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  925. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  926. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  927. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  928. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  929. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  930. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  931. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  932. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  933. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  934. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  935. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  936. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  937. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  938. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  939. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  940. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  941. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  942. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  943. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  944. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  945. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  946. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  947. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  948. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  949. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  950. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  951. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  952. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  953. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  954. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  955. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  956. ];
  957. //dsei
  958. U.MD.D.I.dseiStudentDeskIcon = [
  959. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  960. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  961. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  962. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  965. ];
  966. //未來教育基地
  967. U.MD.D.I.szjkyTeacherDeskIcon = [
  968. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  969. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  970. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  971. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  972. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  973. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  974. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  975. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  976. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  977. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  978. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  979. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  980. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  981. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  982. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  983. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  984. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  985. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  986. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  987. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  988. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  989. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  990. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  991. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  992. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  993. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  994. ];
  995. //未來教育基地
  996. U.MD.D.I.szjkyAdminDeskIcon = [
  997. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  998. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  999. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1000. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1001. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1002. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1003. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1004. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1005. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1006. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1007. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1008. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1009. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1010. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1013. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1014. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1016. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1017. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1018. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1019. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1020. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1021. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1022. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1023. ];
  1024. //未來教育基地
  1025. U.MD.D.I.szjkyStudentDeskIcon = [
  1026. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1031. ];
  1032. //成華教育局
  1033. U.MD.D.I.chjyjTeacherDeskIcon = [
  1034. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1035. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1039. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1040. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1041. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1042. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1043. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1044. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1045. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1046. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1048. ];
  1049. //成華教育局chjyj
  1050. U.MD.D.I.chjyjAdminDeskIcon = [
  1051. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1052. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1056. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1057. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1058. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1059. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1060. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1061. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1062. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1063. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1064. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1065. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1066. ];
  1067. //成華教育局chjyj
  1068. U.MD.D.I.chjyjStudentDeskIcon = [
  1069. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1070. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1071. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1072. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. ];
  1074. //tpc
  1075. U.MD.D.I.tpcStudentDeskIcon = [
  1076. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1077. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1078. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1079. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1080. ];
  1081. //tpc
  1082. U.MD.D.I.tpcTeacherDeskIcon = [
  1083. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1084. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1085. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1086. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1087. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1088. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1089. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1090. ];
  1091. //tpc
  1092. U.MD.D.I.tpcAdminDeskIcon = [
  1093. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1094. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1099. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1100. ];
  1101. //THU-IOE
  1102. U.MD.D.I.thuioeTeacherDeskIcon = [
  1103. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1104. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1106. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1107. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1108. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1113. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1114. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1115. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1116. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1117. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1118. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1119. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1120. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1121. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1122. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1123. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1124. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1125. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1127. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1128. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1129. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1130. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1131. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1132. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1133. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1134. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1135. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1136. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1137. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1138. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1140. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1141. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1142. ];
  1143. //THU-IOE
  1144. U.MD.D.I.thuioeStudentDeskIcon = [
  1145. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1146. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1147. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1148. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1149. ];
  1150. //jccssyl
  1151. U.MD.D.I.jccssylTeacherDeskIcon = [
  1152. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1153. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1154. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1155. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1156. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1157. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1158. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1159. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1160. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1161. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1162. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1163. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1164. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1165. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1166. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1167. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1168. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1169. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1170. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1171. ];
  1172. //jccssyl
  1173. U.MD.D.I.jccssylStudentDeskIcon = [
  1174. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1175. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1176. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1177. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1178. ];
  1179. //cale
  1180. U.MD.D.I.caleTeacherDeskIcon = [
  1181. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1182. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1183. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1184. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1185. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1186. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1187. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1188. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1189. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1190. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1191. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1192. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1194. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1195. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1196. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1197. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1198. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1199. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1200. ];
  1201. //cale
  1202. U.MD.D.I.caleStudentDeskIcon = [
  1203. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1210. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1211. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1212. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.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": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1218. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1219. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1220. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1221. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1222. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1223. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1224. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1225. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1226. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1227. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1228. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1229. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1230. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1231. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1232. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1233. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1234. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1235. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1236. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1237. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1238. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1239. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1240. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1241. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1242. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1243. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1244. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1245. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1246. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1247. ];
  1248. //lqwmsgzs
  1249. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1250. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1251. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1252. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. ];
  1255. //鹽田區幼兒園
  1256. U.MD.D.I.ytyTeacherDeskIcon = [
  1257. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1258. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1259. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1261. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1262. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1267. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1269. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. ];
  1271. //鹽田區幼兒園
  1272. U.MD.D.I.ytyStudentDeskIcon = [
  1273. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1274. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1275. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1279. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1280. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1284. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1285. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1286. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1289. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1290. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1291. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1295. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1296. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1297. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1298. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1299. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1300. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1301. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiAdminDeskIcon = [
  1305. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiStudentDeskIcon = [
  1331. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1332. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1335. ];
  1336. //cocobiz
  1337. U.MD.D.I.cocobizteacherDeskIcon = [
  1338. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1339. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1340. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1341. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1342. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1345. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1346. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1347. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1348. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1349. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1350. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1351. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1354. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1355. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1356. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1357. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1358. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1359. ];
  1360. //cocobiz
  1361. U.MD.D.I.cocobizStudentDeskIcon = [
  1362. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1364. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1365. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1366. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1367. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1368. ];
  1369. //xxzjky
  1370. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1371. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1372. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1374. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1375. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1376. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1377. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1378. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1379. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1380. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1381. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1382. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1383. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1384. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1385. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1388. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1390. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1391. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1392. ];
  1393. //xxzjky
  1394. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1395. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1399. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1400. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1401. ];
  1402. //nsfx
  1403. U.MD.D.I.nsfxTeacherDeskIcon = [
  1404. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1405. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1406. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1407. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1408. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1411. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1412. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1413. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1414. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1415. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1416. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1417. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1418. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1419. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1420. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1421. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1422. ];
  1423. //nsfx
  1424. U.MD.D.I.nsfxStudentDeskIcon = [
  1425. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1426. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1427. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1428. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1429. ];
  1430. //stia
  1431. U.MD.D.I.stiaTeacherDeskIcon = [
  1432. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1433. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1434. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1435. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1436. // { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1439. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. // { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1441. // { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1442. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1443. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1445. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1446. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1447. ];
  1448. //stia
  1449. U.MD.D.I.stiaStudentDeskIcon = [
  1450. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1451. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1452. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1453. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1454. ];
  1455. //szdjg
  1456. U.MD.D.I.szdjgTeacherDeskIcon = [
  1457. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1458. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1459. ];
  1460. //szdjg
  1461. U.MD.D.I.szdjgStudentDeskIcon = [
  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. //010607
  1468. U.MD.D.I.x010607TeacherDeskIcon = [
  1469. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1477. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1478. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1480. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1481. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1484. ];
  1485. //010607
  1486. U.MD.D.I.x010607StudentDeskIcon = [
  1487. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //010608
  1493. U.MD.D.I.x010608TeacherDeskIcon = [
  1494. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1497. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1498. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1499. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1500. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1501. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1502. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1503. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1504. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1505. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1506. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1507. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1508. ];
  1509. //010608
  1510. U.MD.D.I.x010608StudentDeskIcon = [
  1511. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1514. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1515. ];
  1516. //xhly
  1517. U.MD.D.I.xhlyTeacherDeskIcon = [
  1518. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1519. ];
  1520. //010608
  1521. U.MD.D.I.xhlyStudentDeskIcon = [
  1522. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. ];
  1524. //北師大
  1525. U.MD.D.I.BSDNSteacherDeskIcon = [
  1526. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1527. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1529. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1530. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1533. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1534. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1535. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1536. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1537. ];
  1538. //北師大
  1539. U.MD.D.I.BSDNSstudentDeskIcon = [
  1540. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1543. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. ];
  1545. //CUHK_EDU
  1546. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1547. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1550. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1551. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1554. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1555. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1557. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1558. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1561. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1562. ];
  1563. //CUHK_EDU
  1564. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1565. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1566. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1567. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1569. ];
  1570. //010503
  1571. U.MD.D.I.x010503TeacherDeskIcon = [
  1572. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1573. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1575. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1576. { "Name": "項目管理", "Url": "studentCourseS", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1580. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1581. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1582. ];
  1583. //010503
  1584. U.MD.D.I.x010503StudentDeskIcon = [
  1585. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1586. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1587. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1589. ];
  1590. //SPROUT Lab
  1591. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1592. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1593. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1595. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1596. { "Name": "項目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1599. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1600. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1601. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1602. ];
  1603. //SPROUT Lab
  1604. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1605. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1606. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1607. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1608. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1609. ];
  1610. //010204
  1611. U.MD.D.I.x010204TeacherDeskIcon = [
  1612. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1613. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. ];
  1615. //010204
  1616. U.MD.D.I.x010204StudentDeskIcon = [
  1617. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1618. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1619. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1620. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1621. ];
  1622. //trail
  1623. U.MD.D.I.trailTeacherDeskIcon = [
  1624. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1625. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1627. ];
  1628. //trail
  1629. U.MD.D.I.trailStudentDeskIcon = [
  1630. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1631. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1632. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1633. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1634. ];
  1635. //trial
  1636. U.MD.D.I.trialTeacherDeskIcon = [
  1637. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1642. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1643. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1644. ];
  1645. //trial
  1646. U.MD.D.I.trialStudentDeskIcon = [
  1647. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1648. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1649. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1650. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1651. ];
  1652. //010504
  1653. U.MD.D.I.x010504TeacherDeskIcon = [
  1654. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1655. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1656. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1657. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1658. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1659. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1660. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1661. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1662. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1663. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1664. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1665. ];
  1666. //010504
  1667. U.MD.D.I.x010504StudentDeskIcon = [
  1668. { "Name": "項目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1671. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. ];
  1673. //010505
  1674. U.MD.D.I.x010505TeacherDeskIcon = [
  1675. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1676. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1677. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1678. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1679. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1680. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1681. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1682. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1683. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1684. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1685. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1686. ];
  1687. //010505
  1688. U.MD.D.I.x010505StudentDeskIcon = [
  1689. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1692. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. ];
  1694. //SCNUET
  1695. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1696. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1697. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1698. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1699. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1700. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1701. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1702. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1703. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1704. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1705. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1706. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1707. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1708. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1709. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1710. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1711. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1712. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1713. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1714. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1715. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1716. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1717. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1718. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1719. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1720. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1721. ];
  1722. //SCNUET
  1723. U.MD.D.I.SCNUETAdminDeskIcon = [
  1724. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1727. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1728. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1729. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1730. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1731. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1732. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1733. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1734. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1735. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1736. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1737. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1738. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1739. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1741. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1742. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1743. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1744. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1745. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1746. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1747. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1748. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1749. ];
  1750. //SCNUET
  1751. U.MD.D.I.SCNUETStudentDeskIcon = [
  1752. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1753. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1754. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1755. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1756. ];
  1757. //x020201
  1758. U.MD.D.I.x020201TeacherDeskIcon = [
  1759. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1760. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1761. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1762. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1764. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1765. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1766. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1767. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1768. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1769. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1770. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1771. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1772. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1773. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1774. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1775. ];
  1776. //x020201
  1777. U.MD.D.I.x020201AdminDeskIcon = [
  1778. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1779. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1780. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1781. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1782. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1783. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1784. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1785. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1786. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1787. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1788. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1789. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1790. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1791. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1792. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1793. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1794. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1795. ];
  1796. //020201
  1797. U.MD.D.I.x020201StudentDeskIcon = [
  1798. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1799. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1800. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1801. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1802. ];
  1803. //010611
  1804. U.MD.D.I.x010611TeacherDeskIcon = [
  1805. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1806. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1807. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1808. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1809. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1810. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1811. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1812. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1813. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1814. ];
  1815. //010611
  1816. U.MD.D.I.x010611StudentDeskIcon = [
  1817. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1818. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1819. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1820. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1821. ];
  1822. //010612
  1823. U.MD.D.I.x010612TeacherDeskIcon = [
  1824. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1825. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1826. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1827. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1828. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1829. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1830. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1831. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1832. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1833. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1834. ];
  1835. //010612
  1836. U.MD.D.I.x010612StudentDeskIcon = [
  1837. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1838. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1839. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1840. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1841. ];
  1842. //tianyuan
  1843. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1844. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1845. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1846. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1847. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1848. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1849. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1850. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1851. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1853. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1854. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1855. ];
  1856. //010611
  1857. U.MD.D.I.tianyuanStudentDeskIcon = [
  1858. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1859. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1860. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1861. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. ];
  1863. //320101
  1864. U.MD.D.I.x320101TeacherDeskIcon = [
  1865. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1866. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1867. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1868. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1869. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1870. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1872. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1873. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1874. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1876. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1877. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1878. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1879. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1880. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1881. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1882. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1883. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1884. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1885. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1886. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1887. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1889. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1890. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1892. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1893. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1894. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1895. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1897. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1898. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1899. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1900. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1901. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1902. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1903. ];
  1904. //320101
  1905. U.MD.D.I.x320101StudentDeskIcon = [
  1906. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1907. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1908. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1909. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1910. ];
  1911. //szsy
  1912. U.MD.D.I.szsyTeacherDeskIcon = [
  1913. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1914. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1915. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1916. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1917. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1918. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1919. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1920. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1921. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1922. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1923. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1924. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1925. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1926. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1927. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1928. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1929. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1930. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1931. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1932. ];
  1933. //szsy
  1934. U.MD.D.I.szsyStudentDeskIcon = [
  1935. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1936. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1937. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1938. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1939. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1940. ];
  1941. //010404
  1942. U.MD.D.I.x010404TeacherDeskIcon = [
  1943. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1944. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1945. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1946. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1947. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1948. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1949. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1950. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1951. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1952. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1954. ];
  1955. //010404
  1956. U.MD.D.I.x010404StudentDeskIcon = [
  1957. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1958. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1959. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1960. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1961. ];
  1962. //#region 桌面初始化a
  1963. /**
  1964. * 初始化桌面的起始函數
  1965. *
  1966. */
  1967. U.MD.D.I.init = function () {
  1968. if ($("#U_MD_D_K")[0]) {
  1969. //初始化桌面圖標
  1970. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1971. // var clickUrl = ':12588/requestIp.php';
  1972. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1973. // U.MD.D.I.Ip = data;
  1974. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1975. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1976. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1977. // })
  1978. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1979. // })
  1980. }
  1981. }
  1982. /**
  1983. * 模式切換
  1984. *
  1985. */
  1986. U.MD.D.I.ModeCheck = function (type) {
  1987. if (US.Config.type == type) {
  1988. return
  1989. }
  1990. US.Config.type = type
  1991. $('.U_PBL_Check .active')[0].className = ''
  1992. if (type == 1) {
  1993. $('.U_PBL_Check div')[0].className = 'active'
  1994. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1995. } else {
  1996. $('.U_PBL_Check div')[1].className = 'active'
  1997. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1998. }
  1999. //初始化桌面圖標
  2000. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2001. if (type == 2) {
  2002. U.MD.D.I.openApplication("project")
  2003. }
  2004. }
  2005. /**
  2006. * 隱藏任務欄
  2007. *
  2008. * @param {element} 桌面元素
  2009. */
  2010. U.MD.D.I.hiddenTaskbar = function (el) {
  2011. //任務欄位置變小
  2012. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2013. //桌面的位置變大
  2014. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2015. }
  2016. /**
  2017. * 隱藏任務欄
  2018. *
  2019. * @param {element} 桌面元素
  2020. */
  2021. U.MD.D.I.hiddenTaskbarout = function (el) {
  2022. //任務欄位置變小
  2023. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2024. //任務欄位置變化
  2025. U.selectEl(el).css({ "bottom": "-60px" });
  2026. //桌面的位置變大
  2027. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2028. }
  2029. }
  2030. /**
  2031. * 初始化打印桌面圖標
  2032. *
  2033. * @param {element} 桌面元素
  2034. */
  2035. U.MD.D.I.initDesktopIcons = function (el, type) {
  2036. var i, //用於循環
  2037. _content, //桌面圖標元素
  2038. _iconcontent, //桌面圖標元素
  2039. _frag = $$("frag"), //定義一個碎片元素
  2040. _type = US.userInfo.type,
  2041. _org = US.userInfo.org,
  2042. _oid = US.userInfo.organizeid,
  2043. _role = US.userInfo.role,
  2044. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  2045. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  2046. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  2047. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  2048. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  2049. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  2050. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  2051. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2052. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2053. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2054. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  2055. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  2056. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  2057. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  2058. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取鬆山湖
  2059. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  2060. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  2061. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  2062. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  2063. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  2064. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  2065. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  2066. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  2067. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  2068. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2069. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2070. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  2071. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  2072. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  2073. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  2074. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  2075. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  2076. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2077. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2078. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2079. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2080. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2081. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2082. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2083. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2084. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2085. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  2086. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2087. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2088. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2089. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2090. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  2091. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2092. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2093. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2094. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2095. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2096. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2097. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2098. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2099. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2100. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2101. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2102. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2103. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2104. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  2105. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2106. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2107. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2108. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2109. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2110. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2111. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2112. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2113. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2114. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2115. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2116. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  2117. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  2118. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  2119. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  2120. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2121. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2122. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2123. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2124. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2125. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2126. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2127. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2128. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2129. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2130. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2131. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2132. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2133. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2134. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2135. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2136. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2137. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2138. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2139. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2140. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2141. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2142. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2143. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2144. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2145. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2146. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2147. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2148. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2149. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2150. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2151. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2152. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2153. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2154. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2155. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2156. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2157. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2158. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2159. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2160. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2161. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2162. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2163. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2164. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2165. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2166. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2167. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2168. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2169. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2170. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926'];
  2171. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d','62c166af-2f22-11f0-b60f-005056924926'];
  2172. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2173. //清楚桌面圖標
  2174. el.innerHTML = "";
  2175. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2176. _teacherDesktopIconInfo.push(
  2177. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2178. { "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)" } },
  2179. )
  2180. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2181. }
  2182. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2183. _teacherDesktopIconInfo.push(
  2184. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2185. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2186. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2187. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2188. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2189. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2190. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2191. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2192. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2193. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2194. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2196. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2197. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2198. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2199. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2200. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2201. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2202. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2203. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2204. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2205. )
  2206. }
  2207. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//鬆坪學校
  2208. _teacherDesktopIconInfo.push(
  2209. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2210. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2211. )
  2212. }
  2213. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//鬆坪學校
  2214. _nsfxTeacherDeskIconInfo.push(
  2215. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2216. )
  2217. }
  2218. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2219. // _teacherDesktopIconInfo.push(
  2220. // )
  2221. // }
  2222. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2223. _teacherDesktopIconInfo.push(
  2224. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2225. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2226. )
  2227. }
  2228. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2229. _teacherDesktopIconInfo.push(
  2230. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2231. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2232. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2233. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2234. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2235. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2236. )
  2237. _studentDesktopIconInfo.push(
  2238. )
  2239. }
  2240. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2241. _teacherDesktopIconInfo.push(
  2242. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2243. )
  2244. _studentDesktopIconInfo.push(
  2245. )
  2246. }
  2247. //010606 組織
  2248. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2249. _teacherDesktopIconInfo.push(
  2250. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2251. )
  2252. _studentDesktopIconInfo.push(
  2253. )
  2254. }
  2255. //麒麟二中 和 民新小學
  2256. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2257. _teacherDesktopIconInfo.push(
  2258. )
  2259. }
  2260. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2261. _teacherDesktopIconInfo.push(
  2262. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2263. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2264. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2265. )
  2266. }
  2267. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2268. _hkTeacherDeskIconInfo.push(
  2269. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2270. )
  2271. }
  2272. //北師大附中(010601)
  2273. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2274. // _teacherDesktopIconInfo.push(
  2275. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2276. // )
  2277. // _studentDesktopIconInfo.push(
  2278. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2279. // )
  2280. // }
  2281. //樂善堂余近卿中學
  2282. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2283. _teacherDesktopIconInfo.push(
  2284. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2285. )
  2286. }
  2287. // Education Artificial Intelligence
  2288. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2289. _teacherDesktopIconInfo.push(
  2290. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2291. )
  2292. }
  2293. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2294. _teacherDesktopIconInfo.push(
  2295. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2296. )
  2297. }
  2298. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2299. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2300. _teacherDesktopIconInfo.push(
  2301. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2302. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2303. )
  2304. }
  2305. //麒麟二中
  2306. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2307. _studentDesktopIconInfo.push(
  2308. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2309. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2310. )
  2311. }
  2312. //萬科雙語
  2313. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2314. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2315. if (el.Name == '項目管理') {
  2316. el.Name = 'PBL項目'
  2317. }
  2318. return el
  2319. })
  2320. _studentDesktopIconInfo3.push(
  2321. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2322. )
  2323. }
  2324. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2325. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2326. return el.Name != '魔盒識字' && el.Name != '24點'
  2327. })
  2328. }
  2329. 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) {
  2330. _studentDesktopIconInfo.push(
  2331. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2332. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2333. )
  2334. }
  2335. //循環創建桌面圖標
  2336. if (type == 1) {
  2337. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2338. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2339. _content = $$("div", {
  2340. className: "U_MD_D_KO",
  2341. "onmousedown": U.UF.C.closure(function (obj) {
  2342. //防止拖動圖標即打開了桌面應用
  2343. U.MD.D.click(this, obj);
  2344. }, [_studentDesktopIconInfo[i]]),
  2345. "onclick": U.UF.C.closure(function (obj) {
  2346. //防止拖動圖標即打開了桌面應用
  2347. U.MD.D.click(this, obj);
  2348. }, [_studentDesktopIconInfo[i]])
  2349. }, _frag); //
  2350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2353. }
  2354. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2355. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2356. _content = $$("div", {
  2357. className: "U_MD_D_KO",
  2358. "onmousedown": U.UF.C.closure(function (obj) {
  2359. //防止拖動圖標即打開了桌面應用
  2360. U.MD.D.click(this, obj);
  2361. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2362. "onclick": U.UF.C.closure(function (obj) {
  2363. //防止拖動圖標即打開了桌面應用
  2364. U.MD.D.click(this, obj);
  2365. }, [_hkZJLSStudentDeskIconInfo[i]])
  2366. }, _frag); //
  2367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2370. } //
  2371. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2372. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2373. _content = $$("div", {
  2374. className: "U_MD_D_KO",
  2375. "onmousedown": U.UF.C.closure(function (obj) {
  2376. //防止拖動圖標即打開了桌面應用
  2377. U.MD.D.click(this, obj);
  2378. }, [_ytyStudentDeskIconInfo[i]]),
  2379. "onclick": U.UF.C.closure(function (obj) {
  2380. //防止拖動圖標即打開了桌面應用
  2381. U.MD.D.click(this, obj);
  2382. }, [_ytyStudentDeskIconInfo[i]])
  2383. }, _frag); //
  2384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2387. } //
  2388. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2389. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖動圖標即打開了桌面應用
  2394. U.MD.D.click(this, obj);
  2395. }, [_jccssylStudentDeskIconInfo[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖動圖標即打開了桌面應用
  2398. U.MD.D.click(this, obj);
  2399. }, [_jccssylStudentDeskIconInfo[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2404. }
  2405. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2406. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2407. _content = $$("div", {
  2408. className: "U_MD_D_KO",
  2409. "onmousedown": U.UF.C.closure(function (obj) {
  2410. //防止拖動圖標即打開了桌面應用
  2411. U.MD.D.click(this, obj);
  2412. }, [_scnuaiStudentDeskIconInfo[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖動圖標即打開了桌面應用
  2415. U.MD.D.click(this, obj);
  2416. }, [_scnuaiStudentDeskIconInfo[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2421. }
  2422. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2423. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖動圖標即打開了桌面應用
  2428. U.MD.D.click(this, obj);
  2429. }, [_caleStudentDeskIconInfo[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖動圖標即打開了桌面應用
  2432. U.MD.D.click(this, obj);
  2433. }, [_caleStudentDeskIconInfo[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2438. }
  2439. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2440. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2441. _content = $$("div", {
  2442. className: "U_MD_D_KO",
  2443. "onmousedown": U.UF.C.closure(function (obj) {
  2444. //防止拖動圖標即打開了桌面應用
  2445. U.MD.D.click(this, obj);
  2446. }, [_thuioeStudentDeskIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖動圖標即打開了桌面應用
  2449. U.MD.D.click(this, obj);
  2450. }, [_thuioeStudentDeskIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2457. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2458. _content = $$("div", {
  2459. className: "U_MD_D_KO",
  2460. "onmousedown": U.UF.C.closure(function (obj) {
  2461. //防止拖動圖標即打開了桌面應用
  2462. U.MD.D.click(this, obj);
  2463. }, [_tpcStudentDeskIconInfo[i]]),
  2464. "onclick": U.UF.C.closure(function (obj) {
  2465. //防止拖動圖標即打開了桌面應用
  2466. U.MD.D.click(this, obj);
  2467. }, [_tpcStudentDeskIconInfo[i]])
  2468. }, _frag); //
  2469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2472. } //
  2473. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2474. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2475. _content = $$("div", {
  2476. className: "U_MD_D_KO",
  2477. "onmousedown": U.UF.C.closure(function (obj) {
  2478. //防止拖動圖標即打開了桌面應用
  2479. U.MD.D.click(this, obj);
  2480. }, [_chjyjStudentDeskIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖動圖標即打開了桌面應用
  2483. U.MD.D.click(this, obj);
  2484. }, [_chjyjStudentDeskIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2491. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖動圖標即打開了桌面應用
  2496. U.MD.D.click(this, obj);
  2497. }, [_szjkyStudentDeskIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖動圖標即打開了桌面應用
  2500. U.MD.D.click(this, obj);
  2501. }, [_szjkyStudentDeskIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2508. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2509. _content = $$("div", {
  2510. className: "U_MD_D_KO",
  2511. "onmousedown": U.UF.C.closure(function (obj) {
  2512. //防止拖動圖標即打開了桌面應用
  2513. U.MD.D.click(this, obj);
  2514. }, [_x020201StudentDeskIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖動圖標即打開了桌面應用
  2517. U.MD.D.click(this, obj);
  2518. }, [_x020201StudentDeskIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2523. }
  2524. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2525. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2526. _content = $$("div", {
  2527. className: "U_MD_D_KO",
  2528. "onmousedown": U.UF.C.closure(function (obj) {
  2529. //防止拖動圖標即打開了桌面應用
  2530. U.MD.D.click(this, obj);
  2531. }, [_SCNUETStudentDeskIconInfo[i]]),
  2532. "onclick": U.UF.C.closure(function (obj) {
  2533. //防止拖動圖標即打開了桌面應用
  2534. U.MD.D.click(this, obj);
  2535. }, [_SCNUETStudentDeskIconInfo[i]])
  2536. }, _frag); //
  2537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2540. }
  2541. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2542. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2543. _content = $$("div", {
  2544. className: "U_MD_D_KO",
  2545. "onmousedown": U.UF.C.closure(function (obj) {
  2546. //防止拖動圖標即打開了桌面應用
  2547. U.MD.D.click(this, obj);
  2548. }, [_dseiStudentDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖動圖標即打開了桌面應用
  2551. U.MD.D.click(this, obj);
  2552. }, [_dseiStudentDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2559. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖動圖標即打開了桌面應用
  2564. U.MD.D.click(this, obj);
  2565. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖動圖標即打開了桌面應用
  2568. U.MD.D.click(this, obj);
  2569. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2576. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2577. _content = $$("div", {
  2578. className: "U_MD_D_KO",
  2579. "onmousedown": U.UF.C.closure(function (obj) {
  2580. //防止拖動圖標即打開了桌面應用
  2581. U.MD.D.click(this, obj);
  2582. }, [_nsfxStudentDeskIconInfo[i]]),
  2583. "onclick": U.UF.C.closure(function (obj) {
  2584. //防止拖動圖標即打開了桌面應用
  2585. U.MD.D.click(this, obj);
  2586. }, [_nsfxStudentDeskIconInfo[i]])
  2587. }, _frag); //
  2588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2591. }
  2592. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2593. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2594. _content = $$("div", {
  2595. className: "U_MD_D_KO",
  2596. "onmousedown": U.UF.C.closure(function (obj) {
  2597. //防止拖動圖標即打開了桌面應用
  2598. U.MD.D.click(this, obj);
  2599. }, [_stiaStudentDeskIconInfo[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖動圖標即打開了桌面應用
  2602. U.MD.D.click(this, obj);
  2603. }, [_stiaStudentDeskIconInfo[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2608. }
  2609. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2610. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2611. _content = $$("div", {
  2612. className: "U_MD_D_KO",
  2613. "onmousedown": U.UF.C.closure(function (obj) {
  2614. //防止拖動圖標即打開了桌面應用
  2615. U.MD.D.click(this, obj);
  2616. }, [_szdjgStudentDeskIconInfo[i]]),
  2617. "onclick": U.UF.C.closure(function (obj) {
  2618. //防止拖動圖標即打開了桌面應用
  2619. U.MD.D.click(this, obj);
  2620. }, [_szdjgStudentDeskIconInfo[i]])
  2621. }, _frag); //
  2622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2625. }
  2626. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2627. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2628. _content = $$("div", {
  2629. className: "U_MD_D_KO",
  2630. "onmousedown": U.UF.C.closure(function (obj) {
  2631. //防止拖動圖標即打開了桌面應用
  2632. U.MD.D.click(this, obj);
  2633. }, [_x010607StudentDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖動圖標即打開了桌面應用
  2636. U.MD.D.click(this, obj);
  2637. }, [_x010607StudentDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2644. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2645. _content = $$("div", {
  2646. className: "U_MD_D_KO",
  2647. "onmousedown": U.UF.C.closure(function (obj) {
  2648. //防止拖動圖標即打開了桌面應用
  2649. U.MD.D.click(this, obj);
  2650. }, [_xhlyStudentDeskIconInfo[i]]),
  2651. "onclick": U.UF.C.closure(function (obj) {
  2652. //防止拖動圖標即打開了桌面應用
  2653. U.MD.D.click(this, obj);
  2654. }, [_xhlyStudentDeskIconInfo[i]])
  2655. }, _frag); //
  2656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2659. }
  2660. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2661. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2662. _content = $$("div", {
  2663. className: "U_MD_D_KO",
  2664. "onmousedown": U.UF.C.closure(function (obj) {
  2665. //防止拖動圖標即打開了桌面應用
  2666. U.MD.D.click(this, obj);
  2667. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2668. "onclick": U.UF.C.closure(function (obj) {
  2669. //防止拖動圖標即打開了桌面應用
  2670. U.MD.D.click(this, obj);
  2671. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2672. }, _frag); //
  2673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2676. }
  2677. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2678. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2679. _content = $$("div", {
  2680. className: "U_MD_D_KO",
  2681. "onmousedown": U.UF.C.closure(function (obj) {
  2682. //防止拖動圖標即打開了桌面應用
  2683. U.MD.D.click(this, obj);
  2684. }, [_x010503StudentDeskIconInfo[i]]),
  2685. "onclick": U.UF.C.closure(function (obj) {
  2686. //防止拖動圖標即打開了桌面應用
  2687. U.MD.D.click(this, obj);
  2688. }, [_x010503StudentDeskIconInfo[i]])
  2689. }, _frag); //
  2690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2693. }
  2694. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2695. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2696. _content = $$("div", {
  2697. className: "U_MD_D_KO",
  2698. "onmousedown": U.UF.C.closure(function (obj) {
  2699. //防止拖動圖標即打開了桌面應用
  2700. U.MD.D.click(this, obj);
  2701. }, [_x010504StudentDeskIconInfo[i]]),
  2702. "onclick": U.UF.C.closure(function (obj) {
  2703. //防止拖動圖標即打開了桌面應用
  2704. U.MD.D.click(this, obj);
  2705. }, [_x010504StudentDeskIconInfo[i]])
  2706. }, _frag); //
  2707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2710. }
  2711. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2712. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2713. _content = $$("div", {
  2714. className: "U_MD_D_KO",
  2715. "onmousedown": U.UF.C.closure(function (obj) {
  2716. //防止拖動圖標即打開了桌面應用
  2717. U.MD.D.click(this, obj);
  2718. }, [_x010505StudentDeskIconInfo[i]]),
  2719. "onclick": U.UF.C.closure(function (obj) {
  2720. //防止拖動圖標即打開了桌面應用
  2721. U.MD.D.click(this, obj);
  2722. }, [_x010505StudentDeskIconInfo[i]])
  2723. }, _frag); //
  2724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2727. }
  2728. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2729. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2730. _content = $$("div", {
  2731. className: "U_MD_D_KO",
  2732. "onmousedown": U.UF.C.closure(function (obj) {
  2733. //防止拖動圖標即打開了桌面應用
  2734. U.MD.D.click(this, obj);
  2735. }, [_x010404StudentDeskIconInfo[i]]),
  2736. "onclick": U.UF.C.closure(function (obj) {
  2737. //防止拖動圖標即打開了桌面應用
  2738. U.MD.D.click(this, obj);
  2739. }, [_x010404StudentDeskIconInfo[i]])
  2740. }, _frag); //
  2741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2744. }
  2745. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2746. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2747. _content = $$("div", {
  2748. className: "U_MD_D_KO",
  2749. "onmousedown": U.UF.C.closure(function (obj) {
  2750. //防止拖動圖標即打開了桌面應用
  2751. U.MD.D.click(this, obj);
  2752. }, [_x010204StudentDeskIconInfo[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖動圖標即打開了桌面應用
  2755. U.MD.D.click(this, obj);
  2756. }, [_x010204StudentDeskIconInfo[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2761. }
  2762. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2763. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2764. _content = $$("div", {
  2765. className: "U_MD_D_KO",
  2766. "onmousedown": U.UF.C.closure(function (obj) {
  2767. //防止拖動圖標即打開了桌面應用
  2768. U.MD.D.click(this, obj);
  2769. }, [_x320101StudentDeskIconInfo[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖動圖標即打開了桌面應用
  2772. U.MD.D.click(this, obj);
  2773. }, [_x320101StudentDeskIconInfo[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2778. }
  2779. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2780. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2781. _content = $$("div", {
  2782. className: "U_MD_D_KO",
  2783. "onmousedown": U.UF.C.closure(function (obj) {
  2784. //防止拖動圖標即打開了桌面應用
  2785. U.MD.D.click(this, obj);
  2786. }, [_trailStudentDeskIconInfo[i]]),
  2787. "onclick": U.UF.C.closure(function (obj) {
  2788. //防止拖動圖標即打開了桌面應用
  2789. U.MD.D.click(this, obj);
  2790. }, [_trailStudentDeskIconInfo[i]])
  2791. }, _frag); //
  2792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2795. }
  2796. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2797. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2798. _content = $$("div", {
  2799. className: "U_MD_D_KO",
  2800. "onmousedown": U.UF.C.closure(function (obj) {
  2801. //防止拖動圖標即打開了桌面應用
  2802. U.MD.D.click(this, obj);
  2803. }, [_trialStudentDeskIconInfo[i]]),
  2804. "onclick": U.UF.C.closure(function (obj) {
  2805. //防止拖動圖標即打開了桌面應用
  2806. U.MD.D.click(this, obj);
  2807. }, [_trialStudentDeskIconInfo[i]])
  2808. }, _frag); //
  2809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2812. }
  2813. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2814. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2815. _content = $$("div", {
  2816. className: "U_MD_D_KO",
  2817. "onmousedown": U.UF.C.closure(function (obj) {
  2818. //防止拖動圖標即打開了桌面應用
  2819. U.MD.D.click(this, obj);
  2820. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖動圖標即打開了桌面應用
  2823. U.MD.D.click(this, obj);
  2824. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2831. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2832. _content = $$("div", {
  2833. className: "U_MD_D_KO",
  2834. "onmousedown": U.UF.C.closure(function (obj) {
  2835. //防止拖動圖標即打開了桌面應用
  2836. U.MD.D.click(this, obj);
  2837. }, [_szsyStudentDeskIconInfo[i]]),
  2838. "onclick": U.UF.C.closure(function (obj) {
  2839. //防止拖動圖標即打開了桌面應用
  2840. U.MD.D.click(this, obj);
  2841. }, [_szsyStudentDeskIconInfo[i]])
  2842. }, _frag); //
  2843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2846. }
  2847. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2848. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2849. _content = $$("div", {
  2850. className: "U_MD_D_KO",
  2851. "onmousedown": U.UF.C.closure(function (obj) {
  2852. //防止拖動圖標即打開了桌面應用
  2853. U.MD.D.click(this, obj);
  2854. }, [_x010608StudentDeskIconInfo[i]]),
  2855. "onclick": U.UF.C.closure(function (obj) {
  2856. //防止拖動圖標即打開了桌面應用
  2857. U.MD.D.click(this, obj);
  2858. }, [_x010608StudentDeskIconInfo[i]])
  2859. }, _frag); //
  2860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2863. }
  2864. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2865. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖動圖標即打開了桌面應用
  2870. U.MD.D.click(this, obj);
  2871. }, [_x010611StudentDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖動圖標即打開了桌面應用
  2874. U.MD.D.click(this, obj);
  2875. }, [_x010611StudentDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2882. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2883. _content = $$("div", {
  2884. className: "U_MD_D_KO",
  2885. "onmousedown": U.UF.C.closure(function (obj) {
  2886. //防止拖動圖標即打開了桌面應用
  2887. U.MD.D.click(this, obj);
  2888. }, [_x010612StudentDeskIconInfo[i]]),
  2889. "onclick": U.UF.C.closure(function (obj) {
  2890. //防止拖動圖標即打開了桌面應用
  2891. U.MD.D.click(this, obj);
  2892. }, [_x010612StudentDeskIconInfo[i]])
  2893. }, _frag); //
  2894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2897. }
  2898. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2899. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2900. _content = $$("div", {
  2901. className: "U_MD_D_KO",
  2902. "onmousedown": U.UF.C.closure(function (obj) {
  2903. //防止拖動圖標即打開了桌面應用
  2904. U.MD.D.click(this, obj);
  2905. }, [_tianyuantudentDeskIconInfo[i]]),
  2906. "onclick": U.UF.C.closure(function (obj) {
  2907. //防止拖動圖標即打開了桌面應用
  2908. U.MD.D.click(this, obj);
  2909. }, [_tianyuantudentDeskIconInfo[i]])
  2910. }, _frag); //
  2911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2914. }
  2915. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2916. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2917. _content = $$("div", {
  2918. className: "U_MD_D_KO",
  2919. "onmousedown": U.UF.C.closure(function (obj) {
  2920. //防止拖動圖標即打開了桌面應用
  2921. U.MD.D.click(this, obj);
  2922. }, [_siesStudentDeskIconInfo[i]]),
  2923. "onclick": U.UF.C.closure(function (obj) {
  2924. //防止拖動圖標即打開了桌面應用
  2925. U.MD.D.click(this, obj);
  2926. }, [_siesStudentDeskIconInfo[i]])
  2927. }, _frag); //
  2928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2931. }
  2932. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2933. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2934. _content = $$("div", {
  2935. className: "U_MD_D_KO",
  2936. "onmousedown": U.UF.C.closure(function (obj) {
  2937. //防止拖動圖標即打開了桌面應用
  2938. U.MD.D.click(this, obj);
  2939. }, [_guzmsStudentDeskIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖動圖標即打開了桌面應用
  2942. U.MD.D.click(this, obj);
  2943. }, [_guzmsStudentDeskIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2950. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2951. _content = $$("div", {
  2952. className: "U_MD_D_KO",
  2953. "onmousedown": U.UF.C.closure(function (obj) {
  2954. //防止拖動圖標即打開了桌面應用
  2955. U.MD.D.click(this, obj);
  2956. }, [_hkStudentDeskIconInfo[i]]),
  2957. "onclick": U.UF.C.closure(function (obj) {
  2958. //防止拖動圖標即打開了桌面應用
  2959. U.MD.D.click(this, obj);
  2960. }, [_hkStudentDeskIconInfo[i]])
  2961. }, _frag); //
  2962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2965. }
  2966. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  2967. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  2968. _content = $$("div", {
  2969. className: "U_MD_D_KO",
  2970. "onmousedown": U.UF.C.closure(function (obj) {
  2971. //防止拖動圖標即打開了桌面應用
  2972. U.MD.D.click(this, obj);
  2973. }, [_tycyStudentDeskIconInfo[i]]),
  2974. "onclick": U.UF.C.closure(function (obj) {
  2975. //防止拖動圖標即打開了桌面應用
  2976. U.MD.D.click(this, obj);
  2977. }, [_tycyStudentDeskIconInfo[i]])
  2978. }, _frag); //
  2979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  2981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  2982. }
  2983. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2984. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2985. _content = $$("div", {
  2986. className: "U_MD_D_KO",
  2987. "onmousedown": U.UF.C.closure(function (obj) {
  2988. //防止拖動圖標即打開了桌面應用
  2989. U.MD.D.click(this, obj);
  2990. }, [_hkaceStudentDeskIconInfo[i]]),
  2991. "onclick": U.UF.C.closure(function (obj) {
  2992. //防止拖動圖標即打開了桌面應用
  2993. U.MD.D.click(this, obj);
  2994. }, [_hkaceStudentDeskIconInfo[i]])
  2995. }, _frag); //
  2996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2999. }
  3000. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3001. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3002. _content = $$("div", {
  3003. className: "U_MD_D_KO",
  3004. "onmousedown": U.UF.C.closure(function (obj) {
  3005. //防止拖動圖標即打開了桌面應用
  3006. U.MD.D.click(this, obj);
  3007. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3008. "onclick": U.UF.C.closure(function (obj) {
  3009. //防止拖動圖標即打開了桌面應用
  3010. U.MD.D.click(this, obj);
  3011. }, [_BSDNSstudentDesktopIconInfo[i]])
  3012. }, _frag); //
  3013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3016. }
  3017. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3018. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3019. _content = $$("div", {
  3020. className: "U_MD_D_KO",
  3021. "onmousedown": U.UF.C.closure(function (obj) {
  3022. //防止拖動圖標即打開了桌面應用
  3023. U.MD.D.click(this, obj);
  3024. }, [_cocobizStudentDeskIconInfo[i]]),
  3025. "onclick": U.UF.C.closure(function (obj) {
  3026. //防止拖動圖標即打開了桌面應用
  3027. U.MD.D.click(this, obj);
  3028. }, [_cocobizStudentDeskIconInfo[i]])
  3029. }, _frag); //
  3030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3033. }
  3034. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3035. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3036. _content = $$("div", {
  3037. className: "U_MD_D_KO",
  3038. "onmousedown": U.UF.C.closure(function (obj) {
  3039. //防止拖動圖標即打開了桌面應用
  3040. U.MD.D.click(this, obj);
  3041. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3042. "onclick": U.UF.C.closure(function (obj) {
  3043. //防止拖動圖標即打開了桌面應用
  3044. U.MD.D.click(this, obj);
  3045. }, [_xxzjkyStudentDeskIconInfo[i]])
  3046. }, _frag); //
  3047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3050. }
  3051. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3052. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  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. }, [_studentDesktopIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖動圖標即打開了桌面應用
  3061. U.MD.D.click(this, obj);
  3062. }, [_studentDesktopIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3069. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3070. _content = $$("div", {
  3071. className: "U_MD_D_KO",
  3072. "onmousedown": U.UF.C.closure(function (obj) {
  3073. //防止拖動圖標即打開了桌面應用
  3074. U.MD.D.click(this, obj);
  3075. }, [_tcStudentDeskIconInfo[i]]),
  3076. "onclick": U.UF.C.closure(function (obj) {
  3077. //防止拖動圖標即打開了桌面應用
  3078. U.MD.D.click(this, obj);
  3079. }, [_tcStudentDeskIconInfo[i]])
  3080. }, _frag); //
  3081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3084. }
  3085. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3086. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3087. _content = $$("div", {
  3088. className: "U_MD_D_KO",
  3089. "onmousedown": U.UF.C.closure(function (obj) {
  3090. //防止拖動圖標即打開了桌面應用
  3091. U.MD.D.click(this, obj);
  3092. }, [_szscStudentDeskIconInfo[i]]),
  3093. "onclick": U.UF.C.closure(function (obj) {
  3094. //防止拖動圖標即打開了桌面應用
  3095. U.MD.D.click(this, obj);
  3096. }, [_szscStudentDeskIconInfo[i]])
  3097. }, _frag); //
  3098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3101. }
  3102. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3103. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3104. _content = $$("div", {
  3105. className: "U_MD_D_KO",
  3106. "onmousedown": U.UF.C.closure(function (obj) {
  3107. //防止拖動圖標即打開了桌面應用
  3108. U.MD.D.click(this, obj);
  3109. }, [_studentDesktopIconInfo3[i]]),
  3110. "onclick": U.UF.C.closure(function (obj) {
  3111. //防止拖動圖標即打開了桌面應用
  3112. U.MD.D.click(this, obj);
  3113. }, [_studentDesktopIconInfo3[i]])
  3114. }, _frag); //
  3115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3118. }
  3119. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3120. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3121. _content = $$("div", {
  3122. className: "U_MD_D_KO",
  3123. "onmousedown": U.UF.C.closure(function (obj) {
  3124. //防止拖動圖標即打開了桌面應用
  3125. U.MD.D.click(this, obj);
  3126. }, [_studentDesktopIconInfo2[i]]),
  3127. "onclick": U.UF.C.closure(function (obj) {
  3128. //防止拖動圖標即打開了桌面應用
  3129. U.MD.D.click(this, obj);
  3130. }, [_studentDesktopIconInfo2[i]])
  3131. }, _frag); //
  3132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3135. }
  3136. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3137. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3138. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3139. continue
  3140. }
  3141. _content = $$("div", {
  3142. className: "U_MD_D_KO",
  3143. "onmousedown": U.UF.C.closure(function (obj) {
  3144. //防止拖動圖標即打開了桌面應用
  3145. U.MD.D.click(this, obj);
  3146. }, [_wanketeacherDesktopIconInfo[i]]),
  3147. "onclick": U.UF.C.closure(function (obj) {
  3148. //防止拖動圖標即打開了桌面應用
  3149. U.MD.D.click(this, obj);
  3150. }, [_wanketeacherDesktopIconInfo[i]])
  3151. }, _frag); //
  3152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3155. }
  3156. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3157. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3158. _content = $$("div", {
  3159. className: "U_MD_D_KO",
  3160. "onmousedown": U.UF.C.closure(function (obj) {
  3161. //防止拖動圖標即打開了桌面應用
  3162. U.MD.D.click(this, obj);
  3163. }, [_wankeAdminDesktopIconInfo[i]]),
  3164. "onclick": U.UF.C.closure(function (obj) {
  3165. //防止拖動圖標即打開了桌面應用
  3166. U.MD.D.click(this, obj);
  3167. }, [_wankeAdminDesktopIconInfo[i]])
  3168. }, _frag); //
  3169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3172. }
  3173. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3174. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3175. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3176. continue
  3177. }
  3178. _content = $$("div", {
  3179. className: "U_MD_D_KO",
  3180. "onmousedown": U.UF.C.closure(function (obj) {
  3181. //防止拖動圖標即打開了桌面應用
  3182. U.MD.D.click(this, obj);
  3183. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3184. "onclick": U.UF.C.closure(function (obj) {
  3185. //防止拖動圖標即打開了桌面應用
  3186. U.MD.D.click(this, obj);
  3187. }, [_scnuaiTeacherDeskIconInfo[i]])
  3188. }, _frag); //
  3189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3192. }
  3193. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3194. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3195. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3196. continue
  3197. }
  3198. _content = $$("div", {
  3199. className: "U_MD_D_KO",
  3200. "onmousedown": U.UF.C.closure(function (obj) {
  3201. //防止拖動圖標即打開了桌面應用
  3202. U.MD.D.click(this, obj);
  3203. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3204. "onclick": U.UF.C.closure(function (obj) {
  3205. //防止拖動圖標即打開了桌面應用
  3206. U.MD.D.click(this, obj);
  3207. }, [_BSDNSteacherDesktopIconInfo[i]])
  3208. }, _frag); //
  3209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3212. }
  3213. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3214. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3215. _content = $$("div", {
  3216. className: "U_MD_D_KO",
  3217. "onmousedown": U.UF.C.closure(function (obj) {
  3218. //防止拖動圖標即打開了桌面應用
  3219. U.MD.D.click(this, obj);
  3220. }, [_scnuaiAdminDeskIconInfo[i]]),
  3221. "onclick": U.UF.C.closure(function (obj) {
  3222. //防止拖動圖標即打開了桌面應用
  3223. U.MD.D.click(this, obj);
  3224. }, [_scnuaiAdminDeskIconInfo[i]])
  3225. }, _frag); //
  3226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3229. }
  3230. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3231. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3232. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3233. continue
  3234. }
  3235. _content = $$("div", {
  3236. className: "U_MD_D_KO",
  3237. "onmousedown": U.UF.C.closure(function (obj) {
  3238. //防止拖動圖標即打開了桌面應用
  3239. U.MD.D.click(this, obj);
  3240. }, [_jccssylTeacherDeskIconInfo[i]]),
  3241. "onclick": U.UF.C.closure(function (obj) {
  3242. //防止拖動圖標即打開了桌面應用
  3243. U.MD.D.click(this, obj);
  3244. }, [_jccssylTeacherDeskIconInfo[i]])
  3245. }, _frag); //
  3246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3249. }
  3250. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3251. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3252. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3253. continue
  3254. }
  3255. _content = $$("div", {
  3256. className: "U_MD_D_KO",
  3257. "onmousedown": U.UF.C.closure(function (obj) {
  3258. //防止拖動圖標即打開了桌面應用
  3259. U.MD.D.click(this, obj);
  3260. }, [_caleTeacherDeskIconInfo[i]]),
  3261. "onclick": U.UF.C.closure(function (obj) {
  3262. //防止拖動圖標即打開了桌面應用
  3263. U.MD.D.click(this, obj);
  3264. }, [_caleTeacherDeskIconInfo[i]])
  3265. }, _frag); //
  3266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3269. }
  3270. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3271. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3272. _content = $$("div", {
  3273. className: "U_MD_D_KO",
  3274. "onmousedown": U.UF.C.closure(function (obj) {
  3275. //防止拖動圖標即打開了桌面應用
  3276. U.MD.D.click(this, obj);
  3277. }, [_tpcOrganizerDeskIconInfo[i]]),
  3278. "onclick": U.UF.C.closure(function (obj) {
  3279. //防止拖動圖標即打開了桌面應用
  3280. U.MD.D.click(this, obj);
  3281. }, [_tpcOrganizerDeskIconInfo[i]])
  3282. }, _frag); //
  3283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3286. }
  3287. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3288. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3289. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3290. continue
  3291. }
  3292. _content = $$("div", {
  3293. className: "U_MD_D_KO",
  3294. "onmousedown": U.UF.C.closure(function (obj) {
  3295. //防止拖動圖標即打開了桌面應用
  3296. U.MD.D.click(this, obj);
  3297. }, [_tpcTeacherDeskIconInfo[i]]),
  3298. "onclick": U.UF.C.closure(function (obj) {
  3299. //防止拖動圖標即打開了桌面應用
  3300. U.MD.D.click(this, obj);
  3301. }, [_tpcTeacherDeskIconInfo[i]])
  3302. }, _frag); //
  3303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3306. }
  3307. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3308. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3309. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3310. continue
  3311. }
  3312. _content = $$("div", {
  3313. className: "U_MD_D_KO",
  3314. "onmousedown": U.UF.C.closure(function (obj) {
  3315. //防止拖動圖標即打開了桌面應用
  3316. U.MD.D.click(this, obj);
  3317. }, [_teacherDesktopIconInfo2[i]]),
  3318. "onclick": U.UF.C.closure(function (obj) {
  3319. //防止拖動圖標即打開了桌面應用
  3320. U.MD.D.click(this, obj);
  3321. }, [_teacherDesktopIconInfo2[i]])
  3322. }, _frag); //
  3323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3326. }
  3327. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3328. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3329. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3330. continue
  3331. }
  3332. _content = $$("div", {
  3333. className: "U_MD_D_KO",
  3334. "onmousedown": U.UF.C.closure(function (obj) {
  3335. //防止拖動圖標即打開了桌面應用
  3336. U.MD.D.click(this, obj);
  3337. }, [_thuioeTeacherDeskIconInfo[i]]),
  3338. "onclick": U.UF.C.closure(function (obj) {
  3339. //防止拖動圖標即打開了桌面應用
  3340. U.MD.D.click(this, obj);
  3341. }, [_thuioeTeacherDeskIconInfo[i]])
  3342. }, _frag); //
  3343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3346. }
  3347. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3348. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3349. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3350. continue
  3351. }
  3352. _content = $$("div", {
  3353. className: "U_MD_D_KO",
  3354. "onmousedown": U.UF.C.closure(function (obj) {
  3355. //防止拖動圖標即打開了桌面應用
  3356. U.MD.D.click(this, obj);
  3357. }, [_lotechTeacherDeskIconInfo[i]]),
  3358. "onclick": U.UF.C.closure(function (obj) {
  3359. //防止拖動圖標即打開了桌面應用
  3360. U.MD.D.click(this, obj);
  3361. }, [_lotechTeacherDeskIconInfo[i]])
  3362. }, _frag); //
  3363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3366. }//
  3367. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3368. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3369. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3370. continue
  3371. }
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖動圖標即打開了桌面應用
  3376. U.MD.D.click(this, obj);
  3377. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖動圖標即打開了桌面應用
  3380. U.MD.D.click(this, obj);
  3381. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3386. }
  3387. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3388. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3389. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3390. continue
  3391. }
  3392. _content = $$("div", {
  3393. className: "U_MD_D_KO",
  3394. "onmousedown": U.UF.C.closure(function (obj) {
  3395. //防止拖動圖標即打開了桌面應用
  3396. U.MD.D.click(this, obj);
  3397. }, [_siesTeacherDeskIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖動圖標即打開了桌面應用
  3400. U.MD.D.click(this, obj);
  3401. }, [_siesTeacherDeskIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3406. }
  3407. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3408. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3409. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3410. continue
  3411. }
  3412. _content = $$("div", {
  3413. className: "U_MD_D_KO",
  3414. "onmousedown": U.UF.C.closure(function (obj) {
  3415. //防止拖動圖標即打開了桌面應用
  3416. U.MD.D.click(this, obj);
  3417. }, [_guzmsTeacherDeskIconInfo[i]]),
  3418. "onclick": U.UF.C.closure(function (obj) {
  3419. //防止拖動圖標即打開了桌面應用
  3420. U.MD.D.click(this, obj);
  3421. }, [_guzmsTeacherDeskIconInfo[i]])
  3422. }, _frag); //
  3423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3426. }
  3427. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3428. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3429. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3430. continue
  3431. }
  3432. _content = $$("div", {
  3433. className: "U_MD_D_KO",
  3434. "onmousedown": U.UF.C.closure(function (obj) {
  3435. //防止拖動圖標即打開了桌面應用
  3436. U.MD.D.click(this, obj);
  3437. }, [_longhuaTeacherDeskIconInfo[i]]),
  3438. "onclick": U.UF.C.closure(function (obj) {
  3439. //防止拖動圖標即打開了桌面應用
  3440. U.MD.D.click(this, obj);
  3441. }, [_longhuaTeacherDeskIconInfo[i]])
  3442. }, _frag); //
  3443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3446. }
  3447. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3448. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3449. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3450. continue
  3451. }
  3452. _content = $$("div", {
  3453. className: "U_MD_D_KO",
  3454. "onmousedown": U.UF.C.closure(function (obj) {
  3455. //防止拖動圖標即打開了桌面應用
  3456. U.MD.D.click(this, obj);
  3457. }, [_ytyTeacherDeskIconInfo[i]]),
  3458. "onclick": U.UF.C.closure(function (obj) {
  3459. //防止拖動圖標即打開了桌面應用
  3460. U.MD.D.click(this, obj);
  3461. }, [_ytyTeacherDeskIconInfo[i]])
  3462. }, _frag); //
  3463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3466. }
  3467. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3468. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3469. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3470. continue
  3471. }
  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. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3478. "onclick": U.UF.C.closure(function (obj) {
  3479. //防止拖動圖標即打開了桌面應用
  3480. U.MD.D.click(this, obj);
  3481. }, [_yunhaiTeacherDeskIconInfo[i]])
  3482. }, _frag); //
  3483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3486. } //_hkStudentDeskIconInfo
  3487. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3488. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3489. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[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. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3498. "onclick": U.UF.C.closure(function (obj) {
  3499. //防止拖動圖標即打開了桌面應用
  3500. U.MD.D.click(this, obj);
  3501. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3502. }, _frag); //
  3503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3506. }
  3507. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3508. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3509. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3510. continue
  3511. }
  3512. _content = $$("div", {
  3513. className: "U_MD_D_KO",
  3514. "onmousedown": U.UF.C.closure(function (obj) {
  3515. //防止拖動圖標即打開了桌面應用
  3516. U.MD.D.click(this, obj);
  3517. }, [_ricohTeacherDeskIconInfo[i]]),
  3518. "onclick": U.UF.C.closure(function (obj) {
  3519. //防止拖動圖標即打開了桌面應用
  3520. U.MD.D.click(this, obj);
  3521. }, [_ricohTeacherDeskIconInfo[i]])
  3522. }, _frag); //
  3523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3526. }
  3527. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3528. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3529. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3530. continue
  3531. }
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. "onmousedown": U.UF.C.closure(function (obj) {
  3535. //防止拖動圖標即打開了桌面應用
  3536. U.MD.D.click(this, obj);
  3537. }, [_hkTeacherDeskIconInfo[i]]),
  3538. "onclick": U.UF.C.closure(function (obj) {
  3539. //防止拖動圖標即打開了桌面應用
  3540. U.MD.D.click(this, obj);
  3541. }, [_hkTeacherDeskIconInfo[i]])
  3542. }, _frag); //
  3543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3546. }
  3547. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3548. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3549. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3550. continue
  3551. }
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖動圖標即打開了桌面應用
  3556. U.MD.D.click(this, obj);
  3557. }, [_tycyTeacherDeskIconInfo[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖動圖標即打開了桌面應用
  3560. U.MD.D.click(this, obj);
  3561. }, [_tycyTeacherDeskIconInfo[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3566. }
  3567. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3568. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3569. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3570. continue
  3571. }
  3572. _content = $$("div", {
  3573. className: "U_MD_D_KO",
  3574. "onmousedown": U.UF.C.closure(function (obj) {
  3575. //防止拖動圖標即打開了桌面應用
  3576. U.MD.D.click(this, obj);
  3577. }, [_hkaceTeacherDeskIconInfo[i]]),
  3578. "onclick": U.UF.C.closure(function (obj) {
  3579. //防止拖動圖標即打開了桌面應用
  3580. U.MD.D.click(this, obj);
  3581. }, [_hkaceTeacherDeskIconInfo[i]])
  3582. }, _frag); //
  3583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3586. }
  3587. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3588. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3589. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3590. continue
  3591. }
  3592. _content = $$("div", {
  3593. className: "U_MD_D_KO",
  3594. "onmousedown": U.UF.C.closure(function (obj) {
  3595. //防止拖動圖標即打開了桌面應用
  3596. U.MD.D.click(this, obj);
  3597. }, [_cocobizTeacherDeskIconInfo[i]]),
  3598. "onclick": U.UF.C.closure(function (obj) {
  3599. //防止拖動圖標即打開了桌面應用
  3600. U.MD.D.click(this, obj);
  3601. }, [_cocobizTeacherDeskIconInfo[i]])
  3602. }, _frag); //
  3603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3606. }
  3607. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3608. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3609. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3610. continue
  3611. }
  3612. _content = $$("div", {
  3613. className: "U_MD_D_KO",
  3614. "onmousedown": U.UF.C.closure(function (obj) {
  3615. //防止拖動圖標即打開了桌面應用
  3616. U.MD.D.click(this, obj);
  3617. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3618. "onclick": U.UF.C.closure(function (obj) {
  3619. //防止拖動圖標即打開了桌面應用
  3620. U.MD.D.click(this, obj);
  3621. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3622. }, _frag); //
  3623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3626. }
  3627. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3628. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖動圖標即打開了桌面應用
  3633. U.MD.D.click(this, obj);
  3634. }, [_gdjgAdminDeskIconInfo[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖動圖標即打開了桌面應用
  3637. U.MD.D.click(this, obj);
  3638. }, [_gdjgAdminDeskIconInfo[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3643. }
  3644. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3645. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3646. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3647. continue
  3648. }
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖動圖標即打開了桌面應用
  3653. U.MD.D.click(this, obj);
  3654. }, [_gdjgTeacherDeskIconInfo[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖動圖標即打開了桌面應用
  3657. U.MD.D.click(this, obj);
  3658. }, [_gdjgTeacherDeskIconInfo[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3665. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3666. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖動圖標即打開了桌面應用
  3673. U.MD.D.click(this, obj);
  3674. }, [_szherTeacherDeskIconInfo[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖動圖標即打開了桌面應用
  3677. U.MD.D.click(this, obj);
  3678. }, [_szherTeacherDeskIconInfo[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3683. }
  3684. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3685. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  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. }, [_heyuannAdminDeskIconInfo[i]]),
  3692. "onclick": U.UF.C.closure(function (obj) {
  3693. //防止拖動圖標即打開了桌面應用
  3694. U.MD.D.click(this, obj);
  3695. }, [_heyuannAdminDeskIconInfo[i]])
  3696. }, _frag); //
  3697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3700. }
  3701. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3702. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3703. if(_role === 0 && _heyuanTeacherDeskIconInfo[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. }, [_heyuanTeacherDeskIconInfo[i]]),
  3712. "onclick": U.UF.C.closure(function (obj) {
  3713. //防止拖動圖標即打開了桌面應用
  3714. U.MD.D.click(this, obj);
  3715. }, [_heyuanTeacherDeskIconInfo[i]])
  3716. }, _frag); //
  3717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3720. } //
  3721. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3722. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3723. _content = $$("div", {
  3724. className: "U_MD_D_KO",
  3725. "onmousedown": U.UF.C.closure(function (obj) {
  3726. //防止拖動圖標即打開了桌面應用
  3727. U.MD.D.click(this, obj);
  3728. }, [_dseiAdminDeskIconInfo[i]]),
  3729. "onclick": U.UF.C.closure(function (obj) {
  3730. //防止拖動圖標即打開了桌面應用
  3731. U.MD.D.click(this, obj);
  3732. }, [_dseiAdminDeskIconInfo[i]])
  3733. }, _frag); //
  3734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3737. }
  3738. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3739. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3740. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3741. continue
  3742. }
  3743. _content = $$("div", {
  3744. className: "U_MD_D_KO",
  3745. "onmousedown": U.UF.C.closure(function (obj) {
  3746. //防止拖動圖標即打開了桌面應用
  3747. U.MD.D.click(this, obj);
  3748. }, [_dseiTeacherDeskIconInfo[i]]),
  3749. "onclick": U.UF.C.closure(function (obj) {
  3750. //防止拖動圖標即打開了桌面應用
  3751. U.MD.D.click(this, obj);
  3752. }, [_dseiTeacherDeskIconInfo[i]])
  3753. }, _frag); //
  3754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3757. } //
  3758. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3759. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3760. _content = $$("div", {
  3761. className: "U_MD_D_KO",
  3762. "onmousedown": U.UF.C.closure(function (obj) {
  3763. //防止拖動圖標即打開了桌面應用
  3764. U.MD.D.click(this, obj);
  3765. }, [_chjyjAdminDeskIconInfo[i]]),
  3766. "onclick": U.UF.C.closure(function (obj) {
  3767. //防止拖動圖標即打開了桌面應用
  3768. U.MD.D.click(this, obj);
  3769. }, [_chjyjAdminDeskIconInfo[i]])
  3770. }, _frag); //
  3771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3774. }//
  3775. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3776. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3777. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3778. continue
  3779. }
  3780. _content = $$("div", {
  3781. className: "U_MD_D_KO",
  3782. "onmousedown": U.UF.C.closure(function (obj) {
  3783. //防止拖動圖標即打開了桌面應用
  3784. U.MD.D.click(this, obj);
  3785. }, [_chjyjTeacherDeskIconInfo[i]]),
  3786. "onclick": U.UF.C.closure(function (obj) {
  3787. //防止拖動圖標即打開了桌面應用
  3788. U.MD.D.click(this, obj);
  3789. }, [_chjyjTeacherDeskIconInfo[i]])
  3790. }, _frag); //
  3791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3794. }
  3795. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3796. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3797. _content = $$("div", {
  3798. className: "U_MD_D_KO",
  3799. "onmousedown": U.UF.C.closure(function (obj) {
  3800. //防止拖動圖標即打開了桌面應用
  3801. U.MD.D.click(this, obj);
  3802. }, [_szjkyAdminDeskIconInfo[i]]),
  3803. "onclick": U.UF.C.closure(function (obj) {
  3804. //防止拖動圖標即打開了桌面應用
  3805. U.MD.D.click(this, obj);
  3806. }, [_szjkyAdminDeskIconInfo[i]])
  3807. }, _frag); //
  3808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3811. }//
  3812. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3813. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3814. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3815. continue
  3816. }
  3817. _content = $$("div", {
  3818. className: "U_MD_D_KO",
  3819. "onmousedown": U.UF.C.closure(function (obj) {
  3820. //防止拖動圖標即打開了桌面應用
  3821. U.MD.D.click(this, obj);
  3822. }, [_szjkyTeacherDeskIconInfo[i]]),
  3823. "onclick": U.UF.C.closure(function (obj) {
  3824. //防止拖動圖標即打開了桌面應用
  3825. U.MD.D.click(this, obj);
  3826. }, [_szjkyTeacherDeskIconInfo[i]])
  3827. }, _frag); //
  3828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3831. }
  3832. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3833. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3834. _content = $$("div", {
  3835. className: "U_MD_D_KO",
  3836. "onmousedown": U.UF.C.closure(function (obj) {
  3837. //防止拖動圖標即打開了桌面應用
  3838. U.MD.D.click(this, obj);
  3839. }, [_x020201AdminDeskIconInfo[i]]),
  3840. "onclick": U.UF.C.closure(function (obj) {
  3841. //防止拖動圖標即打開了桌面應用
  3842. U.MD.D.click(this, obj);
  3843. }, [_x020201AdminDeskIconInfo[i]])
  3844. }, _frag); //
  3845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3848. }//
  3849. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3850. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3851. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3852. continue
  3853. }
  3854. _content = $$("div", {
  3855. className: "U_MD_D_KO",
  3856. "onmousedown": U.UF.C.closure(function (obj) {
  3857. //防止拖動圖標即打開了桌面應用
  3858. U.MD.D.click(this, obj);
  3859. }, [_x020201TeacherDeskIconInfo[i]]),
  3860. "onclick": U.UF.C.closure(function (obj) {
  3861. //防止拖動圖標即打開了桌面應用
  3862. U.MD.D.click(this, obj);
  3863. }, [_x020201TeacherDeskIconInfo[i]])
  3864. }, _frag); //
  3865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3868. }
  3869. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3870. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3871. _content = $$("div", {
  3872. className: "U_MD_D_KO",
  3873. "onmousedown": U.UF.C.closure(function (obj) {
  3874. //防止拖動圖標即打開了桌面應用
  3875. U.MD.D.click(this, obj);
  3876. }, [_SCNUETAdminDeskIconInfo[i]]),
  3877. "onclick": U.UF.C.closure(function (obj) {
  3878. //防止拖動圖標即打開了桌面應用
  3879. U.MD.D.click(this, obj);
  3880. }, [_SCNUETAdminDeskIconInfo[i]])
  3881. }, _frag); //
  3882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3885. }//
  3886. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3887. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3888. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3889. continue
  3890. }
  3891. _content = $$("div", {
  3892. className: "U_MD_D_KO",
  3893. "onmousedown": U.UF.C.closure(function (obj) {
  3894. //防止拖動圖標即打開了桌面應用
  3895. U.MD.D.click(this, obj);
  3896. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3897. "onclick": U.UF.C.closure(function (obj) {
  3898. //防止拖動圖標即打開了桌面應用
  3899. U.MD.D.click(this, obj);
  3900. }, [_SCNUETTeacherDeskIconInfo[i]])
  3901. }, _frag); //
  3902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3905. }
  3906. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3907. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3908. _content = $$("div", {
  3909. className: "U_MD_D_KO",
  3910. "onmousedown": U.UF.C.closure(function (obj) {
  3911. //防止拖動圖標即打開了桌面應用
  3912. U.MD.D.click(this, obj);
  3913. }, [_futianAdminDeskIconInfo[i]]),
  3914. "onclick": U.UF.C.closure(function (obj) {
  3915. //防止拖動圖標即打開了桌面應用
  3916. U.MD.D.click(this, obj);
  3917. }, [_futianAdminDeskIconInfo[i]])
  3918. }, _frag); //
  3919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3922. }
  3923. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3924. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3925. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3926. continue
  3927. }
  3928. _content = $$("div", {
  3929. className: "U_MD_D_KO",
  3930. "onmousedown": U.UF.C.closure(function (obj) {
  3931. //防止拖動圖標即打開了桌面應用
  3932. U.MD.D.click(this, obj);
  3933. }, [_futianTeacherDeskIconInfo[i]]),
  3934. "onclick": U.UF.C.closure(function (obj) {
  3935. //防止拖動圖標即打開了桌面應用
  3936. U.MD.D.click(this, obj);
  3937. }, [_futianTeacherDeskIconInfo[i]])
  3938. }, _frag); //
  3939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3942. }
  3943. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3944. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3945. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3946. continue
  3947. }
  3948. _content = $$("div", {
  3949. className: "U_MD_D_KO",
  3950. "onmousedown": U.UF.C.closure(function (obj) {
  3951. //防止拖動圖標即打開了桌面應用
  3952. U.MD.D.click(this, obj);
  3953. }, [_MingdeTeacherDeskIcon[i]]),
  3954. "onclick": U.UF.C.closure(function (obj) {
  3955. //防止拖動圖標即打開了桌面應用
  3956. U.MD.D.click(this, obj);
  3957. }, [_MingdeTeacherDeskIcon[i]])
  3958. }, _frag); //
  3959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3962. }
  3963. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3964. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3965. _content = $$("div", {
  3966. className: "U_MD_D_KO",
  3967. "onmousedown": U.UF.C.closure(function (obj) {
  3968. //防止拖動圖標即打開了桌面應用
  3969. U.MD.D.click(this, obj);
  3970. }, [_lhsAdminDesktopIconInfo[i]]),
  3971. "onclick": U.UF.C.closure(function (obj) {
  3972. //防止拖動圖標即打開了桌面應用
  3973. U.MD.D.click(this, obj);
  3974. }, [_lhsAdminDesktopIconInfo[i]])
  3975. }, _frag); //
  3976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3979. }
  3980. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3981. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3982. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3983. continue
  3984. }
  3985. _content = $$("div", {
  3986. className: "U_MD_D_KO",
  3987. "onmousedown": U.UF.C.closure(function (obj) {
  3988. //防止拖動圖標即打開了桌面應用
  3989. U.MD.D.click(this, obj);
  3990. }, [_lhsteacherDesktopIconInfo[i]]),
  3991. "onclick": U.UF.C.closure(function (obj) {
  3992. //防止拖動圖標即打開了桌面應用
  3993. U.MD.D.click(this, obj);
  3994. }, [_lhsteacherDesktopIconInfo[i]])
  3995. }, _frag); //
  3996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3999. }
  4000. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4001. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4002. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4003. continue
  4004. }
  4005. _content = $$("div", {
  4006. className: "U_MD_D_KO",
  4007. "onmousedown": U.UF.C.closure(function (obj) {
  4008. //防止拖動圖標即打開了桌面應用
  4009. U.MD.D.click(this, obj);
  4010. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4011. "onclick": U.UF.C.closure(function (obj) {
  4012. //防止拖動圖標即打開了桌面應用
  4013. U.MD.D.click(this, obj);
  4014. }, [_zhoujiateacherDesktopIconInfo[i]])
  4015. }, _frag); //
  4016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4019. }
  4020. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4021. for (i = 0; i < _hanDeskIcon.length; i++) {
  4022. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4023. continue
  4024. }
  4025. _content = $$("div", {
  4026. className: "U_MD_D_KO",
  4027. "onmousedown": U.UF.C.closure(function (obj) {
  4028. //防止拖動圖標即打開了桌面應用
  4029. U.MD.D.click(this, obj);
  4030. }, [_hanDeskIcon[i]]),
  4031. "onclick": U.UF.C.closure(function (obj) {
  4032. //防止拖動圖標即打開了桌面應用
  4033. U.MD.D.click(this, obj);
  4034. }, [_hanDeskIcon[i]])
  4035. }, _frag); //
  4036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4039. }
  4040. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4041. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4042. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4043. continue
  4044. }
  4045. _content = $$("div", {
  4046. className: "U_MD_D_KO",
  4047. "onmousedown": U.UF.C.closure(function (obj) {
  4048. //防止拖動圖標即打開了桌面應用
  4049. U.MD.D.click(this, obj);
  4050. }, [_orgStemDeskIcon[i]]),
  4051. "onclick": U.UF.C.closure(function (obj) {
  4052. //防止拖動圖標即打開了桌面應用
  4053. U.MD.D.click(this, obj);
  4054. }, [_orgStemDeskIcon[i]])
  4055. }, _frag); //
  4056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4059. }
  4060. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4061. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4062. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4063. continue
  4064. }
  4065. _content = $$("div", {
  4066. className: "U_MD_D_KO",
  4067. "onmousedown": U.UF.C.closure(function (obj) {
  4068. //防止拖動圖標即打開了桌面應用
  4069. U.MD.D.click(this, obj);
  4070. }, [_szulsDeskIcon[i]]),
  4071. "onclick": U.UF.C.closure(function (obj) {
  4072. //防止拖動圖標即打開了桌面應用
  4073. U.MD.D.click(this, obj);
  4074. }, [_szulsDeskIcon[i]])
  4075. }, _frag); //
  4076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4079. }
  4080. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4081. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4082. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4083. continue
  4084. }
  4085. _content = $$("div", {
  4086. className: "U_MD_D_KO",
  4087. "onmousedown": U.UF.C.closure(function (obj) {
  4088. //防止拖動圖標即打開了桌面應用
  4089. U.MD.D.click(this, obj);
  4090. }, [_orgDesktopIconInfo[i]]),
  4091. "onclick": U.UF.C.closure(function (obj) {
  4092. //防止拖動圖標即打開了桌面應用
  4093. U.MD.D.click(this, obj);
  4094. }, [_orgDesktopIconInfo[i]])
  4095. }, _frag); //
  4096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4099. }
  4100. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4101. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4102. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4103. continue
  4104. }
  4105. _content = $$("div", {
  4106. className: "U_MD_D_KO",
  4107. "onmousedown": U.UF.C.closure(function (obj) {
  4108. //防止拖動圖標即打開了桌面應用
  4109. U.MD.D.click(this, obj);
  4110. }, [_schoolDesktopIconInfo[i]]),
  4111. "onclick": U.UF.C.closure(function (obj) {
  4112. //防止拖動圖標即打開了桌面應用
  4113. U.MD.D.click(this, obj);
  4114. }, [_schoolDesktopIconInfo[i]])
  4115. }, _frag); //
  4116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4119. }
  4120. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4121. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4122. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4123. continue
  4124. }
  4125. _content = $$("div", {
  4126. className: "U_MD_D_KO",
  4127. "onmousedown": U.UF.C.closure(function (obj) {
  4128. //防止拖動圖標即打開了桌面應用
  4129. U.MD.D.click(this, obj);
  4130. }, [_GMteacherDesktopIconInfo[i]]),
  4131. "onclick": U.UF.C.closure(function (obj) {
  4132. //防止拖動圖標即打開了桌面應用
  4133. U.MD.D.click(this, obj);
  4134. }, [_GMteacherDesktopIconInfo[i]])
  4135. }, _frag); //
  4136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4139. }
  4140. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4141. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4142. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4143. continue
  4144. }
  4145. _content = $$("div", {
  4146. className: "U_MD_D_KO",
  4147. "onmousedown": U.UF.C.closure(function (obj) {
  4148. //防止拖動圖標即打開了桌面應用
  4149. U.MD.D.click(this, obj);
  4150. }, [_SONGteacherDesktopIconInfo[i]]),
  4151. "onclick": U.UF.C.closure(function (obj) {
  4152. //防止拖動圖標即打開了桌面應用
  4153. U.MD.D.click(this, obj);
  4154. }, [_SONGteacherDesktopIconInfo[i]])
  4155. }, _frag); //
  4156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4159. }
  4160. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4161. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4162. _content = $$("div", {
  4163. className: "U_MD_D_KO",
  4164. "onmousedown": U.UF.C.closure(function (obj) {
  4165. //防止拖動圖標即打開了桌面應用
  4166. U.MD.D.click(this, obj);
  4167. }, [_GMstudentDesktopIconInfo[i]]),
  4168. "onclick": U.UF.C.closure(function (obj) {
  4169. //防止拖動圖標即打開了桌面應用
  4170. U.MD.D.click(this, obj);
  4171. }, [_GMstudentDesktopIconInfo[i]])
  4172. }, _frag); //
  4173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4176. }
  4177. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4178. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4179. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4180. continue
  4181. }
  4182. _content = $$("div", {
  4183. className: "U_MD_D_KO",
  4184. "onmousedown": U.UF.C.closure(function (obj) {
  4185. //防止拖動圖標即打開了桌面應用
  4186. U.MD.D.click(this, obj);
  4187. }, [_tcTeacherDeskIconInfo[i]]),
  4188. "onclick": U.UF.C.closure(function (obj) {
  4189. //防止拖動圖標即打開了桌面應用
  4190. U.MD.D.click(this, obj);
  4191. }, [_tcTeacherDeskIconInfo[i]])
  4192. }, _frag); //
  4193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4196. }
  4197. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4198. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4199. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4200. continue
  4201. }
  4202. _content = $$("div", {
  4203. className: "U_MD_D_KO",
  4204. "onmousedown": U.UF.C.closure(function (obj) {
  4205. //防止拖動圖標即打開了桌面應用
  4206. U.MD.D.click(this, obj);
  4207. }, [_tcOrganizerDeskIconInfo[i]]),
  4208. "onclick": U.UF.C.closure(function (obj) {
  4209. //防止拖動圖標即打開了桌面應用
  4210. U.MD.D.click(this, obj);
  4211. }, [_tcOrganizerDeskIconInfo[i]])
  4212. }, _frag); //
  4213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4216. }
  4217. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4218. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4219. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4220. continue
  4221. }
  4222. _content = $$("div", {
  4223. className: "U_MD_D_KO",
  4224. "onmousedown": U.UF.C.closure(function (obj) {
  4225. //防止拖動圖標即打開了桌面應用
  4226. U.MD.D.click(this, obj);
  4227. }, [_szscTeacherDeskIconInfo[i]]),
  4228. "onclick": U.UF.C.closure(function (obj) {
  4229. //防止拖動圖標即打開了桌面應用
  4230. U.MD.D.click(this, obj);
  4231. }, [_szscTeacherDeskIconInfo[i]])
  4232. }, _frag); //
  4233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4236. }
  4237. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4238. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4239. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4240. continue
  4241. }
  4242. _content = $$("div", {
  4243. className: "U_MD_D_KO",
  4244. "onmousedown": U.UF.C.closure(function (obj) {
  4245. //防止拖動圖標即打開了桌面應用
  4246. U.MD.D.click(this, obj);
  4247. }, [_szscOrganizerDeskIconInfo[i]]),
  4248. "onclick": U.UF.C.closure(function (obj) {
  4249. //防止拖動圖標即打開了桌面應用
  4250. U.MD.D.click(this, obj);
  4251. }, [_szscOrganizerDeskIconInfo[i]])
  4252. }, _frag); //
  4253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4256. }
  4257. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4258. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4259. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4260. continue
  4261. }
  4262. _content = $$("div", {
  4263. className: "U_MD_D_KO",
  4264. "onmousedown": U.UF.C.closure(function (obj) {
  4265. //防止拖動圖標即打開了桌面應用
  4266. U.MD.D.click(this, obj);
  4267. }, [_nsfxTeacherDeskIconInfo[i]]),
  4268. "onclick": U.UF.C.closure(function (obj) {
  4269. //防止拖動圖標即打開了桌面應用
  4270. U.MD.D.click(this, obj);
  4271. }, [_nsfxTeacherDeskIconInfo[i]])
  4272. }, _frag); //
  4273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4276. }
  4277. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4278. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4279. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4280. continue
  4281. }
  4282. _content = $$("div", {
  4283. className: "U_MD_D_KO",
  4284. "onmousedown": U.UF.C.closure(function (obj) {
  4285. //防止拖動圖標即打開了桌面應用
  4286. U.MD.D.click(this, obj);
  4287. }, [_stiaTeacherDeskIconInfo[i]]),
  4288. "onclick": U.UF.C.closure(function (obj) {
  4289. //防止拖動圖標即打開了桌面應用
  4290. U.MD.D.click(this, obj);
  4291. }, [_stiaTeacherDeskIconInfo[i]])
  4292. }, _frag); //
  4293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4296. }
  4297. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4298. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4299. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4300. continue
  4301. }
  4302. _content = $$("div", {
  4303. className: "U_MD_D_KO",
  4304. "onmousedown": U.UF.C.closure(function (obj) {
  4305. //防止拖動圖標即打開了桌面應用
  4306. U.MD.D.click(this, obj);
  4307. }, [_szdjgTeacherDeskIconInfo[i]]),
  4308. "onclick": U.UF.C.closure(function (obj) {
  4309. //防止拖動圖標即打開了桌面應用
  4310. U.MD.D.click(this, obj);
  4311. }, [_szdjgTeacherDeskIconInfo[i]])
  4312. }, _frag); //
  4313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4316. }
  4317. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4318. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4319. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4320. continue
  4321. }
  4322. _content = $$("div", {
  4323. className: "U_MD_D_KO",
  4324. "onmousedown": U.UF.C.closure(function (obj) {
  4325. //防止拖動圖標即打開了桌面應用
  4326. U.MD.D.click(this, obj);
  4327. }, [_x010607TeacherDeskIconInfo[i]]),
  4328. "onclick": U.UF.C.closure(function (obj) {
  4329. //防止拖動圖標即打開了桌面應用
  4330. U.MD.D.click(this, obj);
  4331. }, [_x010607TeacherDeskIconInfo[i]])
  4332. }, _frag); //
  4333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4336. }
  4337. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4338. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4339. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4340. continue
  4341. }
  4342. _content = $$("div", {
  4343. className: "U_MD_D_KO",
  4344. "onmousedown": U.UF.C.closure(function (obj) {
  4345. //防止拖動圖標即打開了桌面應用
  4346. U.MD.D.click(this, obj);
  4347. }, [_xhlyTeacherDeskIconInfo[i]]),
  4348. "onclick": U.UF.C.closure(function (obj) {
  4349. //防止拖動圖標即打開了桌面應用
  4350. U.MD.D.click(this, obj);
  4351. }, [_xhlyTeacherDeskIconInfo[i]])
  4352. }, _frag); //
  4353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4356. }
  4357. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4358. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4359. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4360. continue
  4361. }
  4362. _content = $$("div", {
  4363. className: "U_MD_D_KO",
  4364. "onmousedown": U.UF.C.closure(function (obj) {
  4365. //防止拖動圖標即打開了桌面應用
  4366. U.MD.D.click(this, obj);
  4367. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4368. "onclick": U.UF.C.closure(function (obj) {
  4369. //防止拖動圖標即打開了桌面應用
  4370. U.MD.D.click(this, obj);
  4371. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4372. }, _frag); //
  4373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4376. }
  4377. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4378. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4379. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4380. continue
  4381. }
  4382. _content = $$("div", {
  4383. className: "U_MD_D_KO",
  4384. "onmousedown": U.UF.C.closure(function (obj) {
  4385. //防止拖動圖標即打開了桌面應用
  4386. U.MD.D.click(this, obj);
  4387. }, [_x010503TeacherDeskIconInfo[i]]),
  4388. "onclick": U.UF.C.closure(function (obj) {
  4389. //防止拖動圖標即打開了桌面應用
  4390. U.MD.D.click(this, obj);
  4391. }, [_x010503TeacherDeskIconInfo[i]])
  4392. }, _frag); //
  4393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4396. }
  4397. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4398. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4399. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4400. continue
  4401. }
  4402. _content = $$("div", {
  4403. className: "U_MD_D_KO",
  4404. "onmousedown": U.UF.C.closure(function (obj) {
  4405. //防止拖動圖標即打開了桌面應用
  4406. U.MD.D.click(this, obj);
  4407. }, [_x010504TeacherDeskIconInfo[i]]),
  4408. "onclick": U.UF.C.closure(function (obj) {
  4409. //防止拖動圖標即打開了桌面應用
  4410. U.MD.D.click(this, obj);
  4411. }, [_x010504TeacherDeskIconInfo[i]])
  4412. }, _frag); //
  4413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4416. }
  4417. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4418. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4419. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4420. continue
  4421. }
  4422. _content = $$("div", {
  4423. className: "U_MD_D_KO",
  4424. "onmousedown": U.UF.C.closure(function (obj) {
  4425. //防止拖動圖標即打開了桌面應用
  4426. U.MD.D.click(this, obj);
  4427. }, [_x010505TeacherDeskIconInfo[i]]),
  4428. "onclick": U.UF.C.closure(function (obj) {
  4429. //防止拖動圖標即打開了桌面應用
  4430. U.MD.D.click(this, obj);
  4431. }, [_x010505TeacherDeskIconInfo[i]])
  4432. }, _frag); //
  4433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4436. }
  4437. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4438. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4439. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4440. continue
  4441. }
  4442. _content = $$("div", {
  4443. className: "U_MD_D_KO",
  4444. "onmousedown": U.UF.C.closure(function (obj) {
  4445. //防止拖動圖標即打開了桌面應用
  4446. U.MD.D.click(this, obj);
  4447. }, [_x010404TeacherDeskIconInfo[i]]),
  4448. "onclick": U.UF.C.closure(function (obj) {
  4449. //防止拖動圖標即打開了桌面應用
  4450. U.MD.D.click(this, obj);
  4451. }, [_x010404TeacherDeskIconInfo[i]])
  4452. }, _frag); //
  4453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4456. }
  4457. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4458. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4459. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4460. continue
  4461. }
  4462. _content = $$("div", {
  4463. className: "U_MD_D_KO",
  4464. "onmousedown": U.UF.C.closure(function (obj) {
  4465. //防止拖動圖標即打開了桌面應用
  4466. U.MD.D.click(this, obj);
  4467. }, [_x010204TeacherDeskIconInfo[i]]),
  4468. "onclick": U.UF.C.closure(function (obj) {
  4469. //防止拖動圖標即打開了桌面應用
  4470. U.MD.D.click(this, obj);
  4471. }, [_x010204TeacherDeskIconInfo[i]])
  4472. }, _frag); //
  4473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4476. }
  4477. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4478. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4479. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4480. continue
  4481. }
  4482. _content = $$("div", {
  4483. className: "U_MD_D_KO",
  4484. "onmousedown": U.UF.C.closure(function (obj) {
  4485. //防止拖動圖標即打開了桌面應用
  4486. U.MD.D.click(this, obj);
  4487. }, [_x320101TeacherDeskIconInfo[i]]),
  4488. "onclick": U.UF.C.closure(function (obj) {
  4489. //防止拖動圖標即打開了桌面應用
  4490. U.MD.D.click(this, obj);
  4491. }, [_x320101TeacherDeskIconInfo[i]])
  4492. }, _frag); //
  4493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4496. }
  4497. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4498. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4499. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4500. continue
  4501. }
  4502. _content = $$("div", {
  4503. className: "U_MD_D_KO",
  4504. "onmousedown": U.UF.C.closure(function (obj) {
  4505. //防止拖動圖標即打開了桌面應用
  4506. U.MD.D.click(this, obj);
  4507. }, [_trailTeacherDeskIconInfo[i]]),
  4508. "onclick": U.UF.C.closure(function (obj) {
  4509. //防止拖動圖標即打開了桌面應用
  4510. U.MD.D.click(this, obj);
  4511. }, [_trailTeacherDeskIconInfo[i]])
  4512. }, _frag); //
  4513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4516. }
  4517. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4518. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4519. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4520. continue
  4521. }
  4522. _content = $$("div", {
  4523. className: "U_MD_D_KO",
  4524. "onmousedown": U.UF.C.closure(function (obj) {
  4525. //防止拖動圖標即打開了桌面應用
  4526. U.MD.D.click(this, obj);
  4527. }, [_trialTeacherDeskIconInfo[i]]),
  4528. "onclick": U.UF.C.closure(function (obj) {
  4529. //防止拖動圖標即打開了桌面應用
  4530. U.MD.D.click(this, obj);
  4531. }, [_trialTeacherDeskIconInfo[i]])
  4532. }, _frag); //
  4533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4536. }
  4537. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4538. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4539. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4540. continue
  4541. }
  4542. _content = $$("div", {
  4543. className: "U_MD_D_KO",
  4544. "onmousedown": U.UF.C.closure(function (obj) {
  4545. //防止拖動圖標即打開了桌面應用
  4546. U.MD.D.click(this, obj);
  4547. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4548. "onclick": U.UF.C.closure(function (obj) {
  4549. //防止拖動圖標即打開了桌面應用
  4550. U.MD.D.click(this, obj);
  4551. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4552. }, _frag); //
  4553. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4554. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4555. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4556. }
  4557. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4558. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4559. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4560. continue
  4561. }
  4562. _content = $$("div", {
  4563. className: "U_MD_D_KO",
  4564. "onmousedown": U.UF.C.closure(function (obj) {
  4565. //防止拖動圖標即打開了桌面應用
  4566. U.MD.D.click(this, obj);
  4567. }, [_szsyTeacherDeskIconInfo[i]]),
  4568. "onclick": U.UF.C.closure(function (obj) {
  4569. //防止拖動圖標即打開了桌面應用
  4570. U.MD.D.click(this, obj);
  4571. }, [_szsyTeacherDeskIconInfo[i]])
  4572. }, _frag); //
  4573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4576. }
  4577. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4578. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4579. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4580. continue
  4581. }
  4582. _content = $$("div", {
  4583. className: "U_MD_D_KO",
  4584. "onmousedown": U.UF.C.closure(function (obj) {
  4585. //防止拖動圖標即打開了桌面應用
  4586. U.MD.D.click(this, obj);
  4587. }, [_x010608TeacherDeskIconInfo[i]]),
  4588. "onclick": U.UF.C.closure(function (obj) {
  4589. //防止拖動圖標即打開了桌面應用
  4590. U.MD.D.click(this, obj);
  4591. }, [_x010608TeacherDeskIconInfo[i]])
  4592. }, _frag); //
  4593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4596. }
  4597. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4598. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4599. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4600. continue
  4601. }
  4602. _content = $$("div", {
  4603. className: "U_MD_D_KO",
  4604. "onmousedown": U.UF.C.closure(function (obj) {
  4605. //防止拖動圖標即打開了桌面應用
  4606. U.MD.D.click(this, obj);
  4607. }, [_x010611TeacherDeskIconInfo[i]]),
  4608. "onclick": U.UF.C.closure(function (obj) {
  4609. //防止拖動圖標即打開了桌面應用
  4610. U.MD.D.click(this, obj);
  4611. }, [_x010611TeacherDeskIconInfo[i]])
  4612. }, _frag); //
  4613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4616. }
  4617. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4618. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4619. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4620. continue
  4621. }
  4622. _content = $$("div", {
  4623. className: "U_MD_D_KO",
  4624. "onmousedown": U.UF.C.closure(function (obj) {
  4625. //防止拖動圖標即打開了桌面應用
  4626. U.MD.D.click(this, obj);
  4627. }, [_x010612TeacherDeskIconInfo[i]]),
  4628. "onclick": U.UF.C.closure(function (obj) {
  4629. //防止拖動圖標即打開了桌面應用
  4630. U.MD.D.click(this, obj);
  4631. }, [_x010612TeacherDeskIconInfo[i]])
  4632. }, _frag); //
  4633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4636. }
  4637. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4638. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4639. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4640. continue
  4641. }
  4642. _content = $$("div", {
  4643. className: "U_MD_D_KO",
  4644. "onmousedown": U.UF.C.closure(function (obj) {
  4645. //防止拖動圖標即打開了桌面應用
  4646. U.MD.D.click(this, obj);
  4647. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4648. "onclick": U.UF.C.closure(function (obj) {
  4649. //防止拖動圖標即打開了桌面應用
  4650. U.MD.D.click(this, obj);
  4651. }, [_tianyuanTeacherDeskIconInfo[i]])
  4652. }, _frag); //
  4653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4656. }
  4657. } else {
  4658. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4659. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4660. continue
  4661. }
  4662. _content = $$("div", {
  4663. className: "U_MD_D_KO",
  4664. "onmousedown": U.UF.C.closure(function (obj) {
  4665. //防止拖動圖標即打開了桌面應用
  4666. U.MD.D.click(this, obj);
  4667. }, [_teacherDesktopIconInfo[i]]),
  4668. "onclick": U.UF.C.closure(function (obj) {
  4669. //防止拖動圖標即打開了桌面應用
  4670. U.MD.D.click(this, obj);
  4671. }, [_teacherDesktopIconInfo[i]])
  4672. }, _frag); //
  4673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4676. }
  4677. }
  4678. } else {
  4679. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4680. _content = $$("div", {
  4681. className: "U_MD_D_KO",
  4682. style: { 'width': '124px', 'height': '145px' },
  4683. "onmousedown": U.UF.C.closure(function (obj) {
  4684. //防止拖動圖標即打開了桌面應用
  4685. U.MD.D.click(this, obj);
  4686. }, [_easyDesktopIconInfo[i]]),
  4687. "onclick": U.UF.C.closure(function (obj) {
  4688. //防止拖動圖標即打開了桌面應用
  4689. U.MD.D.click(this, obj);
  4690. }, [_easyDesktopIconInfo[i]])
  4691. }, _frag); //
  4692. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4695. }
  4696. }
  4697. if (type == 1) {
  4698. //加載好後給圖標定位
  4699. U.MD.D.iconPostion($(_frag).Child());
  4700. } else {
  4701. //加載好後給圖標定位
  4702. U.MD.D.iconPostion2($(_frag).Child());
  4703. }
  4704. //把圖標加載到頁面
  4705. el.appendChild(_frag);
  4706. }
  4707. /**
  4708. * 顯示任務欄
  4709. *
  4710. * @param {element} 桌面元素
  4711. */
  4712. U.MD.D.I.displayTaskbar = function (el) {
  4713. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4714. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4715. //任務欄位置變化
  4716. U.selectEl(el).css({ "bottom": "0px" });
  4717. //桌面位置變話
  4718. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4719. }
  4720. }
  4721. //#region 桌面圖標拖動邏輯
  4722. /**
  4723. * 桌面排列圖標
  4724. *
  4725. * @param {element} 桌面元素
  4726. * @param {object} 上下相距的距離
  4727. * @param {object} 左右相距的距離
  4728. * @return {object} 命名空間
  4729. */
  4730. U.MD.D.iconPostion = function (childs, top, left) {
  4731. var i; //用於循環處理
  4732. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4733. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4734. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4735. for (i = 0; i < childs.length; i++) {
  4736. //如果豎排top超過了範圍處理
  4737. if (top + 95 > US.height - 10) {
  4738. //left超過了頁面範圍處理,則嚮上重疊打印處理
  4739. if ((left + 180) > US.width) {
  4740. top -= 110;
  4741. left -= 90;
  4742. }
  4743. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4744. else {
  4745. left += 90;
  4746. top = 15;
  4747. };
  4748. }
  4749. //給圖標的位置賦值
  4750. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4751. if (i < childs.length - 1) {
  4752. //頁面圖標每次嚮下加95
  4753. top += 95;
  4754. }
  4755. }
  4756. //返回最後調用的圖標的位置
  4757. return [top, left];
  4758. }
  4759. /**
  4760. * 桌面排列圖標
  4761. *
  4762. * @param {element} 桌面元素
  4763. * @param {object} 上下相距的距離
  4764. * @param {object} 左右相距的距離
  4765. * @return {object} 命名空間
  4766. */
  4767. U.MD.D.iconPostion2 = function (childs, top, left) {
  4768. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4769. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4770. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4771. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4772. for (i = 0; i < childs.length; i++) {
  4773. //如果豎排top超過了範圍處理
  4774. if (left + 150 > US.width - 10) {
  4775. //left超過了頁面範圍處理,則嚮上重疊打印處理
  4776. if ((top + 180) > US.Height) {
  4777. top -= 150;
  4778. left -= 150;
  4779. }
  4780. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4781. else {
  4782. top += 150;
  4783. left = ol;
  4784. };
  4785. }
  4786. //給圖標的位置賦值
  4787. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4788. if (i < childs.length - 1) {
  4789. //頁面圖標每次嚮下加95
  4790. left += 150;
  4791. }
  4792. }
  4793. //返回最後調用的圖標的位置
  4794. return [top, left];
  4795. }
  4796. /**
  4797. * 桌面點擊事件邏輯
  4798. *
  4799. * @param {element} 桌面元素
  4800. * @param {object} 上下相距的距離
  4801. * @param {object} 左右相距的距離
  4802. * @return {object} 命名空間
  4803. */
  4804. U.MD.D.click = function (el, obj) {
  4805. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4806. var _userinfo = US.userInfo;
  4807. U.UF.EV.stopBubble(); //阻止嚮上冒泡
  4808. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4809. if (_buttonnumber < 2) {
  4810. //如果是click事件的處理
  4811. if (event.type == "click") {
  4812. //如果元素在mousemove事件中沒有移動則出發click事件
  4813. if (!U.MD.D.I.IsDrag) {
  4814. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4815. U.alert("請先登錄您的賬號!");
  4816. setTimeout(() => {
  4817. U.MD.U.L.login();
  4818. }, 2000);
  4819. } else {
  4820. //打開應用處理
  4821. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4822. }
  4823. }
  4824. }
  4825. //如果是mouse事件的處理
  4826. else {
  4827. if (US.Config.type == '1') {
  4828. //拖動處理,添加拖動和拖動結束事件
  4829. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4830. }
  4831. }
  4832. U.MD.D.I.IsDrag = false;
  4833. }
  4834. }
  4835. /**
  4836. * 拖動的處理
  4837. *
  4838. */
  4839. U.MD.D.iconMove = function () {
  4840. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4841. U.MD.D.I.IsDrag = true;
  4842. }
  4843. /**
  4844. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4845. *
  4846. * @param {element} 拖動的元素
  4847. * @return {object} 命名空間
  4848. */
  4849. U.MD.D.iconUp = function (el) {
  4850. var _top = 15,
  4851. _left = 20,
  4852. _margin,
  4853. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4854. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4855. if (_positioninfo["OT"] > 15) {
  4856. //網狀的形式定位,如果差超過了55,那麼嚮下定位,否則嚮上定位
  4857. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4858. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4859. }
  4860. if (_positioninfo["OL"] > 20) {
  4861. //網狀的形式定位,如果差超過了90,那麼嚮右定位,否則嚮左定位
  4862. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4863. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4864. }
  4865. //while循環判斷麼一個重疊的元素
  4866. do {
  4867. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素嚮下定位
  4868. _top = _positioninfo[0] + 95; //得到定位後的top
  4869. _left = _positioninfo[1]; //得到定位後的left
  4870. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4871. }
  4872. /**
  4873. * 判斷拖動後圖標是否重疊
  4874. *
  4875. * @param {element} 拖動的元素
  4876. * @param {element} 桌面所有的元素
  4877. * @param {array} 拖動元素的位置
  4878. ----------[0] 上 top
  4879. ----------[1] 左 left
  4880. * @return {object} 命名空間
  4881. */
  4882. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4883. //循環所有的圖標
  4884. for (var i = 0; i < childs.length; i++) {
  4885. //判斷有沒有和該圖標誒子重疊的元素
  4886. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4887. return childs[i]; //如果有返回
  4888. }
  4889. }
  4890. }
  4891. //#endregion
  4892. //#endregion
  4893. //#region 桌面應用
  4894. /**
  4895. * 打開應用
  4896. *
  4897. * @param {string} 類型
  4898. -----------------Disk 網盤繫統
  4899. -----------------PDisk 學習繫統網盤
  4900. -----------------Poto 圖片
  4901. -----------------Video 視頻
  4902. -----------------Music 音樂
  4903. -----------------Word word
  4904. -----------------Excel excel
  4905. -----------------Txt 記事本
  4906. -----------------PB 學習繫統
  4907. -----------------Blog 朋友圈繫統
  4908. -----------------FTP ftp繫統
  4909. -----------------Group 好友群
  4910. -----------------SY 首頁繫統
  4911. -----------------Set 個人設置
  4912. -----------------XSet 繫統設置
  4913. -----------------App 我們所有的app
  4914. -----------------BC c.1473.cn 平臺
  4915. -----------------CWeb d.1473.cn 變成平臺
  4916. -----------------其他的外聯繫統 我們統一用iframe打開
  4917. * @param {array} 類型
  4918. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4919. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4920. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4921. 如果第一個參數為其他,則無第二個參數
  4922. * @returns {array}
  4923. */
  4924. window.addEventListener('message', function (e) { // 監聽 message 事件
  4925. // alert(e.data.type);
  4926. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4927. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4928. //3是展示全部階段 2學生 1老師 4專家
  4929. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4930. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4931. //3是展示全部階段 2學生 1老師 4專家
  4932. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4933. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4934. //3是展示全部階段 2學生 1老師 4專家
  4935. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4936. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4937. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4938. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4939. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4940. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4941. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4942. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4943. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4944. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4945. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4946. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4947. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4948. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4949. //3是展示全部階段 2學生 1老師 4專家
  4950. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4951. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4952. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4953. U.MD.D.I.selectUser();
  4954. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4955. var _formel = document.getElementById("study");
  4956. U.UF.F.windowZooming(_formel);
  4957. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4958. var _formel = document.getElementById("studyDetail");
  4959. U.UF.F.windowZooming(_formel);
  4960. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4961. var _formel = document.getElementById("studyDetail");
  4962. U.UF.F.windowZooming(_formel);
  4963. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4964. var _formel = document.getElementById("studentStudy");
  4965. U.UF.F.windowZooming(_formel);
  4966. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4967. // var _formel = document.getElementById("study");
  4968. //如果最大化了,那麼就把他縮小
  4969. // if (_formel.ismaximize) {
  4970. // return;
  4971. // }
  4972. // U.UF.F.windowZooming(_formel);
  4973. // U.UF.F.topWindow(_formel);
  4974. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4975. // var _formel = document.getElementById("studyDetail");
  4976. //如果最大化了,那麼就把他縮小
  4977. // if (_formel.ismaximize) {
  4978. // return;
  4979. // }
  4980. // U.UF.F.windowZooming(_formel);
  4981. // U.UF.F.topWindow(_formel);
  4982. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4983. // var _formel = document.getElementById("studentStudy");
  4984. // if (_formel.ismaximize) {
  4985. // return;
  4986. // }
  4987. // U.UF.F.windowZooming(_formel);
  4988. // U.UF.F.topWindow(_formel);
  4989. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4990. var _formel = document.getElementById("study");
  4991. // if (_formel.ismaximize) {
  4992. // return;
  4993. // }
  4994. // U.UF.F.windowZooming(_formel);
  4995. U.UF.F.topWindow(_formel);
  4996. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4997. var _formel = document.getElementById("studentIndex");
  4998. U.UF.F.windowZooming(_formel);
  4999. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5000. var _formel = document.getElementById("studyDetailS");
  5001. U.UF.F.windowZooming(_formel);
  5002. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5003. var _formel = document.getElementById("studioIndex");
  5004. U.UF.F.windowZooming(_formel);
  5005. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5006. var _formel = document.getElementById("studyDetailStudio");
  5007. U.UF.F.windowZooming(_formel);
  5008. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5009. var _formel = document.getElementById("studyDetailStudio");
  5010. U.UF.F.windowZooming(_formel);
  5011. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5012. var _formel = document.getElementById("studyDetailNT");
  5013. U.UF.F.windowZooming(_formel);
  5014. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5015. var _formel = document.getElementById("studyDetailS");
  5016. U.UF.F.windowZooming(_formel);
  5017. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5018. var _formel = document.getElementById("studyDetailS");
  5019. U.UF.F.topWindow(_formel);
  5020. } else if (e.data.tools && e.data.tools == "1") {
  5021. // U.MD.D.I.openApplication("whiteboard")
  5022. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5023. } else if (e.data.tools && e.data.tools == "2") {
  5024. U.MD.D.I.openApplication("note")
  5025. } else if (e.data.tools && e.data.tools == "3") {
  5026. // U.MD.D.I.openApplication("mind")
  5027. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5028. } else if (e.data.tools && e.data.tools == "4") {
  5029. U.MD.D.I.openApplication("investigation")
  5030. } else if (e.data.tools && e.data.tools == "6") {
  5031. // U.MD.D.I.openApplication("doc")
  5032. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5033. } else if (e.data.tools && e.data.tools == "7") {
  5034. // U.MD.D.I.openApplication("mindNetwork")
  5035. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5036. } else if (e.data.tools && e.data.tools == "8") {
  5037. U.MD.D.I.openApplication("library")
  5038. } else if (e.data.tools && e.data.tools == "17") {
  5039. U.MD.D.I.openApplication("stuLibrary")
  5040. } else if (e.data.tools && e.data.tools == "18") {
  5041. U.MD.D.I.openApplication("train")
  5042. } else if (e.data.tools && e.data.tools == "21") {
  5043. U.MD.D.I.openApplication("program")
  5044. } else if (e.data.tools && e.data.tools == "22") {
  5045. U.MD.D.I.openApplication("AIprogram2")
  5046. } else if (e.data.tools && e.data.tools == "23") {
  5047. U.MD.D.I.openApplication("Pythonprogram")
  5048. } else if (e.data.tools && e.data.tools == "24") {
  5049. U.MD.D.I.openApplication("AIprogram")
  5050. } else if (e.data.tools && e.data.tools == "25") {
  5051. U.MD.D.I.openApplication("sys")
  5052. } else if (e.data.tools && e.data.tools == "26") {
  5053. // U.MD.D.I.openApplication("courseDesign")
  5054. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5055. } else if (e.data.tools && e.data.tools == "31") {
  5056. U.MD.D.I.openApplication("netWorkPanel")
  5057. } else if (e.data.tools && e.data.tools == "32") {
  5058. U.MD.D.I.openApplication("codeEdit")
  5059. } else if (e.data.tools && e.data.tools == "57") {
  5060. U.MD.D.I.openApplication("CocoPi")
  5061. } else if (e.data.tools && e.data.tools == "63") {
  5062. U.MD.D.I.openApplication("Wood")
  5063. } else if (e.data.tools && e.data.tools == "58") {
  5064. U.MD.D.I.openApplication("car")
  5065. } else if (e.data.tools && e.data.tools == "59") {
  5066. U.MD.D.I.openApplication("lineSearch")
  5067. } else if (e.data.tools && e.data.tools == "60") {
  5068. U.MD.D.I.openApplication("deepLearning")
  5069. } else if (e.data.tools && e.data.tools == "61") {
  5070. U.MD.D.I.openApplication("allHistory")
  5071. } else if (e.data.tools && e.data.tools == "28") {
  5072. U.MD.D.I.openApplication("translation")
  5073. } else if (e.data.tools && e.data.tools == "37") {
  5074. U.MD.D.I.openApplication("mohe")
  5075. } else if (e.data.tools && e.data.tools == "38") {
  5076. U.MD.D.I.openApplication("24game")
  5077. } else if (e.data.tools && e.data.tools == "39") {
  5078. U.MD.D.I.openApplication("GeoGebra")
  5079. } else if (e.data.tools && e.data.tools == "43") {
  5080. U.MD.D.I.openApplication("studentEvaluate")
  5081. } else if (e.data.tools && e.data.tools == "44") {
  5082. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5083. } else if (e.data.tools && e.data.tools == "46") {
  5084. U.MD.D.I.openApplication("project")
  5085. } else if (e.data.tools && e.data.tools == "71") {
  5086. U.MD.D.I.openApplication("aigptCourse")
  5087. } else if (e.data.tools && e.data.tools == "72") {
  5088. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5089. } else if (e.data.tools && e.data.tools == "1s") {
  5090. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5091. } else if (e.data.tools && e.data.tools == "3s") {
  5092. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5093. } else if (e.data.tools && e.data.tools == "6s") {
  5094. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5095. } else if (e.data.tools && e.data.tools == "1studio") {
  5096. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5097. } else if (e.data.tools && e.data.tools == "3studio") {
  5098. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5099. } else if (e.data.tools && e.data.tools == "6studio") {
  5100. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5101. } else if (e.data.tools && e.data.tools == "3y") {
  5102. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5103. } else if (e.data.tools && e.data.tools == "1y") {
  5104. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5105. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5106. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5107. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5108. U.MD.D.I.openApplication("AIAnalyse")
  5109. } else if (e.data.tools && e.data.tools == "1teacher") {
  5110. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5111. } else if (e.data.tools && e.data.tools == "3teacher") {
  5112. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5113. } else if (e.data.tools && e.data.tools == "7teacher") {
  5114. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5115. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5116. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5117. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5118. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5119. } else if (e.data.tools && e.data.tools == "1E") {
  5120. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5121. } else if (e.data.tools && e.data.tools == "3E") {
  5122. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5123. } else if (e.data.tools && e.data.tools == "57y") {
  5124. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5125. } else if (e.data.tools && e.data.tools == "57u") {
  5126. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5127. } else if (e.data.tools && e.data.tools == "57teacher") {
  5128. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5129. } else if (e.data.tools && e.data.tools == "64") {
  5130. U.MD.D.I.openApplication("AIChat")
  5131. } else if (e.data.tools && e.data.tools == "66") {
  5132. U.MD.D.I.openApplication("formulaEdi")
  5133. } else if (e.data.tools && e.data.tools == "67") {
  5134. U.MD.D.I.openApplication("molStr")
  5135. } else if (e.data.tools && e.data.tools == "68") {
  5136. U.MD.D.I.openApplication("timeAxis")
  5137. } else if (e.data.tools && e.data.tools == "openCourse") {
  5138. let _data = {
  5139. typea: e.data.typea || '',
  5140. typeb: e.data.typeb || '',
  5141. typed: e.data.typed || '',
  5142. }
  5143. U.MD.D.I.openInApplication("index", _data)
  5144. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5145. let _data = {
  5146. classid: e.data.classid || '',
  5147. }
  5148. U.MD.D.I.openInApplication("dataClass", _data)
  5149. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5150. let _data = {
  5151. cid: e.data.cid || '',
  5152. gid: e.data.gid || '',
  5153. }
  5154. U.MD.D.I.openInApplication("opencCscl", _data)
  5155. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5156. U.MD.D.I.openApplication("dataBoardTest")
  5157. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5158. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5159. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5160. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5161. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5162. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5163. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5164. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5165. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5166. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5167. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5168. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5169. }else if (e.data.tools && e.data.tools == "loginSz") {
  5170. U.MD.D.I.openInApplication("loginSz")
  5171. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5172. if($('#classroom_observation_board')[0]){
  5173. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5174. }
  5175. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5176. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5177. if($('#classroom_observation_ob_comment')[0]){
  5178. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5179. }
  5180. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5181. }else if (e.data.tools && e.data.tools == "logout"){
  5182. U.MD.U.LO.logoutSystem()
  5183. }else if (e.data.tools && e.data.tools == "getLogin"){
  5184. let _iframe = $('#UI_Login')[0];
  5185. if (_iframe) {
  5186. var userInfo = US.userInfo;
  5187. var type = 2
  5188. if(userInfo && userInfo.userid){
  5189. type = 1
  5190. }
  5191. _contentWindow = _iframe.contentWindow;
  5192. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5193. }
  5194. }
  5195. });
  5196. U.MD.D.I.selectUser = function () {
  5197. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5198. if (res.value[0].length > 0) {
  5199. US.userInfo = res.value[0][0];
  5200. $(".userName")[0].innerHTML = US.userInfo.username;
  5201. }
  5202. }, [], { "type": "GET", "withCredentials": true });
  5203. }
  5204. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5205. var _userinfo = US.userInfo, //登錄用戶信息
  5206. _userid = US.userInfo.userid, //登錄用戶id
  5207. _oid = _userinfo.organizeid,
  5208. _type = US.userInfo.type,
  5209. _org = US.userInfo.org,
  5210. _role = US.userInfo.role,
  5211. _classId = US.userInfo.classid;
  5212. if (_type == 4) {
  5213. tType = 4
  5214. }
  5215. switch (str) {
  5216. case "studyDetailNT": //無終端模式
  5217. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5218. setTimeout(() => {
  5219. U.MD.U.L.login();
  5220. }, 2000);
  5221. } else {
  5222. _formdiv = new U.UF.UI.form(
  5223. "課程詳情",
  5224. $$("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 }), {
  5225. "id": "studyDetailNT",
  5226. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5227. "onresize": function () { }
  5228. }, {
  5229. closecallback: function () { }
  5230. }, { "style": { "height": "36px" } }).form; //創建窗體
  5231. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5232. break;
  5233. }
  5234. case "studyDetail":
  5235. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5236. setTimeout(() => {
  5237. U.MD.U.L.login();
  5238. }, 2000);
  5239. } else {
  5240. _formdiv = new U.UF.UI.form(
  5241. "課程詳情",
  5242. $$("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 }), {
  5243. "id": "studyDetail",
  5244. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5245. "onresize": function () { }
  5246. }, {
  5247. closecallback: function () { }
  5248. }, { "style": { "height": "36px" } }).form; //創建窗體
  5249. _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); } }
  5250. break;
  5251. }
  5252. case "studyDetailTrain":
  5253. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5254. setTimeout(() => {
  5255. U.MD.U.L.login();
  5256. }, 2000);
  5257. } else {
  5258. _formdiv = new U.UF.UI.form(
  5259. "培訓詳情",
  5260. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5261. "id": "studyDetailTrain",
  5262. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5263. "onresize": function () { }
  5264. }, {
  5265. closecallback: function () { }
  5266. }, { "style": { "height": "36px" } }).form; //創建窗體
  5267. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5268. break;
  5269. }
  5270. case "studyDetailS":
  5271. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5272. setTimeout(() => {
  5273. U.MD.U.L.login();
  5274. }, 2000);
  5275. } else {
  5276. _formdiv = new U.UF.UI.form(
  5277. "項目詳情",
  5278. $$("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 }), {
  5279. "id": "studyDetailS",
  5280. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5281. "onresize": function () { }
  5282. }, {
  5283. closecallback: function () { }
  5284. }, { "style": { "height": "36px" } }).form; //創建窗體
  5285. _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); } }
  5286. break;
  5287. }
  5288. case "studyDetailStudio":
  5289. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5290. setTimeout(() => {
  5291. U.MD.U.L.login();
  5292. }, 2000);
  5293. } else {
  5294. _formdiv = new U.UF.UI.form(
  5295. "工作詳情",
  5296. $$("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 }), {
  5297. "id": "studyDetailStudio",
  5298. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5299. "onresize": function () { }
  5300. }, {
  5301. closecallback: function () { }
  5302. }, { "style": { "height": "36px" } }).form; //創建窗體
  5303. _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); } }
  5304. break;
  5305. }
  5306. case "studyDetailS5":
  5307. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5308. setTimeout(() => {
  5309. U.MD.U.L.login();
  5310. }, 2000);
  5311. } else {
  5312. _formdiv = new U.UF.UI.form(
  5313. "項目詳情",
  5314. $$("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 }), {
  5315. "id": "studyDetailS",
  5316. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5317. "onresize": function () { }
  5318. }, {
  5319. closecallback: function () { }
  5320. }, { "style": { "height": "36px" } }).form; //創建窗體
  5321. _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); } }
  5322. break;
  5323. }
  5324. case "studyDetailGM":
  5325. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5326. setTimeout(() => {
  5327. U.MD.U.L.login();
  5328. }, 2000);
  5329. } else {
  5330. _formdiv = new U.UF.UI.form(
  5331. "課程詳情",
  5332. $$("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 }), {
  5333. "id": "studyDetail",
  5334. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5335. "onresize": function () { }
  5336. }, {
  5337. closecallback: function () { }
  5338. }, { "style": { "height": "36px" } }).form; //創建窗體
  5339. _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); } }
  5340. break;
  5341. }
  5342. case "hanUrl":
  5343. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5344. setTimeout(() => {
  5345. U.MD.U.L.login();
  5346. }, 2000);
  5347. } else {
  5348. _formdiv = new U.UF.UI.form(
  5349. "漢字宮",
  5350. $$("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" }), {
  5351. "id": "hanUrl",
  5352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //創建窗體
  5357. _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); } }
  5358. break;
  5359. }
  5360. case "index":
  5361. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5362. setTimeout(() => {
  5363. U.MD.U.L.login();
  5364. }, 2000);
  5365. } else {
  5366. _formdiv = new U.UF.UI.form(
  5367. "課程中心",
  5368. $$("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 }), {
  5369. "id": "study",
  5370. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5371. "onresize": function () { }
  5372. }, {
  5373. closecallback: function () { }
  5374. }, { "style": { "height": "36px" } }).form; //創建窗體
  5375. _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); } }
  5376. break;
  5377. }
  5378. case "dataClass":
  5379. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5380. setTimeout(() => {
  5381. U.MD.U.L.login();
  5382. }, 2000);
  5383. } else {
  5384. _formdiv = new U.UF.UI.form(
  5385. "數據報告",
  5386. $$("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 }), {
  5387. "id": "dataClass",
  5388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //創建窗體
  5393. _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); } }
  5394. break;
  5395. }
  5396. case "opencCscl":
  5397. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5398. setTimeout(() => {
  5399. U.MD.U.L.login();
  5400. }, 2000);
  5401. } else {
  5402. _formdiv = new U.UF.UI.form(
  5403. "協同建構",
  5404. $$("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 }), {
  5405. "id": "futureClass",
  5406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5407. "onresize": function () { }
  5408. }, {
  5409. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5410. }, { "style": { "height": "36px" } }).form; //創建窗體
  5411. _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); } }
  5412. break;
  5413. }
  5414. case "openCourseUpdate":
  5415. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5416. setTimeout(() => {
  5417. U.MD.U.L.login();
  5418. }, 2000);
  5419. } else {
  5420. _formdiv = new U.UF.UI.form(
  5421. "課程管理",
  5422. $$("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 }), {
  5423. "id": "openCourseUpdate",
  5424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5425. "onresize": function () { }
  5426. }, {
  5427. closecallback: function () { }
  5428. }, { "style": { "height": "36px" } }).form; //創建窗體
  5429. break;
  5430. }
  5431. case "openNewCourseUpdate":
  5432. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5433. setTimeout(() => {
  5434. U.MD.U.L.login();
  5435. }, 2000);
  5436. } else {
  5437. _formdiv = new U.UF.UI.form(
  5438. "課程管理",
  5439. $$("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 }), {
  5440. "id": "openCourseUpdate",
  5441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //創建窗體
  5446. break;
  5447. }
  5448. case "openCourseEUpdate":
  5449. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5450. setTimeout(() => {
  5451. U.MD.U.L.login();
  5452. }, 2000);
  5453. } else {
  5454. _formdiv = new U.UF.UI.form(
  5455. "課程管理",
  5456. $$("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 }), {
  5457. "id": "openCourseUpdate",
  5458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5459. "onresize": function () { }
  5460. }, {
  5461. closecallback: function () { }
  5462. }, { "style": { "height": "36px" } }).form; //創建窗體
  5463. break;
  5464. }
  5465. case "openCourseAiUpdate":
  5466. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5467. setTimeout(() => {
  5468. U.MD.U.L.login();
  5469. }, 2000);
  5470. } else {
  5471. _formdiv = new U.UF.UI.form(
  5472. "課程管理",
  5473. $$("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 }), {
  5474. "id": "openCourseUpdate",
  5475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5476. "onresize": function () { }
  5477. }, {
  5478. closecallback: function () { }
  5479. }, { "style": { "height": "36px" } }).form; //創建窗體
  5480. break;
  5481. }
  5482. case "openCourseAiUpdate2":
  5483. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5484. setTimeout(() => {
  5485. U.MD.U.L.login();
  5486. }, 2000);
  5487. } else {
  5488. _formdiv = new U.UF.UI.form(
  5489. "課程管理",
  5490. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5491. "id": "openCourseUpdate",
  5492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { }
  5496. }, { "style": { "height": "36px" } }).form; //創建窗體
  5497. break;
  5498. }
  5499. case "openCourseNewUpdate":
  5500. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5501. setTimeout(() => {
  5502. U.MD.U.L.login();
  5503. }, 2000);
  5504. } else {
  5505. _formdiv = new U.UF.UI.form(
  5506. "課程管理",
  5507. $$("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 }), {
  5508. "id": "openCourseUpdate",
  5509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5510. "onresize": function () { }
  5511. }, {
  5512. closecallback: function () { }
  5513. }, { "style": { "height": "36px" } }).form; //創建窗體
  5514. break;
  5515. }
  5516. case "inviteLoginSz":
  5517. _formdiv = new U.UF.UI.form(
  5518. "隨機碼登錄",
  5519. $$("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 }), {
  5520. "id": "loginSz",
  5521. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, { "style": { "height": "36px" } }).form; //創建窗體
  5526. break;
  5527. case "loginSz":
  5528. _formdiv = new U.UF.UI.form(
  5529. "教師登錄",
  5530. $$("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" }), {
  5531. "id": "loginSz",
  5532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //創建窗體
  5537. break;
  5538. case "teacher":
  5539. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5540. setTimeout(() => {
  5541. U.MD.U.L.login();
  5542. }, 2000);
  5543. } else {
  5544. _formdiv = new U.UF.UI.form(
  5545. "教師管理",
  5546. $$("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 }), {
  5547. "id": "teacher",
  5548. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5549. "onresize": function () { }
  5550. }, {
  5551. closecallback: function () { }
  5552. }, { "style": { "height": "36px" } }).form; //創建窗體
  5553. break;
  5554. }
  5555. case "dataBoardSZArea":
  5556. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5557. setTimeout(() => {
  5558. U.MD.U.L.login();
  5559. }, 2000);
  5560. } else {
  5561. _formdiv = new U.UF.UI.form(
  5562. "綜合數據看闆",
  5563. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5564. "id": "dataBoardSZArea",
  5565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //創建窗體
  5570. break;
  5571. }
  5572. case "dataBoardSZCity":
  5573. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5574. setTimeout(() => {
  5575. U.MD.U.L.login();
  5576. }, 2000);
  5577. } else {
  5578. _formdiv = new U.UF.UI.form(
  5579. "綜合數據看闆",
  5580. $$("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 }), {
  5581. "id": "dataBoardSZCity",
  5582. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //創建窗體
  5587. break;
  5588. }
  5589. case "classroom_observation_board":
  5590. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5591. setTimeout(() => {
  5592. U.MD.U.L.login();
  5593. }, 2000);
  5594. } else {
  5595. _formdiv = new U.UF.UI.form(
  5596. "課堂觀察",
  5597. $$("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 }), {
  5598. "id": "classroom_observation_board",
  5599. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5600. "onresize": function () { }
  5601. }, {
  5602. closecallback: function () { }
  5603. }, { "style": { "height": "36px" } }).form; //創建窗體
  5604. break;
  5605. }
  5606. case "classroom_observation_ob_comment":
  5607. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5608. setTimeout(() => {
  5609. U.MD.U.L.login();
  5610. }, 2000);
  5611. } else {
  5612. _formdiv = new U.UF.UI.form(
  5613. "課堂審核",
  5614. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5615. "id": "classroom_observation_ob_comment",
  5616. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //創建窗體
  5621. break;
  5622. }
  5623. case "gptConfig":
  5624. _formdiv = new U.UF.UI.form(
  5625. data.name ? data.name : "應用中心",
  5626. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5627. "id": "gptConfig" + data.id,
  5628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //創建窗體
  5633. break;
  5634. }
  5635. }
  5636. U.MD.D.I.openApplication = function (str, obj, info) {
  5637. obj = obj || {};
  5638. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5639. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5640. _userinfo = US.userInfo, //登錄用戶信息
  5641. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5642. _oid = obj.organizeid || _userinfo.organizeid,
  5643. _type = US.userInfo.type,
  5644. _org = obj.org || US.userInfo.org,
  5645. _role = US.userInfo.role,
  5646. _classId = US.userInfo.classid,
  5647. _TscreenType = 1
  5648. _screenType = 2,
  5649. _SscreenType = 3;
  5650. let iframeBool = true
  5651. if(U.UF.UI.form.allForm[str]){
  5652. iframeBool = false
  5653. }
  5654. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5655. return;
  5656. }
  5657. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student"]
  5658. if(opArray.includes(str)){
  5659. let _str = str
  5660. if(str == 'appStore'){
  5661. _str = "cocoFlow"
  5662. }else if(str == "futureClass"){
  5663. _str = "cocoNote"
  5664. }
  5665. try {
  5666. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5667. } catch (error) {
  5668. console.log(error);
  5669. }
  5670. }
  5671. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5672. switch (str) {
  5673. case "studnetProject": //好友打開
  5674. _formdiv = new U.UF.UI.form(
  5675. "我的項目",
  5676. $$("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 }), {
  5677. "id": "studnetProject",
  5678. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //創建窗體
  5683. _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); } }
  5684. break;
  5685. case "studentEvaluate": //好友打開
  5686. _formdiv = new U.UF.UI.form(
  5687. "我的評價",
  5688. $$("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 }), {
  5689. "id": "studentEvaluate",
  5690. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //創建窗體
  5695. _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); } }
  5696. break;
  5697. case "my":
  5698. _formdiv = new U.UF.UI.form(
  5699. "我的資料",
  5700. $$("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 }), {
  5701. "id": "my",
  5702. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //創建窗體
  5707. _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); } }
  5708. break;
  5709. case "program":
  5710. _formdiv = new U.UF.UI.form(
  5711. "編程平臺",
  5712. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5713. "id": "program",
  5714. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //創建窗體
  5719. _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); } }
  5720. break;
  5721. case "library":
  5722. _formdiv = new U.UF.UI.form(
  5723. "素材庫",
  5724. $$("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 }), {
  5725. "id": "library",
  5726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //創建窗體
  5731. _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); } }
  5732. break;
  5733. case "whiteboard":
  5734. _formdiv = new U.UF.UI.form(
  5735. "電子白闆",
  5736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5737. "id": "whiteboard",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //創建窗體
  5743. _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); } }
  5744. break;
  5745. case "investigation":
  5746. _formdiv = new U.UF.UI.form(
  5747. "問卷調查",
  5748. $$("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 }), {
  5749. "id": "investigation",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //創建窗體
  5755. _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); } }
  5756. break;
  5757. case "note":
  5758. _formdiv = new U.UF.UI.form(
  5759. "便簽分類",
  5760. $$("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 }), {
  5761. "id": "note",
  5762. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //創建窗體
  5767. _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); } }
  5768. break;
  5769. // case "score":
  5770. // _formdiv = new U.UF.UI.form(
  5771. // "量規評分",
  5772. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5773. // "id": "score",
  5774. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. // "onresize": function() {}
  5776. // }, {
  5777. // closecallback: function() {}
  5778. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5779. // _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); } }
  5780. // break;
  5781. case "mind":
  5782. _formdiv = new U.UF.UI.form(
  5783. "思維導圖",
  5784. $$("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"
  5785. "id": "mind",
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //創建窗體
  5791. _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); } }
  5792. break;
  5793. case "doc":
  5794. // U.MD.D.I.isRoom();
  5795. _formdiv = new U.UF.UI.form(
  5796. "協同文檔",
  5797. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5798. "id": "doc",
  5799. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5800. "onresize": function () { }
  5801. }, {
  5802. closecallback: function () { }
  5803. }, { "style": { "height": "36px" } }).form; //創建窗體
  5804. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5805. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5806. // })
  5807. _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); } }
  5808. break;
  5809. case "studentStudy":
  5810. _formdiv = new U.UF.UI.form(
  5811. "課程中心",
  5812. $$("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
  5813. "id": "studentStudy",
  5814. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5815. "onresize": function () { }
  5816. }, {
  5817. closecallback: function () { }
  5818. }, { "style": { "height": "36px" } }).form; //創建窗體
  5819. _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); } }
  5820. break;
  5821. case "train": //好友打開
  5822. _formdiv = new U.UF.UI.form(
  5823. "訓練平臺",
  5824. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5825. "id": "train",
  5826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5827. "onresize": function () { }
  5828. }, {
  5829. closecallback: function () { }
  5830. }, { "style": { "height": "36px" } }).form; //創建窗體
  5831. _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); } }
  5832. break;
  5833. case "mindNetwork": //好友打開
  5834. _formdiv = new U.UF.UI.form(
  5835. "思維網格",
  5836. $$("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 }), {
  5837. "id": "mindNetwork",
  5838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5839. "onresize": function () { }
  5840. }, {
  5841. closecallback: function () { }
  5842. }, { "style": { "height": "36px" } }).form; //創建窗體
  5843. _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); } }
  5844. break;
  5845. case "studentClassRoom": //好友打開
  5846. _formdiv = new U.UF.UI.form(
  5847. "實時課堂",
  5848. $$("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 }), {
  5849. "id": "studentClassRoom",
  5850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5851. "onresize": function () { }
  5852. }, {
  5853. closecallback: function () { }
  5854. }, { "style": { "height": "36px" } }).form; //創建窗體
  5855. _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); } }
  5856. setTimeout(() => {
  5857. U.UF.F.windowZooming(_formdiv)
  5858. }, 0);
  5859. break;
  5860. }
  5861. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5862. switch (str) {
  5863. case "studnetProject": //好友打開
  5864. _formdiv = new U.UF.UI.form(
  5865. "我的項目",
  5866. $$("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 }), {
  5867. "id": "studnetProject",
  5868. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5869. "onresize": function () { }
  5870. }, {
  5871. closecallback: function () { }
  5872. }, { "style": { "height": "36px" } }).form; //創建窗體
  5873. _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); } }
  5874. break;
  5875. case "studentEvaluate": //好友打開
  5876. _formdiv = new U.UF.UI.form(
  5877. "我的評價",
  5878. $$("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 }), {
  5879. "id": "studentEvaluate",
  5880. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5881. "onresize": function () { }
  5882. }, {
  5883. closecallback: function () { }
  5884. }, { "style": { "height": "36px" } }).form; //創建窗體
  5885. _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); } }
  5886. break;
  5887. case "my":
  5888. _formdiv = new U.UF.UI.form(
  5889. "我的資料",
  5890. $$("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 }), {
  5891. "id": "my",
  5892. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5893. "onresize": function () { }
  5894. }, {
  5895. closecallback: function () { }
  5896. }, { "style": { "height": "36px" } }).form; //創建窗體
  5897. _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); } }
  5898. break;
  5899. case "program":
  5900. _formdiv = new U.UF.UI.form(
  5901. "編程平臺",
  5902. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5903. "id": "program",
  5904. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5905. "onresize": function () { }
  5906. }, {
  5907. closecallback: function () { }
  5908. }, { "style": { "height": "36px" } }).form; //創建窗體
  5909. _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); } }
  5910. break;
  5911. case "library":
  5912. _formdiv = new U.UF.UI.form(
  5913. "素材庫",
  5914. $$("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 }), {
  5915. "id": "library",
  5916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5917. "onresize": function () { }
  5918. }, {
  5919. closecallback: function () { }
  5920. }, { "style": { "height": "36px" } }).form; //創建窗體
  5921. _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); } }
  5922. break;
  5923. case "whiteboard":
  5924. _formdiv = new U.UF.UI.form(
  5925. "電子白闆",
  5926. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5927. "id": "whiteboard",
  5928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5929. "onresize": function () { }
  5930. }, {
  5931. closecallback: function () { }
  5932. }, { "style": { "height": "36px" } }).form; //創建窗體
  5933. _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); } }
  5934. break;
  5935. case "investigation":
  5936. _formdiv = new U.UF.UI.form(
  5937. "問卷調查",
  5938. $$("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 }), {
  5939. "id": "investigation",
  5940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5941. "onresize": function () { }
  5942. }, {
  5943. closecallback: function () { }
  5944. }, { "style": { "height": "36px" } }).form; //創建窗體
  5945. _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); } }
  5946. break;
  5947. case "note":
  5948. _formdiv = new U.UF.UI.form(
  5949. "便簽分類",
  5950. $$("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 }), {
  5951. "id": "note",
  5952. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5953. "onresize": function () { }
  5954. }, {
  5955. closecallback: function () { }
  5956. }, { "style": { "height": "36px" } }).form; //創建窗體
  5957. _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); } }
  5958. break;
  5959. // case "score":
  5960. // _formdiv = new U.UF.UI.form(
  5961. // "量規評分",
  5962. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5963. // "id": "score",
  5964. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5965. // "onresize": function() {}
  5966. // }, {
  5967. // closecallback: function() {}
  5968. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5969. // _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); } }
  5970. // break;
  5971. case "mind":
  5972. _formdiv = new U.UF.UI.form(
  5973. "思維導圖",
  5974. $$("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"
  5975. "id": "mind",
  5976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5977. "onresize": function () { }
  5978. }, {
  5979. closecallback: function () { }
  5980. }, { "style": { "height": "36px" } }).form; //創建窗體
  5981. _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); } }
  5982. break;
  5983. case "doc":
  5984. // U.MD.D.I.isRoom();
  5985. _formdiv = new U.UF.UI.form(
  5986. "協同文檔",
  5987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5988. "id": "doc",
  5989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5990. "onresize": function () { }
  5991. }, {
  5992. closecallback: function () { }
  5993. }, { "style": { "height": "36px" } }).form; //創建窗體
  5994. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5995. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5996. })
  5997. _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); } }
  5998. break;
  5999. case "train": //好友打開
  6000. _formdiv = new U.UF.UI.form(
  6001. "訓練平臺",
  6002. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6003. "id": "train",
  6004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6005. "onresize": function () { }
  6006. }, {
  6007. closecallback: function () { }
  6008. }, { "style": { "height": "36px" } }).form; //創建窗體
  6009. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6010. break;
  6011. case "studentStudy":
  6012. _formdiv = new U.UF.UI.form(
  6013. "課程中心",
  6014. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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
  6015. "id": "studentStudy",
  6016. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6017. "onresize": function () { }
  6018. }, {
  6019. closecallback: function () { }
  6020. }, { "style": { "height": "36px" } }).form; //創建窗體
  6021. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6022. break;
  6023. case "mindNetwork": //好友打開
  6024. _formdiv = new U.UF.UI.form(
  6025. "思維網格",
  6026. $$("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 }), {
  6027. "id": "mindNetwork",
  6028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6029. "onresize": function () { }
  6030. }, {
  6031. closecallback: function () { }
  6032. }, { "style": { "height": "36px" } }).form; //創建窗體
  6033. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6034. break;
  6035. case "studentClassRoom": //好友打開
  6036. _formdiv = new U.UF.UI.form(
  6037. "實時課堂",
  6038. $$("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 }), {
  6039. "id": "studentClassRoom",
  6040. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6041. "onresize": function () { }
  6042. }, {
  6043. closecallback: function () { }
  6044. }, { "style": { "height": "36px" } }).form; //創建窗體
  6045. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6046. setTimeout(() => {
  6047. U.UF.F.windowZooming(_formdiv)
  6048. }, 0);
  6049. break;
  6050. }
  6051. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6052. //選擇應用處理
  6053. switch (str) {
  6054. case "project": //好友打開
  6055. _formdiv = new U.UF.UI.form(
  6056. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  6057. $$("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 }), {
  6058. "id": "project",
  6059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //創建窗體
  6064. _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); } }
  6065. break;
  6066. case "student":
  6067. _formdiv = new U.UF.UI.form(
  6068. "學生管理",
  6069. $$("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 }), {
  6070. "id": "student",
  6071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //創建窗體
  6076. _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); } }
  6077. break;
  6078. case "evaluate":
  6079. _formdiv = new U.UF.UI.form(
  6080. "學生評價",
  6081. $$("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 }), {
  6082. "id": "evaluate",
  6083. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //創建窗體
  6088. _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); } }
  6089. break;
  6090. case "sys":
  6091. _formdiv = new U.UF.UI.form(
  6092. "目標管理",
  6093. $$("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 }), {
  6094. "id": "sys",
  6095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6096. "onresize": function () { }
  6097. }, {
  6098. closecallback: function () { }
  6099. }, { "style": { "height": "36px" } }).form; //創建窗體
  6100. _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); } }
  6101. break;
  6102. case "courseDesign":
  6103. _formdiv = new U.UF.UI.form(
  6104. "項目設計",
  6105. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6106. "id": "courseDesign",
  6107. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6108. "onresize": function () { }
  6109. }, {
  6110. closecallback: function () { }
  6111. }, { "style": { "height": "36px" } }).form; //創建窗體
  6112. _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); } }
  6113. break;
  6114. case "program":
  6115. _formdiv = new U.UF.UI.form(
  6116. "編程平臺",
  6117. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6118. "id": "program",
  6119. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6120. "onresize": function () { }
  6121. }, {
  6122. closecallback: function () { }
  6123. }, { "style": { "height": "36px" } }).form; //創建窗體
  6124. _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); } }
  6125. break;
  6126. case "class":
  6127. _formdiv = new U.UF.UI.form(
  6128. "班級管理",
  6129. $$("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 }), {
  6130. "id": "class",
  6131. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6132. "onresize": function () { }
  6133. }, {
  6134. closecallback: function () { }
  6135. }, { "style": { "height": "36px" } }).form; //創建窗體
  6136. _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); } }
  6137. break;
  6138. case "Grade":
  6139. _formdiv = new U.UF.UI.form(
  6140. "年級管理",
  6141. $$("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 }), {
  6142. "id": "Grade",
  6143. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6144. "onresize": function () { }
  6145. }, {
  6146. closecallback: function () { }
  6147. }, { "style": { "height": "36px" } }).form; //創建窗體
  6148. _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); } }
  6149. break;
  6150. case "teacherOffice":
  6151. _formdiv = new U.UF.UI.form(
  6152. "教研室",
  6153. $$("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 }), {
  6154. "id": "teacherOffice",
  6155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6156. "onresize": function () { }
  6157. }, {
  6158. closecallback: function () { }
  6159. }, { "style": { "height": "36px" } }).form; //創建窗體
  6160. _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); } }
  6161. break;
  6162. case "my":
  6163. _formdiv = new U.UF.UI.form(
  6164. "我的資料",
  6165. $$("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 }), {
  6166. "id": "my",
  6167. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6168. "onresize": function () { }
  6169. }, {
  6170. closecallback: function () { }
  6171. }, { "style": { "height": "36px" } }).form; //創建窗體
  6172. _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); } }
  6173. break;
  6174. case "notice":
  6175. _formdiv = new U.UF.UI.form(
  6176. "通知公告",
  6177. $$("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 }), {
  6178. "id": "notice",
  6179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6180. "onresize": function () { }
  6181. }, {
  6182. closecallback: function () { }
  6183. }, { "style": { "height": "36px" } }).form; //創建窗體
  6184. _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); } }
  6185. break;
  6186. case "library":
  6187. _formdiv = new U.UF.UI.form(
  6188. "素材庫",
  6189. $$("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 }), {
  6190. "id": "library",
  6191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6192. "onresize": function () { }
  6193. }, {
  6194. closecallback: function () { }
  6195. }, { "style": { "height": "36px" } }).form; //創建窗體
  6196. _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); } }
  6197. break;
  6198. case "whiteboard":
  6199. _formdiv = new U.UF.UI.form(
  6200. "電子白闆",
  6201. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6202. "id": "whiteboard",
  6203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6204. "onresize": function () { }
  6205. }, {
  6206. closecallback: function () { }
  6207. }, { "style": { "height": "36px" } }).form; //創建窗體
  6208. _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); } }
  6209. break;
  6210. case "investigation":
  6211. _formdiv = new U.UF.UI.form(
  6212. "問卷調查",
  6213. $$("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 }), {
  6214. "id": "investigation",
  6215. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6216. "onresize": function () { }
  6217. }, {
  6218. closecallback: function () { }
  6219. }, { "style": { "height": "36px" } }).form; //創建窗體
  6220. _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); } }
  6221. break;
  6222. case "note":
  6223. _formdiv = new U.UF.UI.form(
  6224. "便簽分類",
  6225. $$("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 }), {
  6226. "id": "note",
  6227. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //創建窗體
  6232. _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); } }
  6233. break;
  6234. // case "score":
  6235. // _formdiv = new U.UF.UI.form(
  6236. // "量規評分",
  6237. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6238. // "id": "score",
  6239. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6240. // "onresize": function() {}
  6241. // }, {
  6242. // closecallback: function() {}
  6243. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6244. // _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); } }
  6245. // break;
  6246. case "mind":
  6247. _formdiv = new U.UF.UI.form(
  6248. "思維導圖",
  6249. $$("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"
  6250. "id": "mind",
  6251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //創建窗體
  6256. _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); } }
  6257. break;
  6258. case "doc":
  6259. // U.MD.D.I.isRoom();
  6260. _formdiv = new U.UF.UI.form(
  6261. "協同文檔",
  6262. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6263. "id": "doc",
  6264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //創建窗體
  6269. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6270. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6271. })
  6272. _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); } }
  6273. break;
  6274. case "study":
  6275. _formdiv = new U.UF.UI.form(
  6276. "課程中心",
  6277. $$("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
  6278. "id": "study",
  6279. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //創建窗體
  6284. _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); } }
  6285. break;
  6286. case "mindNetwork": //好友打開
  6287. _formdiv = new U.UF.UI.form(
  6288. "思維網格",
  6289. $$("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 }), {
  6290. "id": "mindNetwork",
  6291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //創建窗體
  6296. _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); } }
  6297. break;
  6298. case "train": //好友打開
  6299. _formdiv = new U.UF.UI.form(
  6300. "訓練平臺",
  6301. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6302. "id": "mindNetwork",
  6303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //創建窗體
  6308. _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); } }
  6309. break;
  6310. case "teacherClassRoom": //好友打開
  6311. _formdiv = new U.UF.UI.form(
  6312. "實時課堂",
  6313. $$("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 }), {
  6314. "id": "teacherClassRoom",
  6315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //創建窗體
  6320. _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); } }
  6321. setTimeout(() => {
  6322. U.UF.F.windowZooming(_formdiv)
  6323. }, 0);
  6324. break;
  6325. }
  6326. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6327. switch (str) {
  6328. case "project": //好友打開
  6329. _formdiv = new U.UF.UI.form(
  6330. "課程管理",
  6331. $$("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 }), {
  6332. "id": "project",
  6333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //創建窗體
  6338. _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); } }
  6339. break;
  6340. case "evaluate":
  6341. _formdiv = new U.UF.UI.form(
  6342. "學生評價",
  6343. $$("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 }), {
  6344. "id": "evaluate",
  6345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //創建窗體
  6350. _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); } }
  6351. break;
  6352. case "notice":
  6353. _formdiv = new U.UF.UI.form(
  6354. "通知公告",
  6355. $$("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 }), {
  6356. "id": "notice",
  6357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //創建窗體
  6362. _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); } }
  6363. break;
  6364. case "stuLibrary":
  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/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6368. "id": "stuLibrary",
  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/stuLibrary.png)" }, "name": "學習資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6375. break;
  6376. case "program":
  6377. _formdiv = new U.UF.UI.form(
  6378. "編程平臺",
  6379. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6380. "id": "program",
  6381. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6382. "onresize": function () { }
  6383. }, {
  6384. closecallback: function () { }
  6385. }, { "style": { "height": "36px" } }).form; //創建窗體
  6386. _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); } }
  6387. break;
  6388. case "whiteboard":
  6389. _formdiv = new U.UF.UI.form(
  6390. "電子白闆",
  6391. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6392. "id": "whiteboard",
  6393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //創建窗體
  6398. _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); } }
  6399. break;
  6400. case "investigation":
  6401. _formdiv = new U.UF.UI.form(
  6402. "問卷調查",
  6403. $$("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 }), {
  6404. "id": "investigation",
  6405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //創建窗體
  6410. _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); } }
  6411. break;
  6412. case "mind":
  6413. _formdiv = new U.UF.UI.form(
  6414. "思維導圖",
  6415. $$("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"
  6416. "id": "mind",
  6417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //創建窗體
  6422. _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); } }
  6423. break;
  6424. case "doc":
  6425. // U.MD.D.I.isRoom();
  6426. _formdiv = new U.UF.UI.form(
  6427. "協同文檔",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6429. "id": "doc",
  6430. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //創建窗體
  6435. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6436. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6437. })
  6438. _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); } }
  6439. break;
  6440. case "study":
  6441. _formdiv = new U.UF.UI.form(
  6442. "課程中心",
  6443. $$("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
  6444. "id": "study",
  6445. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6446. "onresize": function () { }
  6447. }, {
  6448. closecallback: function () { }
  6449. }, { "style": { "height": "36px" } }).form; //創建窗體
  6450. _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); } }
  6451. break;
  6452. case "mindNetwork": //好友打開
  6453. _formdiv = new U.UF.UI.form(
  6454. "思維網格",
  6455. $$("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 }), {
  6456. "id": "mindNetwork",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //創建窗體
  6462. _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); } }
  6463. break;
  6464. case "train": //好友打開
  6465. _formdiv = new U.UF.UI.form(
  6466. "訓練平臺",
  6467. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6468. "id": "train",
  6469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6470. "onresize": function () { }
  6471. }, {
  6472. closecallback: function () { }
  6473. }, { "style": { "height": "36px" } }).form; //創建窗體
  6474. _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); } }
  6475. break;
  6476. case "sys":
  6477. _formdiv = new U.UF.UI.form(
  6478. "目標管理",
  6479. $$("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 }), {
  6480. "id": "sys",
  6481. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6482. "onresize": function () { }
  6483. }, {
  6484. closecallback: function () { }
  6485. }, { "style": { "height": "36px" } }).form; //創建窗體
  6486. _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); } }
  6487. break;
  6488. case "courseDesign":
  6489. _formdiv = new U.UF.UI.form(
  6490. "項目設計",
  6491. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6492. "id": "courseDesign",
  6493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6494. "onresize": function () { }
  6495. }, {
  6496. closecallback: function () { }
  6497. }, { "style": { "height": "36px" } }).form; //創建窗體
  6498. _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); } }
  6499. break;
  6500. }
  6501. } else if (!_type) {
  6502. switch (str) {
  6503. case "my":
  6504. _formdiv = new U.UF.UI.form(
  6505. "我的資料",
  6506. $$("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 }), {
  6507. "id": "my",
  6508. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //創建窗體
  6513. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6514. break;
  6515. }
  6516. }
  6517. switch (str) {
  6518. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6519. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6520. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6521. case "formulaEdi": //公式編輯
  6522. _formdiv = new U.UF.UI.form(
  6523. "公式編輯",
  6524. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6525. "id": "formulaEdi",
  6526. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //創建窗體
  6531. _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); } }
  6532. break;
  6533. case "molStr": //分子結構
  6534. _formdiv = new U.UF.UI.form(
  6535. "分子結構",
  6536. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6537. "id": "molStr",
  6538. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //創建窗體
  6543. _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); } }
  6544. break;
  6545. case "timeAxis": //時間軸
  6546. _formdiv = new U.UF.UI.form(
  6547. "時間軸",
  6548. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6549. "id": "timeAxis",
  6550. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6551. "onresize": function () { }
  6552. }, {
  6553. closecallback: function () { }
  6554. }, { "style": { "height": "36px" } }).form; //創建窗體
  6555. _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); } }
  6556. break;
  6557. case "AIprogram2": //AI體驗
  6558. _formdiv = new U.UF.UI.form(
  6559. "AI體驗",
  6560. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6561. "id": "AIprogram2",
  6562. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6563. "onresize": function () { }
  6564. }, {
  6565. closecallback: function () { }
  6566. }, { "style": { "height": "36px" } }).form; //創建窗體
  6567. _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); } }
  6568. break;
  6569. case "Pythonprogram": //python編程
  6570. _formdiv = new U.UF.UI.form(
  6571. "Python編程",
  6572. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6573. "id": "Pythonprogram",
  6574. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6575. "onresize": function () { }
  6576. }, {
  6577. closecallback: function () { }
  6578. }, { "style": { "height": "36px" } }).form; //創建窗體
  6579. _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); } }
  6580. break;
  6581. case "AIprogram": //ai編程
  6582. _formdiv = new U.UF.UI.form(
  6583. "AI編程平臺",
  6584. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6585. "id": "AIprogram",
  6586. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, { "style": { "height": "36px" } }).form; //創建窗體
  6591. _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); } }
  6592. break;
  6593. case "CocoPi": //CocoPi
  6594. _formdiv = new U.UF.UI.form(
  6595. "CocoPi",
  6596. $$("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" }), {
  6597. "id": "CocoPi",
  6598. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () { }
  6602. }, { "style": { "height": "36px" } }).form; //創建窗體
  6603. _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); } }
  6604. break;
  6605. case "Wood": //Wood
  6606. _formdiv = new U.UF.UI.form(
  6607. "海龜編程",
  6608. $$("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/" }), {
  6609. "id": "Wood",
  6610. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6611. "onresize": function () { }
  6612. }, {
  6613. closecallback: function () { }
  6614. }, { "style": { "height": "36px" } }).form; //創建窗體
  6615. _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); } }
  6616. break;
  6617. case "car": //模擬駕駛
  6618. _formdiv = new U.UF.UI.form(
  6619. "模擬駕駛",
  6620. $$("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/" }), {
  6621. "id": "car",
  6622. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, { "style": { "height": "36px" } }).form; //創建窗體
  6627. _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); } }
  6628. break;
  6629. case "lineSearch": //路徑搜索
  6630. _formdiv = new U.UF.UI.form(
  6631. "路徑搜索",
  6632. $$("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/" }), {
  6633. "id": "lineSearch",
  6634. "style": { "width": "70%", "height": "90%", "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/lineSearch.png)" }, "name": "路徑搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6640. break;
  6641. case "deepLearning": //深度學習
  6642. _formdiv = new U.UF.UI.form(
  6643. "深度學習",
  6644. $$("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/#" }), {
  6645. "id": "deepLearning",
  6646. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6647. "onresize": function () { }
  6648. }, {
  6649. closecallback: function () { }
  6650. }, { "style": { "height": "36px" } }).form; //創建窗體
  6651. _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); } }
  6652. break;
  6653. case "allHistory": //深度學習
  6654. _formdiv = new U.UF.UI.form(
  6655. "全歷史",
  6656. $$("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/" }), {
  6657. "id": "allHistory",
  6658. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6659. "onresize": function () { }
  6660. }, {
  6661. closecallback: function () { }
  6662. }, { "style": { "height": "36px" } }).form; //創建窗體
  6663. _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); } }
  6664. break;
  6665. case "chatPDF": //ai編程
  6666. _formdiv = new U.UF.UI.form(
  6667. "chatPDF",
  6668. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6669. "id": "chatPDF",
  6670. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6671. "onresize": function () { }
  6672. }, {
  6673. closecallback: function () { }
  6674. }, { "style": { "height": "36px" } }).form; //創建窗體
  6675. _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); } }
  6676. break;
  6677. case "resources": //國家教育
  6678. _formdiv = new U.UF.UI.form(
  6679. "國家教育",
  6680. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6681. "id": "resources",
  6682. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6683. "onresize": function () { }
  6684. }, {
  6685. closecallback: function () { }
  6686. }, { "style": { "height": "36px" } }).form; //創建窗體
  6687. _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); } }
  6688. break;
  6689. case "codeEdit": //源碼編輯
  6690. _formdiv = new U.UF.UI.form(
  6691. "源碼編輯",
  6692. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6693. "id": "codeEdit",
  6694. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6695. "onresize": function () { }
  6696. }, {
  6697. closecallback: function () { }
  6698. }, { "style": { "height": "36px" } }).form; //創建窗體
  6699. _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); } }
  6700. break; //
  6701. case "MindMap": //MindMap
  6702. _formdiv = new U.UF.UI.form(
  6703. "MindMap",
  6704. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6705. "id": "MindMap",
  6706. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6707. "onresize": function () { }
  6708. }, {
  6709. closecallback: function () { }
  6710. }, { "style": { "height": "36px" } }).form; //創建窗體
  6711. _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); } }
  6712. break;
  6713. case "netWorkPanel": //netWorkPanel
  6714. _formdiv = new U.UF.UI.form(
  6715. "netWorkPanel",
  6716. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6717. "id": "netWorkPanel",
  6718. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6719. "onresize": function () { }
  6720. }, {
  6721. closecallback: function () { }
  6722. }, { "style": { "height": "36px" } }).form; //創建窗體
  6723. _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); } }
  6724. break;
  6725. case "GeoGebra": //GeoGebra
  6726. _formdiv = new U.UF.UI.form(
  6727. "GeoGebra",
  6728. $$("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" }), {
  6729. "id": "GeoGebra",
  6730. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6731. "onresize": function () { }
  6732. }, {
  6733. closecallback: function () { }
  6734. }, { "style": { "height": "36px" } }).form; //創建窗體
  6735. _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); } }
  6736. break;
  6737. case "translation": //翻譯
  6738. _formdiv = new U.UF.UI.form(
  6739. "翻譯",
  6740. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6741. "id": "translation",
  6742. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6743. "onresize": function () { }
  6744. }, {
  6745. closecallback: function () { }
  6746. }, { "style": { "height": "36px" } }).form; //創建窗體
  6747. _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); } }
  6748. break;
  6749. case "mohe": //魔盒
  6750. _formdiv = new U.UF.UI.form(
  6751. "魔盒識字",
  6752. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6753. "id": "mohe",
  6754. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6755. "onresize": function () { }
  6756. }, {
  6757. closecallback: function () { }
  6758. }, { "style": { "height": "36px" } }).form; //創建窗體
  6759. _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); } }
  6760. break;
  6761. case "24game": //24點
  6762. _formdiv = new U.UF.UI.form(
  6763. "24點",
  6764. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6765. "id": "24game",
  6766. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6767. "onresize": function () { }
  6768. }, {
  6769. closecallback: function () { }
  6770. }, { "style": { "height": "36px" } }).form; //創建窗體
  6771. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24點", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6772. break;
  6773. case "case":
  6774. _formdiv = new U.UF.UI.form(
  6775. "課程進展",
  6776. $$("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 }), {
  6777. "id": "case",
  6778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //創建窗體
  6783. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "課程進展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6784. break;
  6785. case "snf":
  6786. _formdiv = new U.UF.UI.form(
  6787. "賽諾梵",
  6788. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6789. "id": "snf",
  6790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //創建窗體
  6795. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "賽諾梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6796. break;
  6797. case "hanFamily":
  6798. _formdiv = new U.UF.UI.form(
  6799. "漢字家族",
  6800. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6801. "id": "hanFamily",
  6802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //創建窗體
  6807. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "漢字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6808. break;
  6809. case "hanClassics":
  6810. _formdiv = new U.UF.UI.form(
  6811. "國學經典",
  6812. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6813. "id": "hanClassics",
  6814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //創建窗體
  6819. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "國學經典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6820. break;
  6821. case "hanTraining":
  6822. _formdiv = new U.UF.UI.form(
  6823. "筆畫訓練",
  6824. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6825. "id": "hanTraining",
  6826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //創建窗體
  6831. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "筆畫訓練", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6832. break;
  6833. case "hanClass":
  6834. _formdiv = new U.UF.UI.form(
  6835. "書法課堂",
  6836. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6837. "id": "hanClass",
  6838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //創建窗體
  6843. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "書法課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6844. break;
  6845. case "han":
  6846. _formdiv = new U.UF.UI.form(
  6847. "漢字宮",
  6848. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6849. "id": "han",
  6850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6851. "onresize": function () { }
  6852. }, {
  6853. closecallback: function () { }
  6854. }, { "style": { "height": "36px" } }).form; //創建窗體
  6855. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "漢字宮", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6856. break;
  6857. case "projectGM": //課程管理
  6858. _formdiv = new U.UF.UI.form(
  6859. "課程管理",
  6860. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6861. "id": "projectGM",
  6862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //創建窗體
  6867. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6868. break;
  6869. case "studyGM": //課程中心
  6870. _formdiv = new U.UF.UI.form(
  6871. "課程中心",
  6872. $$("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
  6873. "id": "study",
  6874. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //創建窗體
  6879. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6880. break;
  6881. // studentGM
  6882. case "studentGM": //學生管理
  6883. _formdiv = new U.UF.UI.form(
  6884. "學生管理",
  6885. $$("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 }), {
  6886. "id": "studentGM",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //創建窗體
  6892. _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); } }
  6893. break;
  6894. case "evaluateGM": //學生評價
  6895. _formdiv = new U.UF.UI.form(
  6896. "學生評價",
  6897. $$("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 }), {
  6898. "id": "evaluateGM",
  6899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //創建窗體
  6904. _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); } }
  6905. break;
  6906. // classGM
  6907. case "classGM": //班級管理
  6908. _formdiv = new U.UF.UI.form(
  6909. "班級管理",
  6910. $$("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 }), {
  6911. "id": "classGM",
  6912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, { "style": { "height": "36px" } }).form; //創建窗體
  6917. _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); } }
  6918. break;
  6919. // dataGM
  6920. case "dataGM":
  6921. _formdiv = new U.UF.UI.form(
  6922. "我的資料",
  6923. $$("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 }), {
  6924. "id": "dataGM",
  6925. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //創建窗體
  6930. _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); } }
  6931. break;
  6932. // caseGM
  6933. case "caseGM": //課程進展
  6934. _formdiv = new U.UF.UI.form(
  6935. "課程進展",
  6936. $$("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 }), {
  6937. "id": "caseGM",
  6938. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6939. "onresize": function () { }
  6940. }, {
  6941. closecallback: function () { }
  6942. }, { "style": { "height": "36px" } }).form; //創建窗體
  6943. _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); } }
  6944. break;
  6945. // meterialGM
  6946. case "meterialGM": //素材庫
  6947. _formdiv = new U.UF.UI.form(
  6948. "素材庫",
  6949. $$("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 }), {
  6950. "id": "meterialGM",
  6951. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6952. "onresize": function () { }
  6953. }, {
  6954. closecallback: function () { }
  6955. }, { "style": { "height": "36px" } }).form; //創建窗體
  6956. _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); } }
  6957. break;
  6958. // evaluateSGM
  6959. case "evaluateSGM": //我的評價
  6960. _formdiv = new U.UF.UI.form(
  6961. "我的評價",
  6962. $$("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 }), {
  6963. "id": "evaluateSGM",
  6964. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6965. "onresize": function () { }
  6966. }, {
  6967. closecallback: function () { }
  6968. }, { "style": { "height": "36px" } }).form; //創建窗體
  6969. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6970. break;
  6971. case "jupyter": //jupyter
  6972. _formdiv = new U.UF.UI.form(
  6973. "jupyter",
  6974. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6975. "id": "jupyter",
  6976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //創建窗體
  6981. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6982. break;
  6983. case "number": //數字實驗室
  6984. _formdiv = new U.UF.UI.form(
  6985. "數字實驗室",
  6986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6987. "id": "number",
  6988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6989. "onresize": function () { }
  6990. }, {
  6991. closecallback: function () { }
  6992. }, { "style": { "height": "36px" } }).form; //創建窗體
  6993. _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); } }
  6994. break;
  6995. case "studentCourse": //項目管理 學生
  6996. _formdiv = new U.UF.UI.form(
  6997. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6998. $$("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 }), {
  6999. "id": "studentCourse",
  7000. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7001. "onresize": function () { }
  7002. }, {
  7003. closecallback: function () { }
  7004. }, { "style": { "height": "36px" } }).form; //創建窗體
  7005. _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); } }
  7006. break;
  7007. case "studentCourseS": //項目管理 老師
  7008. _formdiv = new U.UF.UI.form(
  7009. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  7010. $$("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 }), {
  7011. "id": "studentCourseS",
  7012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7013. "onresize": function () { }
  7014. }, {
  7015. closecallback: function () { }
  7016. }, { "style": { "height": "36px" } }).form; //創建窗體
  7017. _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); } }
  7018. break;
  7019. case "studentIndex": //項目中心
  7020. _formdiv = new U.UF.UI.form(
  7021. "項目中心",
  7022. $$("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 }), {
  7023. "id": "studentIndex",
  7024. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7025. "onresize": function () { }
  7026. }, {
  7027. closecallback: function () { }
  7028. }, { "style": { "height": "36px" } }).form; //創建窗體
  7029. _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); } }
  7030. break;
  7031. case "CaseDesignS":
  7032. _formdiv = new U.UF.UI.form(
  7033. "項目進展",
  7034. $$("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 }), {
  7035. "id": "case",
  7036. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7037. "onresize": function () { }
  7038. }, {
  7039. closecallback: function () { }
  7040. }, { "style": { "height": "36px" } }).form; //創建窗體
  7041. _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); } }
  7042. break;
  7043. case "tcStudent": //騰訊學生管理
  7044. _formdiv = new U.UF.UI.form(
  7045. "學生管理",
  7046. $$("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 }), {
  7047. "id": "tcStudent",
  7048. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7049. "onresize": function () { }
  7050. }, {
  7051. closecallback: function () { }
  7052. }, { "style": { "height": "36px" } }).form; //創建窗體
  7053. _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); } }
  7054. break;
  7055. case "tcSchool": //騰訊學校管理
  7056. _formdiv = new U.UF.UI.form(
  7057. "學校管理",
  7058. $$("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 }), {
  7059. "id": "tcSchool",
  7060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7061. "onresize": function () { }
  7062. }, {
  7063. closecallback: function () { }
  7064. }, { "style": { "height": "36px" } }).form; //創建窗體
  7065. _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); } }
  7066. break;
  7067. case "tcTeacher": //騰訊學校管理
  7068. _formdiv = new U.UF.UI.form(
  7069. "教師管理",
  7070. $$("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 }), {
  7071. "id": "tcTeacher",
  7072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7073. "onresize": function () { }
  7074. }, {
  7075. closecallback: function () { }
  7076. }, { "style": { "height": "36px" } }).form; //創建窗體
  7077. _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); } }
  7078. break;
  7079. case "teacher":
  7080. _formdiv = new U.UF.UI.form(
  7081. "教師管理",
  7082. $$("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 }), {
  7083. "id": "teacher",
  7084. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7085. "onresize": function () { }
  7086. }, {
  7087. closecallback: function () { }
  7088. }, { "style": { "height": "36px" } }).form; //創建窗體
  7089. _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); } }
  7090. break;
  7091. case "tcData": //騰訊我的資料
  7092. _formdiv = new U.UF.UI.form(
  7093. "我的資料",
  7094. $$("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 }), {
  7095. "id": "tcData",
  7096. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, { "style": { "height": "36px" } }).form; //創建窗體
  7101. _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); } }
  7102. break;
  7103. case "tcNotice": //騰訊消息通知
  7104. _formdiv = new U.UF.UI.form(
  7105. "消息通知",
  7106. $$("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 }), {
  7107. "id": "tcNotice",
  7108. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () { }
  7112. }, { "style": { "height": "36px" } }).form; //創建窗體
  7113. _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); } }
  7114. break;
  7115. case "myReport": //好友打開
  7116. _formdiv = new U.UF.UI.form(
  7117. "我的評價",
  7118. $$("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 }), {
  7119. "id": "myReport",
  7120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7121. "onresize": function () { }
  7122. }, {
  7123. closecallback: function () { }
  7124. }, { "style": { "height": "36px" } }).form; //創建窗體
  7125. _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); } }
  7126. break;
  7127. case "learnAna": //好友打開
  7128. _formdiv = new U.UF.UI.form(
  7129. "學習分析",
  7130. $$("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 }), {
  7131. "id": "learnAna",
  7132. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7133. "onresize": function () { }
  7134. }, {
  7135. closecallback: function () { }
  7136. }, { "style": { "height": "36px" } }).form; //創建窗體
  7137. _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); } }
  7138. break;
  7139. case "AIChat": //AI共創
  7140. _formdiv = new U.UF.UI.form(
  7141. "AI共創",
  7142. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  7143. "id": "AIChat",
  7144. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7145. "onresize": function () { }
  7146. }, {
  7147. istop: true,
  7148. closecallback: function () { $("#aichat_icon").remove(); },
  7149. narrowcallback: function () {
  7150. if (!$("#aichat_icon")[0]) {
  7151. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7152. }
  7153. },
  7154. }, { "style": { "height": "36px" } }).form; //創建窗體
  7155. _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); } }
  7156. break;
  7157. case "ainew": //AI共創
  7158. _formdiv = new U.UF.UI.form(
  7159. "AI協同",
  7160. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  7161. "id": "ainew",
  7162. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7163. "onresize": function () { }
  7164. }, {
  7165. closecallback: function () { }
  7166. }, { "style": { "height": "36px" } }).form; //創建窗體
  7167. _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); } }
  7168. break;
  7169. case "gpt4": //gpt4
  7170. _formdiv = new U.UF.UI.form(
  7171. "AI助手",
  7172. $$("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 }), {
  7173. "id": "gpt4",
  7174. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //創建窗體
  7179. _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); } }
  7180. break;
  7181. case "aigpt": //gpt4
  7182. _formdiv = new U.UF.UI.form(
  7183. "AI助手+",
  7184. $$("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 }), {
  7185. "id": "aigpt",
  7186. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () {
  7190. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7191. }
  7192. }, { "style": { "height": "36px" } }).form; //創建窗體
  7193. _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); } }
  7194. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7195. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7196. })
  7197. break;
  7198. case "aiKnowledge": //aiKnowledge
  7199. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  7200. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7201. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7202. }
  7203. _formdiv = new U.UF.UI.form(
  7204. "知識建構",
  7205. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7206. "id": "aiKnowledge",
  7207. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7208. "onresize": function () { }
  7209. }, {
  7210. closecallback: function () { }
  7211. }, { "style": { "height": "36px" } }).form; //創建窗體
  7212. _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); } }
  7213. break;
  7214. case "futureClass": //AI共創
  7215. _formdiv = new U.UF.UI.form(
  7216. "協同建構",
  7217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  7218. "id": "synergyCourse",
  7219. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7220. "onresize": function () { }
  7221. }, {
  7222. closecallback: function () {
  7223. $("iframe", _formdiv)[0].contentWindow.loginout();
  7224. }
  7225. }, { "style": { "height": "36px" } }).form; //創建窗體
  7226. _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); } }
  7227. break;
  7228. case "aiagent": //ai agent
  7229. _formdiv = new U.UF.UI.form(
  7230. "AI Agent",
  7231. $$("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" }), {
  7232. "id": "AIAgent",
  7233. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7234. "onresize": function () { }
  7235. }, {
  7236. closecallback: function () { }
  7237. }, { "style": { "height": "36px" } }).form; //創建窗體
  7238. _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); } }
  7239. break;
  7240. case "dataBoard": //數據看闆
  7241. _formdiv = new U.UF.UI.form(
  7242. "數據看闆",
  7243. $$("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 }), {
  7244. "id": "dataBoard",
  7245. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7246. "onresize": function () { }
  7247. }, {
  7248. closecallback: function () { }
  7249. }, { "style": { "height": "36px" } }).form; //創建窗體
  7250. _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); } }
  7251. break;
  7252. case "dataBoardSies": //數據融合
  7253. _formdiv = new U.UF.UI.form(
  7254. "數據融合",
  7255. $$("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 }), {
  7256. "id": "dataBoardSies",
  7257. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7258. "onresize": function () { }
  7259. }, {
  7260. closecallback: function () { }
  7261. }, { "style": { "height": "36px" } }).form; //創建窗體
  7262. _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); } }
  7263. break;
  7264. case "dataBoardNew": //數據看闆
  7265. _formdiv = new U.UF.UI.form(
  7266. "綜合看闆",
  7267. $$("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 }), {
  7268. "id": "dataBoardNew",
  7269. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7270. "onresize": function () { }
  7271. }, {
  7272. closecallback: function () { }
  7273. }, { "style": { "height": "36px" } }).form; //創建窗體
  7274. _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); } }
  7275. break;
  7276. case "dataBoardTest": //數據看闆
  7277. _formdiv = new U.UF.UI.form(
  7278. "評測看闆",
  7279. $$("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 }), {
  7280. "id": "dataBoardTest",
  7281. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7282. "onresize": function () { }
  7283. }, {
  7284. closecallback: function () { }
  7285. }, { "style": { "height": "36px" } }).form; //創建窗體
  7286. _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); } }
  7287. break;
  7288. case "AIAnalyse": //AI共創
  7289. _formdiv = new U.UF.UI.form(
  7290. "AI分析",
  7291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  7292. "id": "AIAnalyse",
  7293. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7294. "onresize": function () { }
  7295. }, {
  7296. closecallback: function () { }
  7297. }, { "style": { "height": "36px" } }).form; //創建窗體
  7298. _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); } }
  7299. break;
  7300. case "studioCourse": //AI共創
  7301. _formdiv = new U.UF.UI.form(
  7302. "工作管理",
  7303. $$("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 }), {
  7304. "id": "studioCourse",
  7305. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7306. "onresize": function () { }
  7307. }, {
  7308. closecallback: function () { }
  7309. }, { "style": { "height": "36px" } }).form; //創建窗體
  7310. _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); } }
  7311. break;
  7312. case "studioIndex": //AI共創
  7313. _formdiv = new U.UF.UI.form(
  7314. "工作中心",
  7315. $$("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 }), {
  7316. "id": "studioIndex",
  7317. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7318. "onresize": function () { }
  7319. }, {
  7320. closecallback: function () { }
  7321. }, { "style": { "height": "36px" } }).form; //創建窗體
  7322. _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); } }
  7323. break;
  7324. case "source":
  7325. _formdiv = new U.UF.UI.form(
  7326. "教學資源",
  7327. $$("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 }), {
  7328. "id": "source",
  7329. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7330. "onresize": function () { }
  7331. }, {
  7332. closecallback: function () { }
  7333. }, { "style": { "height": "36px" } }).form; //創建窗體
  7334. _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); } }
  7335. break;
  7336. case "testTeacher":
  7337. _formdiv = new U.UF.UI.form(
  7338. "智能錶單",
  7339. $$("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 }), {
  7340. "id": "testTeacher",
  7341. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7342. "onresize": function () { }
  7343. }, {
  7344. closecallback: function () { }
  7345. }, { "style": { "height": "36px" } }).form; //創建窗體
  7346. _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); } }
  7347. break;
  7348. case "testStudent":
  7349. _formdiv = new U.UF.UI.form(
  7350. "教師中心",
  7351. $$("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 }), {
  7352. "id": "testStudent",
  7353. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7354. "onresize": function () { }
  7355. }, {
  7356. closecallback: function () { }
  7357. }, { "style": { "height": "36px" } }).form; //創建窗體
  7358. _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); } }
  7359. break;
  7360. case "testTeacherSies":
  7361. _formdiv = new U.UF.UI.form(
  7362. "教師管理",
  7363. $$("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 }), {
  7364. "id": "testTeacherSies",
  7365. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7366. "onresize": function () { }
  7367. }, {
  7368. closecallback: function () { }
  7369. }, { "style": { "height": "36px" } }).form; //創建窗體
  7370. _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); } }
  7371. break;
  7372. case "testStudentSies":
  7373. _formdiv = new U.UF.UI.form(
  7374. "教師中心",
  7375. $$("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 }), {
  7376. "id": "testStudentSies",
  7377. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7378. "onresize": function () { }
  7379. }, {
  7380. closecallback: function () { }
  7381. }, { "style": { "height": "36px" } }).form; //創建窗體
  7382. _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); } }
  7383. break;
  7384. case "ytpbl": //消息通知
  7385. _formdiv = new U.UF.UI.form(
  7386. "案例徵集",
  7387. $$("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 }), {
  7388. "id": "ytpbl",
  7389. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7390. "onresize": function () { }
  7391. }, {
  7392. closecallback: function () { }
  7393. }, { "style": { "height": "36px" } }).form; //創建窗體
  7394. _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); } }
  7395. // 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");
  7396. break;
  7397. case "aiCourseResource": //人工智能窗體
  7398. _formdiv = new U.UF.UI.form(
  7399. false,
  7400. $$("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 }), {
  7401. "id": "aiCourseResource",
  7402. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7403. "onresize": function () { },
  7404. "isdrag": false,
  7405. }, {
  7406. closecallback: function () { }
  7407. }, { "style": { "height": "36px" } }).form; //創建窗體
  7408. _taskbar = ''
  7409. break;
  7410. case "szdjgCocooroboX": //圖形化編程
  7411. _formdiv = new U.UF.UI.form(
  7412. "圖形化編程",
  7413. $$("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" }), {
  7414. "id": "szdjgCocooroboX",
  7415. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7416. "onresize": function () { }
  7417. }, {
  7418. closecallback: function () { }
  7419. }, { "style": { "height": "36px" } }).form; //創建窗體
  7420. _taskbar = ''
  7421. break;
  7422. case "szdjgPython": //python編程
  7423. _formdiv = new U.UF.UI.form(
  7424. "Python編程",
  7425. $$("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" }), {
  7426. "id": "szdjgPython",
  7427. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7428. "onresize": function () { }
  7429. }, {
  7430. closecallback: function () { }
  7431. }, { "style": { "height": "36px" } }).form; //創建窗體
  7432. _taskbar = ''
  7433. break;
  7434. case "Record":
  7435. _formdiv = new U.UF.UI.form(
  7436. "觀察記錄",
  7437. $$("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 }), {
  7438. "id": "Record",
  7439. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7440. "onresize": function () { }
  7441. }, {
  7442. closecallback: function () { }
  7443. }, { "style": { "height": "36px" } }).form; //創建窗體
  7444. _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); } }
  7445. break;
  7446. case "aigptCourse":
  7447. _formdiv = new U.UF.UI.form(
  7448. "AI智能體",
  7449. $$("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' }), {
  7450. "id": "aigptCourse",
  7451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7452. "onresize": function () { }
  7453. }, {
  7454. closecallback: function () { }
  7455. }, { "style": { "height": "36px" } }).form; //創建窗體
  7456. _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); } }
  7457. break;
  7458. case "classroomObservation":
  7459. _formdiv = new U.UF.UI.form(
  7460. "課堂觀察",
  7461. $$("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 }), {
  7462. "id": "classroomObservation",
  7463. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7464. "onresize": function () { }
  7465. }, {
  7466. closecallback: function () { }
  7467. }, { "style": { "height": "36px" } }).form; //創建窗體
  7468. _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); } }
  7469. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7470. break;
  7471. case "pblCourse":
  7472. _formdiv = new U.UF.UI.form(
  7473. "學生PBL",
  7474. $$("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 }), {
  7475. "id": "pblCourse",
  7476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7477. "onresize": function () { }
  7478. }, {
  7479. closecallback: function () { }
  7480. }, { "style": { "height": "36px" } }).form; //創建窗體
  7481. _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); } }
  7482. break;
  7483. case "appStore":
  7484. U.MD.D.addOp('','cocoflowOpen','')
  7485. _formdiv = new U.UF.UI.form(
  7486. "CocoFlow",
  7487. $$("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": "//app.cocorobo.hk/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7488. "id": "appStore",
  7489. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7490. "onresize": function () { }
  7491. }, {
  7492. closecallback: function () { }
  7493. }, { "style": { "height": "36px" } }).form; //創建窗體
  7494. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7495. break;
  7496. case "sassPlatform":
  7497. _formdiv = new U.UF.UI.form(
  7498. "Sass通用後臺管理",
  7499. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7500. "id": "sassPlatform",
  7501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7502. "onresize": function () { }
  7503. }, {
  7504. closecallback: function () { }
  7505. }, { "style": { "height": "36px" } }).form; //創建窗體
  7506. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7507. break;
  7508. case "EDU":
  7509. _formdiv = new U.UF.UI.form(
  7510. "EDU",
  7511. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7512. "id": "EDU",
  7513. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7514. "onresize": function () { }
  7515. }, {
  7516. closecallback: function () { }
  7517. }, { "style": { "height": "36px" } }).form; //創建窗體
  7518. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7519. break;
  7520. case "knowledge":
  7521. _formdiv = new U.UF.UI.form(
  7522. "知識庫",
  7523. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7524. "id": "knowledge",
  7525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7526. "onresize": function () { }
  7527. }, {
  7528. closecallback: function () { }
  7529. }, { "style": { "height": "36px" } }).form; //創建窗體
  7530. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7531. break;
  7532. case "userExamine":
  7533. _formdiv = new U.UF.UI.form(
  7534. "賬號申請",
  7535. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7536. "id": "userExamine",
  7537. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7538. "onresize": function () { }
  7539. }, {
  7540. closecallback: function () { }
  7541. }, { "style": { "height": "36px" } }).form; //創建窗體
  7542. break;
  7543. case "cocoflowDeskTop": //cocoflowDeskTop
  7544. _formdiv = new U.UF.UI.form(
  7545. false,
  7546. $$("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": "//app.cocorobo.hk/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7547. "id": "cocoflowDeskTop",
  7548. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7549. "onresize": function () { },
  7550. }, {
  7551. closecallback: function () { },
  7552. "isdrag": false,
  7553. }, { "style": { "height": "36px" } }).form; //創建窗體
  7554. _taskbar = ''
  7555. break;
  7556. case "liyuanLogin": //liyuanLogin
  7557. _formdiv = new U.UF.UI.form(
  7558. false,
  7559. $$("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": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7560. "id": "liyuanLogin",
  7561. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7562. "onresize": function () { },
  7563. }, {
  7564. closecallback: function () { },
  7565. isdrag: false,
  7566. isstretching: false,
  7567. isenlarge: false,
  7568. isnarrow: false
  7569. }, { "style": { "height": "36px" } }).form; //創建窗體
  7570. _taskbar = ''
  7571. break;
  7572. case "updatePaDialog":
  7573. _formdiv = new U.UF.UI.form(
  7574. "密碼修改",
  7575. $$("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://invitelogin.cocorobo.hk/#/changePswd?userid=" + _userid }), {
  7576. "id": "updatePaDialog",
  7577. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7578. "onresize": function () { },
  7579. }, {
  7580. closecallback: function () { },
  7581. isclose: false,
  7582. isdrag: false,
  7583. isstretching: false,
  7584. isenlarge: false,
  7585. isnarrow: false
  7586. }, { "style": { "height": "36px" } }).form; //創建窗體
  7587. break;
  7588. }
  7589. //U.MD.D.I.openClick(str);
  7590. //如果有任務欄信息
  7591. if (_taskbar) {
  7592. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7593. }
  7594. if(iframeBool){
  7595. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7596. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7597. // console.log("iframe進入");
  7598. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7599. // };
  7600. setTimeout(() => {
  7601. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7602. }, 2000);
  7603. }
  7604. }
  7605. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7606. var _formdiv, //創建任務欄時同時彈出的窗體元素。
  7607. _userinfo = US.userInfo, //登錄用戶信息
  7608. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解構賦值獲取用戶信息
  7609. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定義
  7610. let iframeBool = true;
  7611. let queryString = ''
  7612. if(array && array.length){
  7613. const paramsMap = {
  7614. userid: _userid,
  7615. org: _org,
  7616. oid: _oid,
  7617. type: _type,
  7618. role: _role,
  7619. classId: _classId,
  7620. TscreenType: _TscreenType,
  7621. SscreenType: _SscreenType
  7622. };
  7623. const canshu = array
  7624. .filter(param => paramsMap[param] !== undefined)
  7625. .map(param => `${param}=${paramsMap[param]}`);
  7626. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查詢字符串
  7627. }
  7628. let _url = url + queryString
  7629. if(U.UF.UI.form.allForm[id]){
  7630. iframeBool = false
  7631. }
  7632. _formdiv = new U.UF.UI.form(
  7633. false,
  7634. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  7635. {
  7636. "id": id,
  7637. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7638. "onresize": function () { },
  7639. },
  7640. {
  7641. closecallback: function () { },
  7642. isdrag: false,
  7643. isstretching: false,
  7644. isenlarge: false,
  7645. isnarrow: false
  7646. },
  7647. { "style": { "height": "36px" } },
  7648. undefined,
  7649. undefined,
  7650. dom
  7651. ).form
  7652. }
  7653. // U.MD.D.I.openClick = function(str){
  7654. // var click = '';
  7655. // switch(str){
  7656. // case 'friend':
  7657. // click = '我的好友';
  7658. // break;
  7659. // case 'domain':
  7660. // click = '域名管理';
  7661. // break;
  7662. // case 'disk':
  7663. // click = '我的雲盤';
  7664. // break;
  7665. // case 'word':
  7666. // click = 'Word';
  7667. // break;
  7668. // case 'excel':
  7669. // click = 'Execl';
  7670. // break;
  7671. // case 'txt':
  7672. // click = '文本文件';
  7673. // break;
  7674. // case 'lookupFriend':
  7675. // click = '查找好友';
  7676. // break;
  7677. // case 'ftp':
  7678. // click = 'FTP';
  7679. // break;
  7680. // case 'group':
  7681. // click = '群組';
  7682. // break;
  7683. // case 'set':
  7684. // click = '我的設置';
  7685. // break;
  7686. // case 'systemSet':
  7687. // click = '繫統設置';
  7688. // break;
  7689. // case 'boomYun':
  7690. // click = '互聯辦公';
  7691. // break;
  7692. // case 'xz':
  7693. // click = '雲端下載';
  7694. // break;
  7695. // case 'client':
  7696. // click = '有思瀏覽器';
  7697. // break;
  7698. // case 'backEndProgramming':
  7699. // click = '在線後臺編程';
  7700. // break;
  7701. // case 'frontEndProgramming':
  7702. // click = '在線前端編程';
  7703. // break;
  7704. // default: break;
  7705. // }
  7706. // if(U.MD.D.I.Ip && click){
  7707. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7708. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7709. // })
  7710. // }
  7711. // }
  7712. /**
  7713. *函數作用:ajax簡易函數,使用post格式
  7714. *@param url {data} 後臺地址
  7715. *@param data {data} 參數json
  7716. *@param fn {data} 回調函數
  7717. *
  7718. */
  7719. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7720. // var xhr = new XMLHttpRequest();
  7721. // xhr.open("GET",url,true);
  7722. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7723. // xhr.onreadystatechange = function(){
  7724. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7725. // fn.call(this,xhr.responseText);
  7726. // }
  7727. // };
  7728. // xhr.send();
  7729. // }
  7730. /*判斷是否是內網IP*/
  7731. // U.MD.D.I.isInnerIPFn = function(str){
  7732. // var curPageUrl = str;
  7733. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7734. // curPageUrl =curPageUrl.replace(reg1,'');
  7735. // // console.log('curPageUrl-1 '+curPageUrl);
  7736. // var reg2 = /\:+/g;//替換冒號為一點
  7737. // curPageUrl =curPageUrl.replace(reg2,'.');
  7738. // // console.log('curPageUrl-2 '+curPageUrl);
  7739. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7740. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7741. // if(curPageUrl[2] != '16'){
  7742. // return ipAddress;
  7743. // }else{
  7744. // return false;
  7745. // }
  7746. // }
  7747. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7748. // //compatibility for firefox and chrome
  7749. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7750. // var pc = new myPeerConnection({
  7751. // iceServers: []
  7752. // }),
  7753. // noop = function() {},
  7754. // localIPs = {},
  7755. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7756. // key;
  7757. // function iterateIP(ip) {
  7758. // if (!localIPs[ip]) onNewIP(ip);
  7759. // localIPs[ip] = true;
  7760. // }
  7761. // //create a bogus data channel
  7762. // pc.createDataChannel("");
  7763. // // create offer and set local description
  7764. // pc.createOffer().then(function(sdp) {
  7765. // sdp.sdp.split('\n').forEach(function(line) {
  7766. // if (line.indexOf('candidate') < 0) return;
  7767. // line.match(ipRegex).forEach(iterateIP);
  7768. // });
  7769. // pc.setLocalDescription(sdp, noop, noop);
  7770. // }).catch(function(reason) {
  7771. // // An error occurred, so handle the failure to connect
  7772. // });
  7773. // //sten for candidate events
  7774. // pc.onicecandidate = function(ice) {
  7775. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7776. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7777. // };
  7778. // }
  7779. // U.MD.D.I.getUserIpBool = function(callback){
  7780. // U.MD.D.I.getUserIP(function(ip){
  7781. // alert("Got IP! :" + ip);
  7782. // });
  7783. //}
  7784. //#endregion
  7785. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7786. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7787. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7788. _userinfo = US.userInfo, //登錄用戶信息
  7789. _userid = US.userInfo.userid //登錄用戶id
  7790. let _iframe;
  7791. let _cid = cid,
  7792. _stage = stage,
  7793. _task = task,
  7794. _tool = tool;
  7795. var _jie = $$("div", {
  7796. "style": {
  7797. "position": "absolute",
  7798. "bottom": "50px",
  7799. "right": "50px",
  7800. "zIndex": "9999",
  7801. "backgroundColor": "#2268bc",
  7802. "color": "#fff",
  7803. "padding": "12px 20px",
  7804. "cursor": "pointer",
  7805. "borderRadius": "4px",
  7806. },
  7807. "innerHTML": "提交作業"
  7808. })
  7809. let aTool = ''
  7810. let _loading = document.createElement('div')
  7811. _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;"
  7812. // _loading.id = "";
  7813. let _lchild = document.createElement('div')
  7814. let _limg = document.createElement('img')
  7815. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7816. _limg.style = "width: 26px;margin-right: 10px;"
  7817. _lchild.appendChild(_limg)
  7818. let _lspan = document.createElement('span')
  7819. _lspan.innerHTML = "上傳中..."
  7820. _lchild.appendChild(_lspan)
  7821. _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%);"
  7822. _loading.appendChild(_lchild)
  7823. var _box = $$('div', {
  7824. "style": {
  7825. "position": "relative",
  7826. "width": "100%",
  7827. "height": "100%",
  7828. },
  7829. })
  7830. _box.appendChild(_loading)
  7831. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7832. switch (str) {
  7833. case "whiteboard":
  7834. aTool = 1;
  7835. _iframe = $$("iframe", {
  7836. "frameborder": "no",
  7837. "border": "0",
  7838. "scrolling ": "no",
  7839. "style": {
  7840. "cssText": "border:0;width:100%;height:100%"
  7841. },
  7842. "src": "https://iwb.cocorobo.hk/"
  7843. })
  7844. _box.appendChild(_iframe);
  7845. _box.appendChild(_jie);
  7846. _formdiv = new U.UF.UI.form(
  7847. "電子白闆",
  7848. _box, {
  7849. "id": "whiteboard" + cid + stage + task + tool,
  7850. "style": {
  7851. "width": "90%",
  7852. "height": "90%",
  7853. "overflow": 'hidden'
  7854. },
  7855. "onresize": function () { }
  7856. }, {
  7857. closecallback: function () { }
  7858. }, {
  7859. "style": {
  7860. "height": "36px"
  7861. }
  7862. }).form; //創建窗體
  7863. _taskbar = {
  7864. "id": str + _formdiv.id,
  7865. "style": {
  7866. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7867. },
  7868. "name": "電子白闆",
  7869. "forms": _formdiv,
  7870. "click": function () {
  7871. U.MD.D.I.openApplication(str, obj, info);
  7872. }
  7873. }
  7874. break;
  7875. case "mind":
  7876. aTool = 3;
  7877. _iframe = $$("iframe", {
  7878. "frameborder": "no",
  7879. "border": "0",
  7880. "scrolling ": "no",
  7881. "style": {
  7882. "cssText": "border:0;width:100%;height:100%"
  7883. },
  7884. "src": "/kityminder-editor/dist/index.html"
  7885. })
  7886. _box.appendChild(_iframe);
  7887. _box.appendChild(_jie);
  7888. _formdiv = new U.UF.UI.form(
  7889. "思維導圖",
  7890. _box, { //"/jsmind/example/demo.html"
  7891. "id": "mind" + cid + stage + task + tool,
  7892. "style": {
  7893. "width": "90%",
  7894. "height": "90%",
  7895. "overflow": 'hidden'
  7896. },
  7897. "onresize": function () { }
  7898. }, {
  7899. closecallback: function () { }
  7900. }, {
  7901. "style": {
  7902. "height": "36px"
  7903. }
  7904. }).form; //創建窗體
  7905. _taskbar = {
  7906. "id": str + _formdiv.id,
  7907. "style": {
  7908. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7909. },
  7910. "name": "思維導圖",
  7911. "forms": _formdiv,
  7912. "click": function () {
  7913. U.MD.D.I.openApplication(str, obj, info);
  7914. }
  7915. }
  7916. break;
  7917. case "MindMap":
  7918. aTool = 3;
  7919. _iframe = $$("iframe", {
  7920. "frameborder": "no",
  7921. "border": "0",
  7922. "scrolling ": "no",
  7923. "style": {
  7924. "cssText": "border:0;width:100%;height:100%"
  7925. },
  7926. "src": "//cloud.cocorobo.hk/mind/"
  7927. })
  7928. _box.appendChild(_iframe);
  7929. _box.appendChild(_jie);
  7930. _formdiv = new U.UF.UI.form(
  7931. "思維導圖",
  7932. _box, { //"/jsmind/example/demo.html"
  7933. "id": "mind" + cid + stage + task + tool,
  7934. "style": {
  7935. "width": "90%",
  7936. "height": "90%",
  7937. "overflow": 'hidden'
  7938. },
  7939. "onresize": function () { }
  7940. }, {
  7941. closecallback: function () { }
  7942. }, {
  7943. "style": {
  7944. "height": "36px"
  7945. }
  7946. }).form; //創建窗體
  7947. _taskbar = {
  7948. "id": str + _formdiv.id,
  7949. "style": {
  7950. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7951. },
  7952. "name": "思維導圖",
  7953. "forms": _formdiv,
  7954. "click": function () {
  7955. U.MD.D.I.openApplication(str, obj, info);
  7956. }
  7957. }
  7958. break;
  7959. case "doc":
  7960. aTool = 6;
  7961. _iframe = $$("iframe", {
  7962. "frameborder": "no",
  7963. "border": "0",
  7964. "scrolling ": "no",
  7965. "style": {
  7966. "cssText": "border:0;width:100%;height:100%"
  7967. },
  7968. "src": "/Office/Word/WordEditArea.htm"
  7969. })
  7970. _box.appendChild(_iframe);
  7971. _box.appendChild(_jie);
  7972. _formdiv = new U.UF.UI.form(
  7973. "協同文檔",
  7974. _box, {
  7975. "id": "doc" + cid + stage + task + tool,
  7976. "style": {
  7977. "width": "90%",
  7978. "height": "90%",
  7979. "overflow": 'hidden'
  7980. },
  7981. "onresize": function () { }
  7982. }, {
  7983. closecallback: function () { }
  7984. }, {
  7985. "style": {
  7986. "height": "36px"
  7987. }
  7988. }).form; //創建窗體
  7989. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7990. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7991. })
  7992. _taskbar = {
  7993. "id": str + _formdiv.id,
  7994. "style": {
  7995. "backgroundImage": "url(/img/icon/doc.png)"
  7996. },
  7997. "name": "協同文檔",
  7998. "forms": _formdiv,
  7999. "click": function () {
  8000. U.MD.D.I.openApplication(str, obj, info);
  8001. }
  8002. }
  8003. break;
  8004. case "mindNetwork": //好友打開
  8005. aTool = 7;
  8006. _iframe = $$("iframe", {
  8007. "webkitallowfullscreen": "",
  8008. "mozallowfullscreen": "",
  8009. "allowfullscreen": "",
  8010. "frameborder": "no",
  8011. "border": "0",
  8012. "scrolling ": "no",
  8013. "style": {
  8014. "cssText": "border:0; width:100%; height:100%;"
  8015. },
  8016. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8017. })
  8018. _box.appendChild(_iframe);
  8019. _box.appendChild(_jie);
  8020. _formdiv = new U.UF.UI.form(
  8021. "思維網格",
  8022. _box, {
  8023. "id": "mindNetwork" + cid + stage + task + tool,
  8024. "style": {
  8025. "width": "90%",
  8026. "height": "90%",
  8027. "overflow": 'hidden'
  8028. },
  8029. "onresize": function () { }
  8030. }, {
  8031. closecallback: function () { }
  8032. }, {
  8033. "style": {
  8034. "height": "36px"
  8035. }
  8036. }).form; //創建窗體
  8037. _taskbar = {
  8038. "id": str + _formdiv.id,
  8039. "style": {
  8040. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8041. },
  8042. "name": "思維網格",
  8043. "forms": _formdiv,
  8044. "click": function () {
  8045. U.MD.D.I.openApplication(str, obj, info);
  8046. }
  8047. }
  8048. break;
  8049. case "courseDesign":
  8050. _iframe = $$("iframe", {
  8051. "webkitallowfullscreen": "",
  8052. "mozallowfullscreen": "",
  8053. "allowfullscreen": "",
  8054. "frameborder": "no",
  8055. "border": "0",
  8056. "scrolling ": "no",
  8057. "style": {
  8058. "cssText": "border:0; width:100%; height:100%;"
  8059. },
  8060. "src": "/course-design-vue"
  8061. })
  8062. _box.appendChild(_iframe);
  8063. _box.appendChild(_jie);
  8064. _formdiv = new U.UF.UI.form(
  8065. "項目設計",
  8066. _box, {
  8067. "id": "courseDesign" + cid + stage + task + tool,
  8068. "style": {
  8069. "width": "90%",
  8070. "height": "90%",
  8071. "overflow": 'hidden'
  8072. },
  8073. "onresize": function () { }
  8074. }, {
  8075. closecallback: function () { }
  8076. }, {
  8077. "style": {
  8078. "height": "36px"
  8079. }
  8080. }).form; //創建窗體
  8081. _taskbar = {
  8082. "id": str + _formdiv.id,
  8083. "style": {
  8084. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8085. },
  8086. "name": "項目設計",
  8087. "forms": _formdiv,
  8088. "click": function () {
  8089. U.MD.D.I.openApplication(str, obj, info);
  8090. }
  8091. }
  8092. break;
  8093. }
  8094. const script1 = document.createElement("script");
  8095. script1.type = "text/javascript";
  8096. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8097. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8098. const script2 = document.createElement("script");
  8099. script2.type = "text/javascript";
  8100. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8101. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8102. const script3 = document.createElement("script");
  8103. script3.type = "text/javascript";
  8104. script3.charset = "UTF-8";
  8105. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8106. const script4 = document.createElement("script");
  8107. script4.type = "text/javascript";
  8108. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8109. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8110. if (_iframe) {
  8111. if (str == 'doc') {
  8112. _iframe = _formdiv.querySelector('iframe')
  8113. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8114. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8115. _iframe.contentWindow.document.body.appendChild(script1);
  8116. _iframe.contentWindow.document.body.appendChild(script2);
  8117. // _iframe.contentWindow.document.body.appendChild(script3);
  8118. _iframe.contentWindow.document.body.appendChild(script4);
  8119. })
  8120. if (onloadListener) {
  8121. _iframe.contentDocument.location.reload()
  8122. } else {
  8123. _iframe.contentDocument.location.reload()
  8124. }
  8125. } else if (str == 'courseDesign') {
  8126. U.UF.DL.iframeLoad(_iframe, function () {
  8127. // _iframe.contentWindow.U.MD.O.W.load();
  8128. // _iframe.contentWindow.document.body.appendChild(script1);
  8129. _iframe.contentWindow.document.body.appendChild(script2);
  8130. _iframe.contentWindow.document.body.appendChild(script4);
  8131. })
  8132. } else if (str == 'mind') {
  8133. _iframe = _formdiv.querySelector('iframe')
  8134. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8135. //
  8136. _iframe.contentWindow.document.body.appendChild(script1);
  8137. _iframe.contentWindow.document.body.appendChild(script2);
  8138. _iframe.contentWindow.document.body.appendChild(script4);
  8139. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8140. })
  8141. if (onloadListener) {
  8142. _iframe.contentDocument.location.reload()
  8143. } else {
  8144. _iframe.contentDocument.location.reload()
  8145. }
  8146. } else if (str == 'whiteboard') {
  8147. _iframe = _formdiv.querySelector('iframe')
  8148. let onloadListener = _iframe.onload = () => {
  8149. _iframe.contentWindow.document.body.appendChild(script1);
  8150. _iframe.contentWindow.document.body.appendChild(script2);
  8151. _iframe.contentWindow.document.body.appendChild(script4);
  8152. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8153. };
  8154. // if (onloadListener) {
  8155. // try {
  8156. // _iframe.src += "?cocorobo="+new Date().getTime()
  8157. // _iframe.contentWindow.document.location.reload()
  8158. // } catch (error) {
  8159. // }
  8160. // } else {
  8161. // _iframe.contentDocument.location.reload()
  8162. // }
  8163. } else {
  8164. _iframe.onload = () => {
  8165. _iframe.contentWindow.document.body.appendChild(script1);
  8166. _iframe.contentWindow.document.body.appendChild(script2);
  8167. // _iframe.contentWindow.document.body.appendChild(script3);
  8168. _iframe.contentWindow.document.body.appendChild(script4);
  8169. };
  8170. }
  8171. _jie.onclick = async () => {
  8172. let text = ''
  8173. if (aTool == 1) {
  8174. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8175. } else if (aTool == 6) {
  8176. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8177. } else if (aTool == 3) {
  8178. text = await U.MD.D.I.getEditorContent(_iframe);
  8179. }
  8180. _loading.style.display = 'flex'
  8181. console.log(_loading);
  8182. var _ajs = _iframe.contentWindow.document.createElement("script");
  8183. _ajs.type = "text/javascript";
  8184. _ajs.innerHTML =
  8185. // 'console.log(' + _loading + ');\n' +
  8186. 'var _js = document.createElement("script");\n' +
  8187. '_js.type="text/javascript";\n' +
  8188. '_js.charset="UTF-8";\n' +
  8189. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8190. "_js.onload = function(){\n" +
  8191. ' var a = document.getElementsByTagName("img")\n' +
  8192. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8193. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8194. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8195. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8196. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8197. "beforeUpload_shishi(file," +
  8198. "'" +
  8199. _userid +
  8200. "'" +
  8201. ", " +
  8202. "'" +
  8203. _cid +
  8204. "'" +
  8205. ", " +
  8206. "'" +
  8207. _stage +
  8208. "'" +
  8209. ", " +
  8210. "'" +
  8211. _task +
  8212. "'" +
  8213. ", " +
  8214. "'" +
  8215. _tool +
  8216. "'" +
  8217. ", " +
  8218. "'" +
  8219. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8220. "'" +
  8221. ", " +
  8222. "'" +
  8223. aTool +
  8224. "'" +
  8225. ", " +
  8226. "`" +
  8227. text +
  8228. "`" +
  8229. ")\n" +
  8230. " });\n" +
  8231. "}\n" +
  8232. "document.head.appendChild(_js);\n";
  8233. _iframe.contentWindow.document.head.appendChild(_ajs);
  8234. }
  8235. }
  8236. //U.MD.D.I.openClick(str);
  8237. //如果有任務欄信息
  8238. // if (_taskbar) {
  8239. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8240. // }
  8241. }
  8242. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8243. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8244. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8245. _userinfo = US.userInfo, //登錄用戶信息
  8246. _userid = US.userInfo.userid //登錄用戶id
  8247. let _iframe;
  8248. let _cid = cid,
  8249. _stage = stage,
  8250. _task = task,
  8251. _tool = tool;
  8252. var _jie = $$("div", {
  8253. "style": {
  8254. "position": "absolute",
  8255. "bottom": "50px",
  8256. "right": "50px",
  8257. "zIndex": "9999",
  8258. "backgroundColor": "#2268bc",
  8259. "color": "#fff",
  8260. "padding": "12px 20px",
  8261. "cursor": "pointer",
  8262. "borderRadius": "4px",
  8263. },
  8264. "innerHTML": "提交作業"
  8265. })
  8266. let aTool = ''
  8267. let _loading = document.createElement('div')
  8268. _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;"
  8269. // _loading.id = "";
  8270. let _lchild = document.createElement('div')
  8271. let _limg = document.createElement('img')
  8272. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8273. _limg.style = "width: 26px;margin-right: 10px;"
  8274. _lchild.appendChild(_limg)
  8275. let _lspan = document.createElement('span')
  8276. _lspan.innerHTML = "上傳中..."
  8277. _lchild.appendChild(_lspan)
  8278. _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%);"
  8279. _loading.appendChild(_lchild)
  8280. let _box = $$('div', {
  8281. "style": {
  8282. "position": "relative",
  8283. "width": "100%",
  8284. "height": "100%",
  8285. },
  8286. })
  8287. _box.appendChild(_loading)
  8288. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8289. switch (str) {
  8290. case "whiteboard":
  8291. aTool = 1;
  8292. _iframe = $$("iframe", {
  8293. "frameborder": "no",
  8294. "border": "0",
  8295. "scrolling ": "no",
  8296. "style": {
  8297. "cssText": "border:0;width:100%;height:100%"
  8298. },
  8299. "src": "https://iwb.cocorobo.hk/"
  8300. })
  8301. _box.appendChild(_iframe);
  8302. _box.appendChild(_jie);
  8303. _formdiv = new U.UF.UI.form(
  8304. "電子白闆",
  8305. _box, {
  8306. "id": "whiteboard" + cid + stage + task + tool,
  8307. "style": {
  8308. "width": "90%",
  8309. "height": "90%",
  8310. "overflow": 'hidden'
  8311. },
  8312. "onresize": function () { }
  8313. }, {
  8314. closecallback: function () { }
  8315. }, {
  8316. "style": {
  8317. "height": "36px"
  8318. }
  8319. }).form; //創建窗體
  8320. _taskbar = {
  8321. "id": str + _formdiv.id,
  8322. "style": {
  8323. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8324. },
  8325. "name": "電子白闆",
  8326. "forms": _formdiv,
  8327. "click": function () {
  8328. U.MD.D.I.openApplication(str, obj, info);
  8329. }
  8330. }
  8331. break;
  8332. case "mind":
  8333. aTool = 3;
  8334. _iframe = $$("iframe", {
  8335. "frameborder": "no",
  8336. "border": "0",
  8337. "scrolling ": "no",
  8338. "style": {
  8339. "cssText": "border:0;width:100%;height:100%"
  8340. },
  8341. "src": "/kityminder-editor/dist/index.html"
  8342. })
  8343. _box.appendChild(_iframe);
  8344. _box.appendChild(_jie);
  8345. _formdiv = new U.UF.UI.form(
  8346. "思維導圖",
  8347. _box, { //"/jsmind/example/demo.html"
  8348. "id": "mind" + cid + stage + task + tool,
  8349. "style": {
  8350. "width": "90%",
  8351. "height": "90%",
  8352. "overflow": 'hidden'
  8353. },
  8354. "onresize": function () { }
  8355. }, {
  8356. closecallback: function () { }
  8357. }, {
  8358. "style": {
  8359. "height": "36px"
  8360. }
  8361. }).form; //創建窗體
  8362. _taskbar = {
  8363. "id": str + _formdiv.id,
  8364. "style": {
  8365. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8366. },
  8367. "name": "思維導圖",
  8368. "forms": _formdiv,
  8369. "click": function () {
  8370. U.MD.D.I.openApplication(str, obj, info);
  8371. }
  8372. }
  8373. break;
  8374. case "MindMap":
  8375. aTool = 3;
  8376. _iframe = $$("iframe", {
  8377. "frameborder": "no",
  8378. "border": "0",
  8379. "scrolling ": "no",
  8380. "style": {
  8381. "cssText": "border:0;width:100%;height:100%"
  8382. },
  8383. "src": "//cloud.cocorobo.hk/mind/"
  8384. })
  8385. _box.appendChild(_iframe);
  8386. _box.appendChild(_jie);
  8387. _formdiv = new U.UF.UI.form(
  8388. "思維導圖",
  8389. _box, { //"/jsmind/example/demo.html"
  8390. "id": "mind" + cid + stage + task + tool,
  8391. "style": {
  8392. "width": "90%",
  8393. "height": "90%",
  8394. "overflow": 'hidden'
  8395. },
  8396. "onresize": function () { }
  8397. }, {
  8398. closecallback: function () { }
  8399. }, {
  8400. "style": {
  8401. "height": "36px"
  8402. }
  8403. }).form; //創建窗體
  8404. _taskbar = {
  8405. "id": str + _formdiv.id,
  8406. "style": {
  8407. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8408. },
  8409. "name": "思維導圖",
  8410. "forms": _formdiv,
  8411. "click": function () {
  8412. U.MD.D.I.openApplication(str, obj, info);
  8413. }
  8414. }
  8415. break;
  8416. case "doc":
  8417. aTool = 6;
  8418. _iframe = $$("iframe", {
  8419. "frameborder": "no",
  8420. "border": "0",
  8421. "scrolling ": "no",
  8422. "style": {
  8423. "cssText": "border:0;width:100%;height:100%"
  8424. },
  8425. "src": "/Office/Word/WordEditArea.htm"
  8426. })
  8427. _box.appendChild(_iframe);
  8428. _box.appendChild(_jie);
  8429. _formdiv = new U.UF.UI.form(
  8430. "協同文檔",
  8431. _box, {
  8432. "id": "doc" + cid + stage + task + tool,
  8433. "style": {
  8434. "width": "90%",
  8435. "height": "90%",
  8436. "overflow": 'hidden'
  8437. },
  8438. "onresize": function () { }
  8439. }, {
  8440. closecallback: function () { }
  8441. }, {
  8442. "style": {
  8443. "height": "36px"
  8444. }
  8445. }).form; //創建窗體
  8446. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8447. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8448. })
  8449. _taskbar = {
  8450. "id": str + _formdiv.id,
  8451. "style": {
  8452. "backgroundImage": "url(/img/icon/doc.png)"
  8453. },
  8454. "name": "協同文檔",
  8455. "forms": _formdiv,
  8456. "click": function () {
  8457. U.MD.D.I.openApplication(str, obj, info);
  8458. }
  8459. }
  8460. break;
  8461. case "mindNetwork": //好友打開
  8462. aTool = 7;
  8463. _iframe = $$("iframe", {
  8464. "webkitallowfullscreen": "",
  8465. "mozallowfullscreen": "",
  8466. "allowfullscreen": "",
  8467. "frameborder": "no",
  8468. "border": "0",
  8469. "scrolling ": "no",
  8470. "style": {
  8471. "cssText": "border:0; width:100%; height:100%;"
  8472. },
  8473. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8474. })
  8475. _box.appendChild(_iframe);
  8476. _box.appendChild(_jie);
  8477. _formdiv = new U.UF.UI.form(
  8478. "思維網格",
  8479. _box, {
  8480. "id": "mindNetwork" + cid + stage + task + tool,
  8481. "style": {
  8482. "width": "90%",
  8483. "height": "90%",
  8484. "overflow": 'hidden'
  8485. },
  8486. "onresize": function () { }
  8487. }, {
  8488. closecallback: function () { }
  8489. }, {
  8490. "style": {
  8491. "height": "36px"
  8492. }
  8493. }).form; //創建窗體
  8494. _taskbar = {
  8495. "id": str + _formdiv.id,
  8496. "style": {
  8497. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8498. },
  8499. "name": "思維網格",
  8500. "forms": _formdiv,
  8501. "click": function () {
  8502. U.MD.D.I.openApplication(str, obj, info);
  8503. }
  8504. }
  8505. break;
  8506. case "courseDesign":
  8507. _iframe = $$("iframe", {
  8508. "webkitallowfullscreen": "",
  8509. "mozallowfullscreen": "",
  8510. "allowfullscreen": "",
  8511. "frameborder": "no",
  8512. "border": "0",
  8513. "scrolling ": "no",
  8514. "style": {
  8515. "cssText": "border:0; width:100%; height:100%;"
  8516. },
  8517. "src": "/course-design-vue"
  8518. })
  8519. _box.appendChild(_iframe);
  8520. _box.appendChild(_jie);
  8521. _formdiv = new U.UF.UI.form(
  8522. "項目設計",
  8523. _box, {
  8524. "id": "courseDesign" + cid + stage + task + tool,
  8525. "style": {
  8526. "width": "90%",
  8527. "height": "90%",
  8528. "overflow": 'hidden'
  8529. },
  8530. "onresize": function () { }
  8531. }, {
  8532. closecallback: function () { }
  8533. }, {
  8534. "style": {
  8535. "height": "36px"
  8536. }
  8537. }).form; //創建窗體
  8538. _taskbar = {
  8539. "id": str + _formdiv.id,
  8540. "style": {
  8541. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8542. },
  8543. "name": "項目設計",
  8544. "forms": _formdiv,
  8545. "click": function () {
  8546. U.MD.D.I.openApplication(str, obj, info);
  8547. }
  8548. }
  8549. break;
  8550. }
  8551. const script1 = document.createElement("script");
  8552. script1.type = "text/javascript";
  8553. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8554. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8555. const script2 = document.createElement("script");
  8556. script2.type = "text/javascript";
  8557. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8558. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8559. const script3 = document.createElement("script");
  8560. script3.type = "text/javascript";
  8561. script3.charset = "UTF-8";
  8562. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8563. const script4 = document.createElement("script");
  8564. script4.type = "text/javascript";
  8565. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8566. script4.src = window.origin + "/js/Common/jietu2E.js";
  8567. if (_iframe) {
  8568. if (str == 'doc') {
  8569. _iframe = _formdiv.querySelector('iframe')
  8570. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8571. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8572. _iframe.contentWindow.document.body.appendChild(script1);
  8573. _iframe.contentWindow.document.body.appendChild(script2);
  8574. // _iframe.contentWindow.document.body.appendChild(script3);
  8575. _iframe.contentWindow.document.body.appendChild(script4);
  8576. })
  8577. if (onloadListener) {
  8578. _iframe.contentDocument.location.reload()
  8579. } else {
  8580. _iframe.contentDocument.location.reload()
  8581. }
  8582. } else if (str == 'courseDesign') {
  8583. U.UF.DL.iframeLoad(_iframe, function () {
  8584. // _iframe.contentWindow.U.MD.O.W.load();
  8585. // _iframe.contentWindow.document.body.appendChild(script1);
  8586. _iframe.contentWindow.document.body.appendChild(script2);
  8587. _iframe.contentWindow.document.body.appendChild(script4);
  8588. })
  8589. } else if (str == 'mind') {
  8590. _iframe = _formdiv.querySelector('iframe')
  8591. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8592. //
  8593. _iframe.contentWindow.document.body.appendChild(script1);
  8594. _iframe.contentWindow.document.body.appendChild(script2);
  8595. _iframe.contentWindow.document.body.appendChild(script4);
  8596. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8597. })
  8598. if (onloadListener) {
  8599. _iframe.contentDocument.location.reload()
  8600. } else {
  8601. _iframe.contentDocument.location.reload()
  8602. }
  8603. } else if (str == 'whiteboard') {
  8604. _iframe = _formdiv.querySelector('iframe')
  8605. let onloadListener = _iframe.onload = () => {
  8606. _iframe.contentWindow.document.body.appendChild(script1);
  8607. _iframe.contentWindow.document.body.appendChild(script2);
  8608. _iframe.contentWindow.document.body.appendChild(script4);
  8609. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8610. };
  8611. // if (onloadListener) {
  8612. // try {
  8613. // _iframe.src += "?cocorobo="+new Date().getTime()
  8614. // _iframe.contentWindow.document.location.reload()
  8615. // } catch (error) {
  8616. // }
  8617. // } else {
  8618. // _iframe.contentDocument.location.reload()
  8619. // }
  8620. } else {
  8621. _iframe.onload = () => {
  8622. _iframe.contentWindow.document.body.appendChild(script1);
  8623. _iframe.contentWindow.document.body.appendChild(script2);
  8624. // _iframe.contentWindow.document.body.appendChild(script3);
  8625. _iframe.contentWindow.document.body.appendChild(script4);
  8626. };
  8627. }
  8628. _jie.onclick = async () => {
  8629. let text = ''
  8630. if (aTool == 1) {
  8631. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8632. } else if (aTool == 6) {
  8633. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8634. } else if (aTool == 3) {
  8635. text = await U.MD.D.I.getEditorContent(_iframe);
  8636. }
  8637. _loading.style.display = 'flex'
  8638. console.log(_loading);
  8639. var _ajs = _iframe.contentWindow.document.createElement("script");
  8640. _ajs.type = "text/javascript";
  8641. _ajs.innerHTML =
  8642. // 'console.log(' + _loading + ');\n' +
  8643. 'var _js = document.createElement("script");\n' +
  8644. '_js.type="text/javascript";\n' +
  8645. '_js.charset="UTF-8";\n' +
  8646. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8647. "_js.onload = function(){\n" +
  8648. ' var a = document.getElementsByTagName("img")\n' +
  8649. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8650. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8651. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8652. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8653. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8654. "beforeUpload_shishi(file," +
  8655. "'" +
  8656. _userid +
  8657. "'" +
  8658. ", " +
  8659. "'" +
  8660. _cid +
  8661. "'" +
  8662. ", " +
  8663. "'" +
  8664. _stage +
  8665. "'" +
  8666. ", " +
  8667. "'" +
  8668. _task +
  8669. "'" +
  8670. ", " +
  8671. "'" +
  8672. _tool +
  8673. "'" +
  8674. ", " +
  8675. "'" +
  8676. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8677. "'" +
  8678. ", " +
  8679. "'" +
  8680. aTool +
  8681. "'" +
  8682. ", " +
  8683. "`" +
  8684. text +
  8685. "`" +
  8686. ")\n" +
  8687. " });\n" +
  8688. "}\n" +
  8689. "document.head.appendChild(_js);\n";
  8690. _iframe.contentWindow.document.head.appendChild(_ajs);
  8691. }
  8692. }
  8693. //U.MD.D.I.openClick(str);
  8694. //如果有任務欄信息
  8695. // if (_taskbar) {
  8696. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8697. // }
  8698. }
  8699. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8700. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8701. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8702. _userid = student.userid, //登錄用戶id
  8703. _username = student.student //用戶名字
  8704. let _iframe;
  8705. let _cid = cid,
  8706. _stage = stage,
  8707. _task = task,
  8708. _tool = tool;
  8709. var _jie = $$("div", {
  8710. "style": {
  8711. "position": "absolute",
  8712. "bottom": "50px",
  8713. "right": "50px",
  8714. "zIndex": "9999",
  8715. "backgroundColor": "#2268bc",
  8716. "color": "#fff",
  8717. "padding": "12px 20px",
  8718. "cursor": "pointer",
  8719. "borderRadius": "4px",
  8720. },
  8721. "innerHTML": "提交作業"
  8722. })
  8723. let aTool = ''
  8724. let _loading = document.createElement('div')
  8725. _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;"
  8726. // _loading.id = "";
  8727. let _lchild = document.createElement('div')
  8728. let _limg = document.createElement('img')
  8729. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8730. _limg.style = "width: 26px;margin-right: 10px;"
  8731. _lchild.appendChild(_limg)
  8732. let _lspan = document.createElement('span')
  8733. _lspan.innerHTML = "上傳中..."
  8734. _lchild.appendChild(_lspan)
  8735. _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%);"
  8736. _loading.appendChild(_lchild)
  8737. var _box = $$('div', {
  8738. "style": {
  8739. "position": "relative",
  8740. "width": "100%",
  8741. "height": "100%",
  8742. },
  8743. })
  8744. _box.appendChild(_loading)
  8745. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8746. switch (str) {
  8747. case "whiteboard":
  8748. aTool = 1;
  8749. _iframe = $$("iframe", {
  8750. "frameborder": "no",
  8751. "border": "0",
  8752. "scrolling ": "no",
  8753. "style": {
  8754. "cssText": "border:0;width:100%;height:100%"
  8755. },
  8756. "src": "https://iwb.cocorobo.hk/"
  8757. })
  8758. _box.appendChild(_iframe);
  8759. _box.appendChild(_jie);
  8760. _formdiv = new U.UF.UI.form(
  8761. "電子白闆-" + _username,
  8762. _box, {
  8763. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8764. "style": {
  8765. "width": "90%",
  8766. "height": "90%",
  8767. "overflow": 'hidden'
  8768. },
  8769. "onresize": function () { }
  8770. }, {
  8771. closecallback: function () { }
  8772. }, {
  8773. "style": {
  8774. "height": "36px"
  8775. }
  8776. }).form; //創建窗體
  8777. _taskbar = {
  8778. "id": str + _formdiv.id,
  8779. "style": {
  8780. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8781. },
  8782. "name": "電子白闆",
  8783. "forms": _formdiv,
  8784. "click": function () {
  8785. U.MD.D.I.openApplication(str, obj, info);
  8786. }
  8787. }
  8788. break;
  8789. case "mind":
  8790. aTool = 3;
  8791. _iframe = $$("iframe", {
  8792. "frameborder": "no",
  8793. "border": "0",
  8794. "scrolling ": "no",
  8795. "style": {
  8796. "cssText": "border:0;width:100%;height:100%"
  8797. },
  8798. "src": "/kityminder-editor/dist/index.html"
  8799. })
  8800. _box.appendChild(_iframe);
  8801. _box.appendChild(_jie);
  8802. _formdiv = new U.UF.UI.form(
  8803. "思維導圖-" + _username,
  8804. _box, { //"/jsmind/example/demo.html"
  8805. "id": "mind" + cid + stage + task + tool + _userid,
  8806. "style": {
  8807. "width": "90%",
  8808. "height": "90%",
  8809. "overflow": 'hidden'
  8810. },
  8811. "onresize": function () { }
  8812. }, {
  8813. closecallback: function () { }
  8814. }, {
  8815. "style": {
  8816. "height": "36px"
  8817. }
  8818. }).form; //創建窗體
  8819. _taskbar = {
  8820. "id": str + _formdiv.id,
  8821. "style": {
  8822. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8823. },
  8824. "name": "思維導圖",
  8825. "forms": _formdiv,
  8826. "click": function () {
  8827. U.MD.D.I.openApplication(str, obj, info);
  8828. }
  8829. }
  8830. break;
  8831. case "MindMap":
  8832. aTool = 3;
  8833. _iframe = $$("iframe", {
  8834. "frameborder": "no",
  8835. "border": "0",
  8836. "scrolling ": "no",
  8837. "style": {
  8838. "cssText": "border:0;width:100%;height:100%"
  8839. },
  8840. "src": "//cloud.cocorobo.hk/mind/"
  8841. })
  8842. _box.appendChild(_iframe);
  8843. _box.appendChild(_jie);
  8844. _formdiv = new U.UF.UI.form(
  8845. "思維導圖-" + _username,
  8846. _box, { //"/jsmind/example/demo.html"
  8847. "id": "mind" + cid + stage + task + tool + _userid,
  8848. "style": {
  8849. "width": "90%",
  8850. "height": "90%",
  8851. "overflow": 'hidden'
  8852. },
  8853. "onresize": function () { }
  8854. }, {
  8855. closecallback: function () { }
  8856. }, {
  8857. "style": {
  8858. "height": "36px"
  8859. }
  8860. }).form; //創建窗體
  8861. _taskbar = {
  8862. "id": str + _formdiv.id,
  8863. "style": {
  8864. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8865. },
  8866. "name": "思維導圖",
  8867. "forms": _formdiv,
  8868. "click": function () {
  8869. U.MD.D.I.openApplication(str, obj, info);
  8870. }
  8871. }
  8872. break;
  8873. case "doc":
  8874. aTool = 6;
  8875. _iframe = $$("iframe", {
  8876. "frameborder": "no",
  8877. "border": "0",
  8878. "scrolling ": "no",
  8879. "style": {
  8880. "cssText": "border:0;width:100%;height:100%"
  8881. },
  8882. "src": "/Office/Word/WordEditArea.htm"
  8883. })
  8884. _box.appendChild(_iframe);
  8885. _box.appendChild(_jie);
  8886. _formdiv = new U.UF.UI.form(
  8887. "協同文檔-" + _username,
  8888. _box, {
  8889. "id": "doc" + cid + stage + task + tool + _userid,
  8890. "style": {
  8891. "width": "90%",
  8892. "height": "90%",
  8893. "overflow": 'hidden'
  8894. },
  8895. "onresize": function () { }
  8896. }, {
  8897. closecallback: function () { }
  8898. }, {
  8899. "style": {
  8900. "height": "36px"
  8901. }
  8902. }).form; //創建窗體
  8903. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8904. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8905. })
  8906. _taskbar = {
  8907. "id": str + _formdiv.id,
  8908. "style": {
  8909. "backgroundImage": "url(/img/icon/doc.png)"
  8910. },
  8911. "name": "協同文檔",
  8912. "forms": _formdiv,
  8913. "click": function () {
  8914. U.MD.D.I.openApplication(str, obj, info);
  8915. }
  8916. }
  8917. break;
  8918. case "mindNetwork": //好友打開
  8919. aTool = 7;
  8920. _iframe = $$("iframe", {
  8921. "webkitallowfullscreen": "",
  8922. "mozallowfullscreen": "",
  8923. "allowfullscreen": "",
  8924. "frameborder": "no",
  8925. "border": "0",
  8926. "scrolling ": "no",
  8927. "style": {
  8928. "cssText": "border:0; width:100%; height:100%;"
  8929. },
  8930. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8931. })
  8932. _box.appendChild(_iframe);
  8933. _box.appendChild(_jie);
  8934. _formdiv = new U.UF.UI.form(
  8935. "思維網格-" + _username,
  8936. _box, {
  8937. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8938. "style": {
  8939. "width": "90%",
  8940. "height": "90%",
  8941. "overflow": 'hidden'
  8942. },
  8943. "onresize": function () { }
  8944. }, {
  8945. closecallback: function () { }
  8946. }, {
  8947. "style": {
  8948. "height": "36px"
  8949. }
  8950. }).form; //創建窗體
  8951. _taskbar = {
  8952. "id": str + _formdiv.id,
  8953. "style": {
  8954. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8955. },
  8956. "name": "思維網格",
  8957. "forms": _formdiv,
  8958. "click": function () {
  8959. U.MD.D.I.openApplication(str, obj, info);
  8960. }
  8961. }
  8962. break;
  8963. case "courseDesign":
  8964. _iframe = $$("iframe", {
  8965. "webkitallowfullscreen": "",
  8966. "mozallowfullscreen": "",
  8967. "allowfullscreen": "",
  8968. "frameborder": "no",
  8969. "border": "0",
  8970. "scrolling ": "no",
  8971. "style": {
  8972. "cssText": "border:0; width:100%; height:100%;"
  8973. },
  8974. "src": "/course-design-vue"
  8975. })
  8976. _box.appendChild(_iframe);
  8977. _box.appendChild(_jie);
  8978. _formdiv = new U.UF.UI.form(
  8979. "項目設計-" + _username,
  8980. _box, {
  8981. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8982. "style": {
  8983. "width": "90%",
  8984. "height": "90%",
  8985. "overflow": 'hidden'
  8986. },
  8987. "onresize": function () { }
  8988. }, {
  8989. closecallback: function () { }
  8990. }, {
  8991. "style": {
  8992. "height": "36px"
  8993. }
  8994. }).form; //創建窗體
  8995. _taskbar = {
  8996. "id": str + _formdiv.id,
  8997. "style": {
  8998. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8999. },
  9000. "name": "項目設計",
  9001. "forms": _formdiv,
  9002. "click": function () {
  9003. U.MD.D.I.openApplication(str, obj, info);
  9004. }
  9005. }
  9006. break;
  9007. }
  9008. const script1 = document.createElement("script");
  9009. script1.type = "text/javascript";
  9010. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9011. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9012. const script2 = document.createElement("script");
  9013. script2.type = "text/javascript";
  9014. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9015. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9016. const script3 = document.createElement("script");
  9017. script3.type = "text/javascript";
  9018. script3.charset = "UTF-8";
  9019. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9020. const script4 = document.createElement("script");
  9021. script4.type = "text/javascript";
  9022. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9023. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  9024. if (_iframe) {
  9025. if (str == 'doc') {
  9026. _iframe = _formdiv.querySelector('iframe')
  9027. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9028. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9029. _iframe.contentWindow.document.body.appendChild(script1);
  9030. _iframe.contentWindow.document.body.appendChild(script2);
  9031. // _iframe.contentWindow.document.body.appendChild(script3);
  9032. _iframe.contentWindow.document.body.appendChild(script4);
  9033. })
  9034. if (onloadListener) {
  9035. _iframe.contentDocument.location.reload()
  9036. } else {
  9037. _iframe.contentDocument.location.reload()
  9038. }
  9039. } else if (str == 'courseDesign') {
  9040. U.UF.DL.iframeLoad(_iframe, function () {
  9041. // _iframe.contentWindow.U.MD.O.W.load();
  9042. // _iframe.contentWindow.document.body.appendChild(script1);
  9043. _iframe.contentWindow.document.body.appendChild(script2);
  9044. _iframe.contentWindow.document.body.appendChild(script4);
  9045. })
  9046. } else if (str == 'mind') {
  9047. _iframe = _formdiv.querySelector('iframe')
  9048. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9049. //
  9050. _iframe.contentWindow.document.body.appendChild(script1);
  9051. _iframe.contentWindow.document.body.appendChild(script2);
  9052. _iframe.contentWindow.document.body.appendChild(script4);
  9053. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9054. })
  9055. if (onloadListener) {
  9056. _iframe.contentDocument.location.reload()
  9057. } else {
  9058. _iframe.contentDocument.location.reload()
  9059. }
  9060. } else if (str == 'whiteboard') {
  9061. _iframe = _formdiv.querySelector('iframe')
  9062. let onloadListener = _iframe.onload = () => {
  9063. _iframe.contentWindow.document.body.appendChild(script1);
  9064. _iframe.contentWindow.document.body.appendChild(script2);
  9065. _iframe.contentWindow.document.body.appendChild(script4);
  9066. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9067. };
  9068. // if (onloadListener) {
  9069. // try {
  9070. // _iframe.src += "?cocorobo="+new Date().getTime()
  9071. // _iframe.contentWindow.document.location.reload()
  9072. // } catch (error) {
  9073. // }
  9074. // } else {
  9075. // _iframe.contentDocument.location.reload()
  9076. // }
  9077. } else {
  9078. _iframe.onload = () => {
  9079. _iframe.contentWindow.document.body.appendChild(script1);
  9080. _iframe.contentWindow.document.body.appendChild(script2);
  9081. // _iframe.contentWindow.document.body.appendChild(script3);
  9082. _iframe.contentWindow.document.body.appendChild(script4);
  9083. };
  9084. }
  9085. _jie.onclick = async () => {
  9086. let text = ''
  9087. if (aTool == 1) {
  9088. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9089. } else if (aTool == 6) {
  9090. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9091. } else if (aTool == 3) {
  9092. text = await U.MD.D.I.getEditorContent(_iframe);
  9093. }
  9094. _loading.style.display = 'flex'
  9095. console.log(_loading);
  9096. var _ajs = _iframe.contentWindow.document.createElement("script");
  9097. _ajs.type = "text/javascript";
  9098. _ajs.innerHTML =
  9099. // 'console.log(' + _loading + ');\n' +
  9100. 'var _js = document.createElement("script");\n' +
  9101. '_js.type="text/javascript";\n' +
  9102. '_js.charset="UTF-8";\n' +
  9103. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9104. "_js.onload = function(){\n" +
  9105. ' var a = document.getElementsByTagName("img")\n' +
  9106. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9107. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9108. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9109. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9110. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9111. "beforeUpload_shishi(file," +
  9112. "'" +
  9113. _userid +
  9114. "'" +
  9115. ", " +
  9116. "'" +
  9117. _cid +
  9118. "'" +
  9119. ", " +
  9120. "'" +
  9121. _stage +
  9122. "'" +
  9123. ", " +
  9124. "'" +
  9125. _task +
  9126. "'" +
  9127. ", " +
  9128. "'" +
  9129. _tool +
  9130. "'" +
  9131. ", " +
  9132. "'" +
  9133. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9134. "'" +
  9135. ", " +
  9136. "'" +
  9137. aTool +
  9138. "'" +
  9139. ", " +
  9140. "`" +
  9141. text +
  9142. "`" +
  9143. ")\n" +
  9144. " });\n" +
  9145. "}\n" +
  9146. "document.head.appendChild(_js);\n";
  9147. _iframe.contentWindow.document.head.appendChild(_ajs);
  9148. }
  9149. }
  9150. }
  9151. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9152. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9153. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9154. _userid = student.userid, //登錄用戶id
  9155. _username = student.student //用戶名字
  9156. let _iframe;
  9157. let _cid = cid,
  9158. _stage = stage,
  9159. _task = task,
  9160. _tool = tool;
  9161. var _jie = $$("div", {
  9162. "style": {
  9163. "position": "absolute",
  9164. "bottom": "50px",
  9165. "right": "50px",
  9166. "zIndex": "9999",
  9167. "backgroundColor": "#2268bc",
  9168. "color": "#fff",
  9169. "padding": "12px 20px",
  9170. "cursor": "pointer",
  9171. "borderRadius": "4px",
  9172. },
  9173. "innerHTML": "提交作業"
  9174. })
  9175. let aTool = ''
  9176. let _loading = document.createElement('div')
  9177. _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;"
  9178. // _loading.id = "";
  9179. let _lchild = document.createElement('div')
  9180. let _limg = document.createElement('img')
  9181. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9182. _limg.style = "width: 26px;margin-right: 10px;"
  9183. _lchild.appendChild(_limg)
  9184. let _lspan = document.createElement('span')
  9185. _lspan.innerHTML = "上傳中..."
  9186. _lchild.appendChild(_lspan)
  9187. _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%);"
  9188. _loading.appendChild(_lchild)
  9189. var _box = $$('div', {
  9190. "style": {
  9191. "position": "relative",
  9192. "width": "100%",
  9193. "height": "100%",
  9194. },
  9195. })
  9196. _box.appendChild(_loading)
  9197. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9198. switch (str) {
  9199. case "whiteboard":
  9200. aTool = 1;
  9201. _iframe = $$("iframe", {
  9202. "frameborder": "no",
  9203. "border": "0",
  9204. "scrolling ": "no",
  9205. "style": {
  9206. "cssText": "border:0;width:100%;height:100%"
  9207. },
  9208. "src": "https://iwb.cocorobo.hk/"
  9209. })
  9210. _box.appendChild(_iframe);
  9211. _box.appendChild(_jie);
  9212. _formdiv = new U.UF.UI.form(
  9213. "電子白闆-" + _username,
  9214. _box, {
  9215. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9216. "style": {
  9217. "width": "90%",
  9218. "height": "90%",
  9219. "overflow": 'hidden'
  9220. },
  9221. "onresize": function () { }
  9222. }, {
  9223. closecallback: function () { }
  9224. }, {
  9225. "style": {
  9226. "height": "36px"
  9227. }
  9228. }).form; //創建窗體
  9229. _taskbar = {
  9230. "id": str + _formdiv.id,
  9231. "style": {
  9232. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9233. },
  9234. "name": "電子白闆",
  9235. "forms": _formdiv,
  9236. "click": function () {
  9237. U.MD.D.I.openApplication(str, obj, info);
  9238. }
  9239. }
  9240. break;
  9241. case "mind":
  9242. aTool = 3;
  9243. _iframe = $$("iframe", {
  9244. "frameborder": "no",
  9245. "border": "0",
  9246. "scrolling ": "no",
  9247. "style": {
  9248. "cssText": "border:0;width:100%;height:100%"
  9249. },
  9250. "src": "/kityminder-editor/dist/index.html"
  9251. })
  9252. _box.appendChild(_iframe);
  9253. _box.appendChild(_jie);
  9254. _formdiv = new U.UF.UI.form(
  9255. "思維導圖-" + _username,
  9256. _box, { //"/jsmind/example/demo.html"
  9257. "id": "mind" + cid + stage + task + tool + _userid,
  9258. "style": {
  9259. "width": "90%",
  9260. "height": "90%",
  9261. "overflow": 'hidden'
  9262. },
  9263. "onresize": function () { }
  9264. }, {
  9265. closecallback: function () { }
  9266. }, {
  9267. "style": {
  9268. "height": "36px"
  9269. }
  9270. }).form; //創建窗體
  9271. _taskbar = {
  9272. "id": str + _formdiv.id,
  9273. "style": {
  9274. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9275. },
  9276. "name": "思維導圖",
  9277. "forms": _formdiv,
  9278. "click": function () {
  9279. U.MD.D.I.openApplication(str, obj, info);
  9280. }
  9281. }
  9282. break;
  9283. case "MindMap":
  9284. aTool = 3;
  9285. _iframe = $$("iframe", {
  9286. "frameborder": "no",
  9287. "border": "0",
  9288. "scrolling ": "no",
  9289. "style": {
  9290. "cssText": "border:0;width:100%;height:100%"
  9291. },
  9292. "src": "//cloud.cocorobo.hk/mind/"
  9293. })
  9294. _box.appendChild(_iframe);
  9295. _box.appendChild(_jie);
  9296. _formdiv = new U.UF.UI.form(
  9297. "思維導圖-" + _username,
  9298. _box, { //"/jsmind/example/demo.html"
  9299. "id": "mind" + cid + stage + task + tool + _userid,
  9300. "style": {
  9301. "width": "90%",
  9302. "height": "90%",
  9303. "overflow": 'hidden'
  9304. },
  9305. "onresize": function () { }
  9306. }, {
  9307. closecallback: function () { }
  9308. }, {
  9309. "style": {
  9310. "height": "36px"
  9311. }
  9312. }).form; //創建窗體
  9313. _taskbar = {
  9314. "id": str + _formdiv.id,
  9315. "style": {
  9316. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9317. },
  9318. "name": "思維導圖",
  9319. "forms": _formdiv,
  9320. "click": function () {
  9321. U.MD.D.I.openApplication(str, obj, info);
  9322. }
  9323. }
  9324. break;
  9325. case "doc":
  9326. aTool = 6;
  9327. _iframe = $$("iframe", {
  9328. "frameborder": "no",
  9329. "border": "0",
  9330. "scrolling ": "no",
  9331. "style": {
  9332. "cssText": "border:0;width:100%;height:100%"
  9333. },
  9334. "src": "/Office/Word/WordEditArea.htm"
  9335. })
  9336. _box.appendChild(_iframe);
  9337. _box.appendChild(_jie);
  9338. _formdiv = new U.UF.UI.form(
  9339. "協同文檔-" + _username,
  9340. _box, {
  9341. "id": "doc" + cid + stage + task + tool + _userid,
  9342. "style": {
  9343. "width": "90%",
  9344. "height": "90%",
  9345. "overflow": 'hidden'
  9346. },
  9347. "onresize": function () { }
  9348. }, {
  9349. closecallback: function () { }
  9350. }, {
  9351. "style": {
  9352. "height": "36px"
  9353. }
  9354. }).form; //創建窗體
  9355. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9356. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9357. })
  9358. _taskbar = {
  9359. "id": str + _formdiv.id,
  9360. "style": {
  9361. "backgroundImage": "url(/img/icon/doc.png)"
  9362. },
  9363. "name": "協同文檔",
  9364. "forms": _formdiv,
  9365. "click": function () {
  9366. U.MD.D.I.openApplication(str, obj, info);
  9367. }
  9368. }
  9369. break;
  9370. case "mindNetwork": //好友打開
  9371. aTool = 7;
  9372. _iframe = $$("iframe", {
  9373. "webkitallowfullscreen": "",
  9374. "mozallowfullscreen": "",
  9375. "allowfullscreen": "",
  9376. "frameborder": "no",
  9377. "border": "0",
  9378. "scrolling ": "no",
  9379. "style": {
  9380. "cssText": "border:0; width:100%; height:100%;"
  9381. },
  9382. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9383. })
  9384. _box.appendChild(_iframe);
  9385. _box.appendChild(_jie);
  9386. _formdiv = new U.UF.UI.form(
  9387. "思維網格-" + _username,
  9388. _box, {
  9389. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9390. "style": {
  9391. "width": "90%",
  9392. "height": "90%",
  9393. "overflow": 'hidden'
  9394. },
  9395. "onresize": function () { }
  9396. }, {
  9397. closecallback: function () { }
  9398. }, {
  9399. "style": {
  9400. "height": "36px"
  9401. }
  9402. }).form; //創建窗體
  9403. _taskbar = {
  9404. "id": str + _formdiv.id,
  9405. "style": {
  9406. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9407. },
  9408. "name": "思維網格",
  9409. "forms": _formdiv,
  9410. "click": function () {
  9411. U.MD.D.I.openApplication(str, obj, info);
  9412. }
  9413. }
  9414. break;
  9415. case "courseDesign":
  9416. _iframe = $$("iframe", {
  9417. "webkitallowfullscreen": "",
  9418. "mozallowfullscreen": "",
  9419. "allowfullscreen": "",
  9420. "frameborder": "no",
  9421. "border": "0",
  9422. "scrolling ": "no",
  9423. "style": {
  9424. "cssText": "border:0; width:100%; height:100%;"
  9425. },
  9426. "src": "/course-design-vue"
  9427. })
  9428. _box.appendChild(_iframe);
  9429. _box.appendChild(_jie);
  9430. _formdiv = new U.UF.UI.form(
  9431. "項目設計-" + _username,
  9432. _box, {
  9433. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9434. "style": {
  9435. "width": "90%",
  9436. "height": "90%",
  9437. "overflow": 'hidden'
  9438. },
  9439. "onresize": function () { }
  9440. }, {
  9441. closecallback: function () { }
  9442. }, {
  9443. "style": {
  9444. "height": "36px"
  9445. }
  9446. }).form; //創建窗體
  9447. _taskbar = {
  9448. "id": str + _formdiv.id,
  9449. "style": {
  9450. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9451. },
  9452. "name": "項目設計",
  9453. "forms": _formdiv,
  9454. "click": function () {
  9455. U.MD.D.I.openApplication(str, obj, info);
  9456. }
  9457. }
  9458. break;
  9459. }
  9460. const script1 = document.createElement("script");
  9461. script1.type = "text/javascript";
  9462. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9463. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9464. const script2 = document.createElement("script");
  9465. script2.type = "text/javascript";
  9466. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9467. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9468. const script3 = document.createElement("script");
  9469. script3.type = "text/javascript";
  9470. script3.charset = "UTF-8";
  9471. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9472. const script4 = document.createElement("script");
  9473. script4.type = "text/javascript";
  9474. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9475. script4.src = window.origin + "/js/Common/jietu2E.js";
  9476. if (_iframe) {
  9477. if (str == 'doc') {
  9478. _iframe = _formdiv.querySelector('iframe')
  9479. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9480. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9481. _iframe.contentWindow.document.body.appendChild(script1);
  9482. _iframe.contentWindow.document.body.appendChild(script2);
  9483. // _iframe.contentWindow.document.body.appendChild(script3);
  9484. _iframe.contentWindow.document.body.appendChild(script4);
  9485. })
  9486. if (onloadListener) {
  9487. _iframe.contentDocument.location.reload()
  9488. } else {
  9489. _iframe.contentDocument.location.reload()
  9490. }
  9491. } else if (str == 'courseDesign') {
  9492. U.UF.DL.iframeLoad(_iframe, function () {
  9493. // _iframe.contentWindow.U.MD.O.W.load();
  9494. // _iframe.contentWindow.document.body.appendChild(script1);
  9495. _iframe.contentWindow.document.body.appendChild(script2);
  9496. _iframe.contentWindow.document.body.appendChild(script4);
  9497. })
  9498. } else if (str == 'mind') {
  9499. _iframe = _formdiv.querySelector('iframe')
  9500. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9501. //
  9502. _iframe.contentWindow.document.body.appendChild(script1);
  9503. _iframe.contentWindow.document.body.appendChild(script2);
  9504. _iframe.contentWindow.document.body.appendChild(script4);
  9505. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9506. })
  9507. if (onloadListener) {
  9508. _iframe.contentDocument.location.reload()
  9509. } else {
  9510. _iframe.contentDocument.location.reload()
  9511. }
  9512. } else if (str == 'whiteboard') {
  9513. _iframe = _formdiv.querySelector('iframe')
  9514. let onloadListener = _iframe.onload = () => {
  9515. _iframe.contentWindow.document.body.appendChild(script1);
  9516. _iframe.contentWindow.document.body.appendChild(script2);
  9517. _iframe.contentWindow.document.body.appendChild(script4);
  9518. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9519. };
  9520. // if (onloadListener) {
  9521. // try {
  9522. // _iframe.src += "?cocorobo="+new Date().getTime()
  9523. // _iframe.contentWindow.document.location.reload()
  9524. // } catch (error) {
  9525. // }
  9526. // } else {
  9527. // _iframe.contentDocument.location.reload()
  9528. // }
  9529. } else {
  9530. _iframe.onload = () => {
  9531. _iframe.contentWindow.document.body.appendChild(script1);
  9532. _iframe.contentWindow.document.body.appendChild(script2);
  9533. // _iframe.contentWindow.document.body.appendChild(script3);
  9534. _iframe.contentWindow.document.body.appendChild(script4);
  9535. };
  9536. }
  9537. _jie.onclick = async () => {
  9538. let text = ''
  9539. if (aTool == 1) {
  9540. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9541. } else if (aTool == 6) {
  9542. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9543. } else if (aTool == 3) {
  9544. text = await U.MD.D.I.getEditorContent(_iframe);
  9545. }
  9546. _loading.style.display = 'flex'
  9547. console.log(_loading);
  9548. var _ajs = _iframe.contentWindow.document.createElement("script");
  9549. _ajs.type = "text/javascript";
  9550. _ajs.innerHTML =
  9551. // 'console.log(' + _loading + ');\n' +
  9552. 'var _js = document.createElement("script");\n' +
  9553. '_js.type="text/javascript";\n' +
  9554. '_js.charset="UTF-8";\n' +
  9555. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9556. "_js.onload = function(){\n" +
  9557. ' var a = document.getElementsByTagName("img")\n' +
  9558. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9559. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9560. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9561. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9562. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9563. "beforeUpload_shishi(file," +
  9564. "'" +
  9565. _userid +
  9566. "'" +
  9567. ", " +
  9568. "'" +
  9569. _cid +
  9570. "'" +
  9571. ", " +
  9572. "'" +
  9573. _stage +
  9574. "'" +
  9575. ", " +
  9576. "'" +
  9577. _task +
  9578. "'" +
  9579. ", " +
  9580. "'" +
  9581. _tool +
  9582. "'" +
  9583. ", " +
  9584. "'" +
  9585. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9586. "'" +
  9587. ", " +
  9588. "'" +
  9589. aTool +
  9590. "'" +
  9591. ", " +
  9592. "`" +
  9593. text +
  9594. "`" +
  9595. ")\n" +
  9596. " });\n" +
  9597. "}\n" +
  9598. "document.head.appendChild(_js);\n";
  9599. _iframe.contentWindow.document.head.appendChild(_ajs);
  9600. }
  9601. }
  9602. }
  9603. U.MD.D.I.getEditorContent = function (iframe) {
  9604. return new Promise((resolve, reject) => {
  9605. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9606. console.log(content);
  9607. resolve(content)
  9608. });
  9609. });
  9610. }
  9611. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9612. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9613. // if (res.value[0].length > 0) {
  9614. // // resolve(res.value[0][0].text);
  9615. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9616. // $(fileInput).val('');
  9617. // });
  9618. // }
  9619. // }, [], { "type": "GET", "withCredentials": true });
  9620. var xmlhttp;
  9621. var Mac, Sn, DeviceId
  9622. if (window.XMLHttpRequest) {
  9623. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9624. xmlhttp = new XMLHttpRequest();
  9625. }
  9626. else {
  9627. // IE6, IE5 瀏覽器執行代碼
  9628. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9629. }
  9630. xmlhttp.onreadystatechange = function () {
  9631. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9632. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9633. // resolve(res.value[0][0].text);
  9634. if (type == '2') {
  9635. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9636. } else if (type == '3') {
  9637. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9638. }
  9639. } else {
  9640. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9641. }
  9642. }
  9643. }
  9644. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9645. xmlhttp.send();
  9646. }
  9647. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9648. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9649. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9650. _userinfo = US.userInfo, //登錄用戶信息
  9651. _userid = US.userInfo.userid //登錄用戶id
  9652. let _iframe;
  9653. let _cid = cid,
  9654. _stage = stage,
  9655. _task = task,
  9656. _tool = tool;
  9657. var _jie = $$("div", {
  9658. "style": {
  9659. "position": "absolute",
  9660. "bottom": "50px",
  9661. "right": "50px",
  9662. "zIndex": "9999",
  9663. "backgroundColor": "#2268bc",
  9664. "color": "#fff",
  9665. "padding": "12px 20px",
  9666. "cursor": "pointer",
  9667. "borderRadius": "4px",
  9668. },
  9669. "innerHTML": "確認並提交"
  9670. })
  9671. let aTool = ''
  9672. let _loading = document.createElement('div')
  9673. _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;"
  9674. // _loading.id = "";
  9675. let _lchild = document.createElement('div')
  9676. let _limg = document.createElement('img')
  9677. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9678. _limg.style = "width: 26px;margin-right: 10px;"
  9679. _lchild.appendChild(_limg)
  9680. let _lspan = document.createElement('span')
  9681. _lspan.innerHTML = "上傳中..."
  9682. _lchild.appendChild(_lspan)
  9683. _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%);"
  9684. _loading.appendChild(_lchild)
  9685. var _box = $$('div', {
  9686. "style": {
  9687. "position": "relative",
  9688. "width": "100%",
  9689. "height": "100%",
  9690. },
  9691. })
  9692. _box.appendChild(_loading)
  9693. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9694. switch (str) {
  9695. case "whiteboard":
  9696. aTool = 1;
  9697. _iframe = $$("iframe", {
  9698. "frameborder": "no",
  9699. "border": "0",
  9700. "scrolling ": "no",
  9701. "style": {
  9702. "cssText": "border:0;width:100%;height:100%"
  9703. },
  9704. "src": "https://iwb.cocorobo.hk/"
  9705. })
  9706. _box.appendChild(_iframe);
  9707. _box.appendChild(_jie);
  9708. _formdiv = new U.UF.UI.form(
  9709. "電子白闆",
  9710. _box, {
  9711. "id": "whiteboards" + cid + stage + task + tool,
  9712. "style": {
  9713. "width": "90%",
  9714. "height": "90%",
  9715. "overflow": 'hidden'
  9716. },
  9717. "onresize": function () { }
  9718. }, {
  9719. closecallback: function () { }
  9720. }, {
  9721. "style": {
  9722. "height": "36px"
  9723. }
  9724. }).form; //創建窗體
  9725. _taskbar = {
  9726. "id": str + _formdiv.id,
  9727. "style": {
  9728. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9729. },
  9730. "name": "電子白闆",
  9731. "forms": _formdiv,
  9732. "click": function () {
  9733. U.MD.D.I.openApplication(str, obj, info);
  9734. }
  9735. }
  9736. break;
  9737. case "mind":
  9738. aTool = 3;
  9739. _iframe = $$("iframe", {
  9740. "frameborder": "no",
  9741. "border": "0",
  9742. "scrolling ": "no",
  9743. "style": {
  9744. "cssText": "border:0;width:100%;height:100%"
  9745. },
  9746. "src": "/kityminder-editor/dist/index.html"
  9747. });
  9748. _box.appendChild(_iframe);
  9749. _box.appendChild(_jie);
  9750. _formdiv = new U.UF.UI.form(
  9751. "思維導圖",
  9752. _box, { //"/jsmind/example/demo.html"
  9753. "id": "minds" + cid + stage + task + tool,
  9754. "style": {
  9755. "width": "90%",
  9756. "height": "90%",
  9757. "overflow": 'hidden'
  9758. },
  9759. "onresize": function () { }
  9760. }, {
  9761. closecallback: function () { }
  9762. }, {
  9763. "style": {
  9764. "height": "36px"
  9765. }
  9766. }).form; //創建窗體
  9767. _taskbar = {
  9768. "id": str + _formdiv.id,
  9769. "style": {
  9770. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9771. },
  9772. "name": "思維導圖",
  9773. "forms": _formdiv,
  9774. "click": function () {
  9775. U.MD.D.I.openApplication(str, obj, info);
  9776. }
  9777. }
  9778. break;
  9779. case "doc":
  9780. aTool = 6;
  9781. _iframe = $$("iframe", {
  9782. "frameborder": "no",
  9783. "border": "0",
  9784. "scrolling ": "no",
  9785. "style": {
  9786. "cssText": "border:0;width:100%;height:100%"
  9787. },
  9788. "src": "/Office/Word/WordEditArea.htm"
  9789. })
  9790. _box.appendChild(_iframe);
  9791. _box.appendChild(_jie);
  9792. _formdiv = new U.UF.UI.form(
  9793. "協同文檔",
  9794. _box, {
  9795. "id": "docs" + cid + stage + task + tool,
  9796. "style": {
  9797. "width": "90%",
  9798. "height": "90%",
  9799. "overflow": 'hidden'
  9800. },
  9801. "onresize": function () { }
  9802. }, {
  9803. closecallback: function () { }
  9804. }, {
  9805. "style": {
  9806. "height": "36px"
  9807. }
  9808. }).form; //創建窗體
  9809. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9810. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9811. })
  9812. _taskbar = {
  9813. "id": str + _formdiv.id,
  9814. "style": {
  9815. "backgroundImage": "url(/img/icon/doc.png)"
  9816. },
  9817. "name": "協同文檔",
  9818. "forms": _formdiv,
  9819. "click": function () {
  9820. U.MD.D.I.openApplication(str, obj, info);
  9821. }
  9822. }
  9823. break;
  9824. }
  9825. const script1 = document.createElement("script");
  9826. script1.type = "text/javascript";
  9827. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9828. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9829. const script2 = document.createElement("script");
  9830. script2.type = "text/javascript";
  9831. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9832. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9833. const script3 = document.createElement("script");
  9834. script3.type = "text/javascript";
  9835. script3.charset = "UTF-8";
  9836. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9837. const script4 = document.createElement("script");
  9838. script4.type = "text/javascript";
  9839. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9840. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9841. if (_iframe) {
  9842. if (str == 'doc') {
  9843. _iframe = _formdiv.querySelector('iframe')
  9844. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9845. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9846. _iframe.contentWindow.document.body.appendChild(script1);
  9847. _iframe.contentWindow.document.body.appendChild(script2);
  9848. // _iframe.contentWindow.document.body.appendChild(script3);
  9849. _iframe.contentWindow.document.body.appendChild(script4);
  9850. })
  9851. if (onloadListener) {
  9852. _iframe.contentDocument.location.reload()
  9853. } else {
  9854. _iframe.contentDocument.location.reload()
  9855. }
  9856. } else if (str == 'mind') {
  9857. _iframe = _formdiv.querySelector('iframe')
  9858. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9859. _iframe.contentWindow.document.body.appendChild(script1);
  9860. _iframe.contentWindow.document.body.appendChild(script2);
  9861. _iframe.contentWindow.document.body.appendChild(script4);
  9862. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9863. })
  9864. if (onloadListener) {
  9865. _iframe.contentDocument.location.reload()
  9866. } else {
  9867. _iframe.contentDocument.location.reload()
  9868. }
  9869. } else {
  9870. _iframe.onload = () => {
  9871. _iframe.contentWindow.document.body.appendChild(script1);
  9872. _iframe.contentWindow.document.body.appendChild(script2);
  9873. // _iframe.contentWindow.document.body.appendChild(script3);
  9874. _iframe.contentWindow.document.body.appendChild(script4);
  9875. };
  9876. }
  9877. _jie.onclick = async () => {
  9878. let text = ''
  9879. if (aTool == 6) {
  9880. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9881. } else if (aTool == 3) {
  9882. text = await U.MD.D.I.getEditorContent(_iframe);
  9883. }
  9884. _loading.style.display = 'flex'
  9885. console.log(_loading);
  9886. var _ajs = _iframe.contentWindow.document.createElement("script");
  9887. _ajs.type = "text/javascript";
  9888. _ajs.innerHTML =
  9889. // 'console.log(' + _loading + ');\n' +
  9890. 'var _js = document.createElement("script");\n' +
  9891. '_js.type="text/javascript";\n' +
  9892. '_js.charset="UTF-8";\n' +
  9893. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9894. "_js.onload = function(){\n" +
  9895. ' var a = document.getElementsByTagName("img")\n' +
  9896. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9897. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9898. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9899. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9900. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9901. "beforeUpload_shishi(file," +
  9902. "'" +
  9903. _userid +
  9904. "'" +
  9905. ", " +
  9906. "'" +
  9907. _cid +
  9908. "'" +
  9909. ", " +
  9910. "'" +
  9911. _stage +
  9912. "'" +
  9913. ", " +
  9914. "'" +
  9915. _task +
  9916. "'" +
  9917. ", " +
  9918. "'" +
  9919. _tool +
  9920. "'" +
  9921. ", " +
  9922. "'" +
  9923. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9924. "'" +
  9925. ", " +
  9926. "'" +
  9927. aTool +
  9928. "'" +
  9929. ", " +
  9930. "`" +
  9931. text +
  9932. "`" +
  9933. ")\n" +
  9934. " });\n" +
  9935. "}\n" +
  9936. "document.head.appendChild(_js);\n";
  9937. _iframe.contentWindow.document.head.appendChild(_ajs);
  9938. }
  9939. }
  9940. //U.MD.D.I.openClick(str);
  9941. //如果有任務欄信息
  9942. // if (_taskbar) {
  9943. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9944. // }
  9945. }
  9946. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9947. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9948. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9949. _userinfo = US.userInfo, //登錄用戶信息
  9950. _userid = US.userInfo.userid //登錄用戶id
  9951. let _iframe;
  9952. let _cid = cid,
  9953. _stage = stage,
  9954. _task = task,
  9955. _tool = tool;
  9956. var _jie = $$("div", {
  9957. "style": {
  9958. "position": "absolute",
  9959. "bottom": "50px",
  9960. "right": "50px",
  9961. "zIndex": "9999",
  9962. "backgroundColor": "#2268bc",
  9963. "color": "#fff",
  9964. "padding": "12px 20px",
  9965. "cursor": "pointer",
  9966. "borderRadius": "4px",
  9967. },
  9968. "innerHTML": "確認並提交"
  9969. })
  9970. let aTool = ''
  9971. let _loading = document.createElement('div')
  9972. _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;"
  9973. // _loading.id = "";
  9974. let _lchild = document.createElement('div')
  9975. let _limg = document.createElement('img')
  9976. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9977. _limg.style = "width: 26px;margin-right: 10px;"
  9978. _lchild.appendChild(_limg)
  9979. let _lspan = document.createElement('span')
  9980. _lspan.innerHTML = "上傳中..."
  9981. _lchild.appendChild(_lspan)
  9982. _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%);"
  9983. _loading.appendChild(_lchild)
  9984. var _box = $$('div', {
  9985. "style": {
  9986. "position": "relative",
  9987. "width": "100%",
  9988. "height": "100%",
  9989. },
  9990. })
  9991. _box.appendChild(_loading)
  9992. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9993. switch (str) {
  9994. case "whiteboard":
  9995. aTool = 1;
  9996. _iframe = $$("iframe", {
  9997. "frameborder": "no",
  9998. "border": "0",
  9999. "scrolling ": "no",
  10000. "style": {
  10001. "cssText": "border:0;width:100%;height:100%"
  10002. },
  10003. "src": "https://iwb.cocorobo.hk/"
  10004. })
  10005. _box.appendChild(_iframe);
  10006. _box.appendChild(_jie);
  10007. _formdiv = new U.UF.UI.form(
  10008. "電子白闆",
  10009. _box, {
  10010. "id": "whiteboards" + cid + stage + task + tool,
  10011. "style": {
  10012. "width": "90%",
  10013. "height": "90%",
  10014. "overflow": 'hidden'
  10015. },
  10016. "onresize": function () { }
  10017. }, {
  10018. closecallback: function () { }
  10019. }, {
  10020. "style": {
  10021. "height": "36px"
  10022. }
  10023. }).form; //創建窗體
  10024. _taskbar = {
  10025. "id": str + _formdiv.id,
  10026. "style": {
  10027. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10028. },
  10029. "name": "電子白闆",
  10030. "forms": _formdiv,
  10031. "click": function () {
  10032. U.MD.D.I.openApplication(str, obj, info);
  10033. }
  10034. }
  10035. break;
  10036. case "mind":
  10037. aTool = 3;
  10038. _iframe = $$("iframe", {
  10039. "frameborder": "no",
  10040. "border": "0",
  10041. "scrolling ": "no",
  10042. "style": {
  10043. "cssText": "border:0;width:100%;height:100%"
  10044. },
  10045. "src": "/kityminder-editor/dist/index.html"
  10046. });
  10047. _box.appendChild(_iframe);
  10048. _box.appendChild(_jie);
  10049. _formdiv = new U.UF.UI.form(
  10050. "思維導圖",
  10051. _box, { //"/jsmind/example/demo.html"
  10052. "id": "minds" + cid + stage + task + tool,
  10053. "style": {
  10054. "width": "90%",
  10055. "height": "90%",
  10056. "overflow": 'hidden'
  10057. },
  10058. "onresize": function () { }
  10059. }, {
  10060. closecallback: function () { }
  10061. }, {
  10062. "style": {
  10063. "height": "36px"
  10064. }
  10065. }).form; //創建窗體
  10066. _taskbar = {
  10067. "id": str + _formdiv.id,
  10068. "style": {
  10069. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10070. },
  10071. "name": "思維導圖",
  10072. "forms": _formdiv,
  10073. "click": function () {
  10074. U.MD.D.I.openApplication(str, obj, info);
  10075. }
  10076. }
  10077. break;
  10078. case "doc":
  10079. aTool = 6;
  10080. _iframe = $$("iframe", {
  10081. "frameborder": "no",
  10082. "border": "0",
  10083. "scrolling ": "no",
  10084. "style": {
  10085. "cssText": "border:0;width:100%;height:100%"
  10086. },
  10087. "src": "/Office/Word/WordEditArea.htm"
  10088. })
  10089. _box.appendChild(_iframe);
  10090. _box.appendChild(_jie);
  10091. _formdiv = new U.UF.UI.form(
  10092. "協同文檔",
  10093. _box, {
  10094. "id": "docs" + cid + stage + task + tool,
  10095. "style": {
  10096. "width": "90%",
  10097. "height": "90%",
  10098. "overflow": 'hidden'
  10099. },
  10100. "onresize": function () { }
  10101. }, {
  10102. closecallback: function () { }
  10103. }, {
  10104. "style": {
  10105. "height": "36px"
  10106. }
  10107. }).form; //創建窗體
  10108. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10109. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10110. })
  10111. _taskbar = {
  10112. "id": str + _formdiv.id,
  10113. "style": {
  10114. "backgroundImage": "url(/img/icon/doc.png)"
  10115. },
  10116. "name": "協同文檔",
  10117. "forms": _formdiv,
  10118. "click": function () {
  10119. U.MD.D.I.openApplication(str, obj, info);
  10120. }
  10121. }
  10122. break;
  10123. }
  10124. const script1 = document.createElement("script");
  10125. script1.type = "text/javascript";
  10126. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10127. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  10128. const script2 = document.createElement("script");
  10129. script2.type = "text/javascript";
  10130. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10131. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  10132. const script3 = document.createElement("script");
  10133. script3.type = "text/javascript";
  10134. script3.charset = "UTF-8";
  10135. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  10136. const script4 = document.createElement("script");
  10137. script4.type = "text/javascript";
  10138. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10139. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  10140. if (_iframe) {
  10141. if (str == 'doc') {
  10142. _iframe = _formdiv.querySelector('iframe')
  10143. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10144. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10145. _iframe.contentWindow.document.body.appendChild(script1);
  10146. _iframe.contentWindow.document.body.appendChild(script2);
  10147. // _iframe.contentWindow.document.body.appendChild(script3);
  10148. _iframe.contentWindow.document.body.appendChild(script4);
  10149. })
  10150. if (onloadListener) {
  10151. _iframe.contentDocument.location.reload()
  10152. } else {
  10153. _iframe.contentDocument.location.reload()
  10154. }
  10155. } else if (str == 'mind') {
  10156. _iframe = _formdiv.querySelector('iframe')
  10157. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10158. _iframe.contentWindow.document.body.appendChild(script1);
  10159. _iframe.contentWindow.document.body.appendChild(script2);
  10160. _iframe.contentWindow.document.body.appendChild(script4);
  10161. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10162. })
  10163. if (onloadListener) {
  10164. _iframe.contentDocument.location.reload()
  10165. } else {
  10166. _iframe.contentDocument.location.reload()
  10167. }
  10168. } else {
  10169. _iframe.onload = () => {
  10170. _iframe.contentWindow.document.body.appendChild(script1);
  10171. _iframe.contentWindow.document.body.appendChild(script2);
  10172. // _iframe.contentWindow.document.body.appendChild(script3);
  10173. _iframe.contentWindow.document.body.appendChild(script4);
  10174. };
  10175. }
  10176. _jie.onclick = async () => {
  10177. let text = ''
  10178. if (aTool == 6) {
  10179. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10180. } else if (aTool == 3) {
  10181. text = await U.MD.D.I.getEditorContent(_iframe);
  10182. }
  10183. _loading.style.display = 'flex'
  10184. console.log(_loading);
  10185. var _ajs = _iframe.contentWindow.document.createElement("script");
  10186. _ajs.type = "text/javascript";
  10187. _ajs.innerHTML =
  10188. // 'console.log(' + _loading + ');\n' +
  10189. 'var _js = document.createElement("script");\n' +
  10190. '_js.type="text/javascript";\n' +
  10191. '_js.charset="UTF-8";\n' +
  10192. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  10193. "_js.onload = function(){\n" +
  10194. ' var a = document.getElementsByTagName("img")\n' +
  10195. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10196. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10197. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10198. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10199. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  10200. "beforeUpload_shishi(file," +
  10201. "'" +
  10202. _userid +
  10203. "'" +
  10204. ", " +
  10205. "'" +
  10206. _cid +
  10207. "'" +
  10208. ", " +
  10209. "'" +
  10210. _stage +
  10211. "'" +
  10212. ", " +
  10213. "'" +
  10214. _task +
  10215. "'" +
  10216. ", " +
  10217. "'" +
  10218. _tool +
  10219. "'" +
  10220. ", " +
  10221. "'" +
  10222. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10223. "'" +
  10224. ", " +
  10225. "'" +
  10226. aTool +
  10227. "'" +
  10228. ", " +
  10229. "`" +
  10230. text +
  10231. "`" +
  10232. ")\n" +
  10233. " });\n" +
  10234. "}\n" +
  10235. "document.head.appendChild(_js);\n";
  10236. _iframe.contentWindow.document.head.appendChild(_ajs);
  10237. }
  10238. }
  10239. //U.MD.D.I.openClick(str);
  10240. //如果有任務欄信息
  10241. // if (_taskbar) {
  10242. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10243. // }
  10244. }
  10245. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10246. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10247. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10248. _userinfo = US.userInfo, //登錄用戶信息
  10249. _userid = US.userInfo.userid //登錄用戶id
  10250. let _iframe;
  10251. let _cid = cid,
  10252. _stage = stage,
  10253. _task = task,
  10254. _tool = tool;
  10255. var _jie = $$("div", {
  10256. "style": {
  10257. "position": "absolute",
  10258. "bottom": "50px",
  10259. "right": "50px",
  10260. "zIndex": "9999",
  10261. "backgroundColor": "#2268bc",
  10262. "color": "#fff",
  10263. "padding": "12px 20px",
  10264. "cursor": "pointer",
  10265. "borderRadius": "4px",
  10266. },
  10267. "innerHTML": "上傳模闆"
  10268. })
  10269. let aTool = ''
  10270. let _loading = document.createElement('div')
  10271. _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;"
  10272. // _loading.id = "";
  10273. let _lchild = document.createElement('div')
  10274. let _limg = document.createElement('img')
  10275. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10276. _limg.style = "width: 26px;margin-right: 10px;"
  10277. _lchild.appendChild(_limg)
  10278. let _lspan = document.createElement('span')
  10279. _lspan.innerHTML = "上傳中..."
  10280. _lchild.appendChild(_lspan)
  10281. _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%);"
  10282. _loading.appendChild(_lchild)
  10283. var _box = $$('div', {
  10284. "style": {
  10285. "position": "relative",
  10286. "width": "100%",
  10287. "height": "100%",
  10288. },
  10289. })
  10290. _box.appendChild(_loading)
  10291. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10292. switch (str) {
  10293. case "whiteboard":
  10294. aTool = 1;
  10295. _iframe = $$("iframe", {
  10296. "frameborder": "no",
  10297. "border": "0",
  10298. "scrolling ": "no",
  10299. "style": {
  10300. "cssText": "border:0;width:100%;height:100%"
  10301. },
  10302. "src": "https://iwb.cocorobo.hk/"
  10303. })
  10304. _box.appendChild(_iframe);
  10305. _box.appendChild(_jie);
  10306. _formdiv = new U.UF.UI.form(
  10307. "電子白闆",
  10308. _box, {
  10309. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10310. "style": {
  10311. "width": "90%",
  10312. "height": "90%",
  10313. "overflow": 'hidden'
  10314. },
  10315. "onresize": function () { }
  10316. }, {
  10317. closecallback: function () { }
  10318. }, {
  10319. "style": {
  10320. "height": "36px"
  10321. }
  10322. }).form; //創建窗體
  10323. _taskbar = {
  10324. "id": str + _formdiv.id,
  10325. "style": {
  10326. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10327. },
  10328. "name": "電子白闆",
  10329. "forms": _formdiv,
  10330. "click": function () {
  10331. U.MD.D.I.openApplication(str, obj, info);
  10332. }
  10333. }
  10334. break;
  10335. case "mind":
  10336. aTool = 3;
  10337. _iframe = $$("iframe", {
  10338. "frameborder": "no",
  10339. "border": "0",
  10340. "scrolling ": "no",
  10341. "style": {
  10342. "cssText": "border:0;width:100%;height:100%"
  10343. },
  10344. "src": "/kityminder-editor/dist/index.html"
  10345. });
  10346. _box.appendChild(_iframe);
  10347. _box.appendChild(_jie);
  10348. _formdiv = new U.UF.UI.form(
  10349. "思維導圖",
  10350. _box, { //"/jsmind/example/demo.html"
  10351. "id": "minds_Yu" + cid + stage + task + tool,
  10352. "style": {
  10353. "width": "90%",
  10354. "height": "90%",
  10355. "overflow": 'hidden'
  10356. },
  10357. "onresize": function () { }
  10358. }, {
  10359. closecallback: function () { }
  10360. }, {
  10361. "style": {
  10362. "height": "36px"
  10363. }
  10364. }).form; //創建窗體
  10365. _taskbar = {
  10366. "id": str + _formdiv.id,
  10367. "style": {
  10368. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10369. },
  10370. "name": "思維導圖",
  10371. "forms": _formdiv,
  10372. "click": function () {
  10373. U.MD.D.I.openApplication(str, obj, info);
  10374. }
  10375. }
  10376. break;
  10377. case "doc":
  10378. aTool = 6;
  10379. _iframe = $$("iframe", {
  10380. "frameborder": "no",
  10381. "border": "0",
  10382. "scrolling ": "no",
  10383. "style": {
  10384. "cssText": "border:0;width:100%;height:100%"
  10385. },
  10386. "src": "/Office/Word/WordEditArea.htm"
  10387. })
  10388. _box.appendChild(_iframe);
  10389. _box.appendChild(_jie);
  10390. _formdiv = new U.UF.UI.form(
  10391. "協同文檔",
  10392. _box, {
  10393. "id": "docs_Yu" + cid + stage + task + tool,
  10394. "style": {
  10395. "width": "90%",
  10396. "height": "90%",
  10397. "overflow": 'hidden'
  10398. },
  10399. "onresize": function () { }
  10400. }, {
  10401. closecallback: function () { }
  10402. }, {
  10403. "style": {
  10404. "height": "36px"
  10405. }
  10406. }).form; //創建窗體
  10407. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10408. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10409. })
  10410. _taskbar = {
  10411. "id": str + _formdiv.id,
  10412. "style": {
  10413. "backgroundImage": "url(/img/icon/doc.png)"
  10414. },
  10415. "name": "協同文檔",
  10416. "forms": _formdiv,
  10417. "click": function () {
  10418. U.MD.D.I.openApplication(str, obj, info);
  10419. }
  10420. }
  10421. break;
  10422. case "CocoPi":
  10423. aTool = 57;
  10424. _iframe = $$("iframe", {
  10425. "allowpaymentrequest": "allowpaymentrequest",
  10426. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10427. "webkitallowfullscreen": "",
  10428. "mozallowfullscreen": "",
  10429. "frameborder": "no",
  10430. "border": "0",
  10431. "scrolling ": "no",
  10432. "style": {
  10433. "cssText": "border:0;width:100%;height:100%"
  10434. },
  10435. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10436. })
  10437. _box.appendChild(_iframe);
  10438. _box.appendChild(_jie);
  10439. _formdiv = new U.UF.UI.form(
  10440. "CocoPi",
  10441. _box, {
  10442. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10443. "style": {
  10444. "width": "90%",
  10445. "height": "90%",
  10446. "overflow": 'hidden'
  10447. },
  10448. "onresize": function () { }
  10449. }, {
  10450. closecallback: function () { }
  10451. }, {
  10452. "style": {
  10453. "height": "36px"
  10454. }
  10455. }).form; //創建窗體
  10456. _taskbar = {
  10457. "id": str + _formdiv.id,
  10458. "style": {
  10459. "backgroundImage": "url(/img/icon/cocopi.png)"
  10460. },
  10461. "name": "CocoPi",
  10462. "forms": _formdiv,
  10463. "click": function () {
  10464. U.MD.D.I.openApplication(str, obj, info);
  10465. }
  10466. }
  10467. break;
  10468. }
  10469. if (_iframe) {
  10470. if (str == 'doc') {
  10471. _iframe = _formdiv.querySelector('iframe')
  10472. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10473. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10474. })
  10475. if (onloadListener) {
  10476. _iframe.contentDocument.location.reload()
  10477. } else {
  10478. _iframe.contentDocument.location.reload()
  10479. }
  10480. } else if (str == 'mind') {
  10481. _iframe = _formdiv.querySelector('iframe')
  10482. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10483. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10484. })
  10485. if (onloadListener) {
  10486. _iframe.contentDocument.location.reload()
  10487. } else {
  10488. _iframe.contentDocument.location.reload()
  10489. }
  10490. } else if (str == 'whiteboard') {
  10491. _iframe = _formdiv.querySelector('iframe')
  10492. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10493. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10494. })
  10495. // if (onloadListener) {
  10496. // try {
  10497. // _iframe.src += "?cocorobo="+new Date().getTime()
  10498. // _iframe.contentWindow.document.location.reload()
  10499. // } catch (error) {
  10500. // }
  10501. // } else {
  10502. // _iframe.contentDocument.location.reload()
  10503. // }
  10504. } else if (str == 'CocoPi') {
  10505. _iframe = _formdiv.querySelector('iframe')
  10506. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10507. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10508. })
  10509. if (onloadListener) {
  10510. _iframe.contentDocument.location.reload()
  10511. } else {
  10512. _iframe.contentDocument.location.reload()
  10513. }
  10514. } else {
  10515. _iframe.onload = () => { };
  10516. }
  10517. _jie.onclick = async () => {
  10518. let text = ''
  10519. let type = '2'
  10520. if (aTool == 1) {
  10521. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10522. type = '3'
  10523. } else if (aTool == 6) {
  10524. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10525. type = '1'
  10526. } else if (aTool == 3) {
  10527. text = await U.MD.D.I.getEditorContent(_iframe);
  10528. type = '2'
  10529. } else if (aTool == 57) {
  10530. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10531. type = '4'
  10532. }
  10533. _loading.style.display = 'flex'
  10534. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10535. }
  10536. }
  10537. //U.MD.D.I.openClick(str);
  10538. //如果有任務欄信息
  10539. // if (_taskbar) {
  10540. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10541. // }
  10542. }
  10543. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10544. var xmlhttp;
  10545. var Mac, Sn, DeviceId
  10546. if (window.XMLHttpRequest) {
  10547. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10548. xmlhttp = new XMLHttpRequest();
  10549. }
  10550. else {
  10551. // IE6, IE5 瀏覽器執行代碼
  10552. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10553. }
  10554. xmlhttp.onreadystatechange = function () {
  10555. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10556. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10557. // resolve(res.value[0][0].text);
  10558. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10559. }
  10560. }
  10561. }
  10562. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10563. xmlhttp.send();
  10564. }
  10565. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10566. var xmlhttp;
  10567. var Mac, Sn, DeviceId
  10568. if (window.XMLHttpRequest) {
  10569. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10570. xmlhttp = new XMLHttpRequest();
  10571. }
  10572. else {
  10573. // IE6, IE5 瀏覽器執行代碼
  10574. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10575. }
  10576. xmlhttp.onreadystatechange = function () {
  10577. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10578. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10579. // resolve(res.value[0][0].text);
  10580. if (type == '2') {
  10581. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10582. } else if (type == '3') {
  10583. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10584. } else if (type == '4') {
  10585. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10586. }
  10587. } else {
  10588. if (type == '2') {
  10589. iframe.contentWindow.editor.minder.importData('json', '')
  10590. } else if (type == '3') {
  10591. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10592. } else if (type == '4') {
  10593. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10594. }
  10595. }
  10596. }
  10597. }
  10598. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10599. xmlhttp.send();
  10600. }
  10601. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10602. var xmlhttp;
  10603. var Mac, Sn, DeviceId
  10604. if (window.XMLHttpRequest) {
  10605. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10606. xmlhttp = new XMLHttpRequest();
  10607. }
  10608. else {
  10609. // IE6, IE5 瀏覽器執行代碼
  10610. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10611. }
  10612. xmlhttp.onreadystatechange = function () {
  10613. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10614. if (xmlhttp.response) {
  10615. // resolve(res.value[0][0].text);
  10616. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10617. // $(fileInput).val('');
  10618. // });
  10619. span.innerHTML = '上傳成功'
  10620. setTimeout(() => {
  10621. loading.style.display = 'none'
  10622. }, 1000);
  10623. }
  10624. }
  10625. }
  10626. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10627. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10628. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10629. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10630. // 設置請求頭,錶示請求體的編碼格式
  10631. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10632. // 設置請求體,使用url-encoded格式的數據
  10633. }
  10634. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10635. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10636. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10637. _userinfo = US.userInfo, //登錄用戶信息
  10638. _userid = US.userInfo.userid //登錄用戶id
  10639. let _iframe;
  10640. let _cid = cid,
  10641. _stage = stage,
  10642. _task = task,
  10643. _tool = tool;
  10644. var _jie = $$("div", {
  10645. "style": {
  10646. "position": "absolute",
  10647. "bottom": "50px",
  10648. "right": "50px",
  10649. "zIndex": "9999",
  10650. "backgroundColor": "#2268bc",
  10651. "color": "#fff",
  10652. "padding": "12px 20px",
  10653. "cursor": "pointer",
  10654. "borderRadius": "4px",
  10655. },
  10656. "innerHTML": "提交作業"
  10657. })
  10658. let aTool = ''
  10659. let _loading = document.createElement('div')
  10660. _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;"
  10661. // _loading.id = "";
  10662. let _lchild = document.createElement('div')
  10663. let _limg = document.createElement('img')
  10664. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10665. _limg.style = "width: 26px;margin-right: 10px;"
  10666. _lchild.appendChild(_limg)
  10667. let _lspan = document.createElement('span')
  10668. _lspan.innerHTML = "上傳中..."
  10669. _lchild.appendChild(_lspan)
  10670. _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%);"
  10671. _loading.appendChild(_lchild)
  10672. var _box = $$('div', {
  10673. "style": {
  10674. "position": "relative",
  10675. "width": "100%",
  10676. "height": "100%",
  10677. },
  10678. })
  10679. _box.appendChild(_loading)
  10680. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10681. switch (str) {
  10682. case "CocoPi":
  10683. aTool = 57;
  10684. _iframe = $$("iframe", {
  10685. "allowpaymentrequest": "allowpaymentrequest",
  10686. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10687. "webkitallowfullscreen": "",
  10688. "mozallowfullscreen": "",
  10689. "frameborder": "no",
  10690. "border": "0",
  10691. "scrolling ": "no",
  10692. "style": {
  10693. "cssText": "border:0;width:100%;height:100%"
  10694. },
  10695. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10696. })
  10697. _box.appendChild(_iframe);
  10698. _box.appendChild(_jie);
  10699. _formdiv = new U.UF.UI.form(
  10700. "CocoPi",
  10701. _box, {
  10702. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10703. "style": {
  10704. "width": "90%",
  10705. "height": "90%",
  10706. "overflow": 'hidden'
  10707. },
  10708. "onresize": function () { }
  10709. }, {
  10710. closecallback: function () { }
  10711. }, {
  10712. "style": {
  10713. "height": "36px"
  10714. }
  10715. }).form; //創建窗體
  10716. _taskbar = {
  10717. "id": str + _formdiv.id,
  10718. "style": {
  10719. "backgroundImage": "url(/img/icon/cocopi.png)"
  10720. },
  10721. "name": "CocoPi",
  10722. "forms": _formdiv,
  10723. "click": function () {
  10724. U.MD.D.I.openApplication(str, obj, info);
  10725. }
  10726. }
  10727. break;
  10728. }
  10729. if (_iframe) {
  10730. if (str == 'CocoPi') {
  10731. _iframe = _formdiv.querySelector('iframe')
  10732. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10733. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10734. })
  10735. if (onloadListener) {
  10736. _iframe.contentDocument.location.reload()
  10737. } else {
  10738. _iframe.contentDocument.location.reload()
  10739. }
  10740. }
  10741. _jie.onclick = async () => {
  10742. let text = ''
  10743. if (aTool == 57) {
  10744. text = _iframe.contentWindow.getLoadXmlStr()
  10745. }
  10746. _loading.style.display = 'flex'
  10747. console.log(_loading);
  10748. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10749. _loading.style.display = 'none'
  10750. let _div = document.createElement('div')
  10751. _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;"
  10752. let _inner = document.createElement('div')
  10753. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10754. _inner.innerHTML = "上傳成功"
  10755. _div.appendChild(_inner)
  10756. _iframe.contentWindow.window.document.body.appendChild(_div)
  10757. _div.onclick = () => {
  10758. _iframe.contentWindow.window.document.body.removeChild(_div)
  10759. }
  10760. setTimeout(() => {
  10761. _iframe.contentWindow.window.document.body.removeChild(_div)
  10762. }, 1000);
  10763. }, [], { "type": "POST", "withCredentials": true });
  10764. }
  10765. }
  10766. }
  10767. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10768. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10769. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10770. _userid = student.userid, //登錄用戶id
  10771. _username = student.student //用戶名字
  10772. let _iframe;
  10773. let _cid = cid,
  10774. _stage = stage,
  10775. _task = task,
  10776. _tool = tool;
  10777. var _jie = $$("div", {
  10778. "style": {
  10779. "position": "absolute",
  10780. "bottom": "50px",
  10781. "right": "50px",
  10782. "zIndex": "9999",
  10783. "backgroundColor": "#2268bc",
  10784. "color": "#fff",
  10785. "padding": "12px 20px",
  10786. "cursor": "pointer",
  10787. "borderRadius": "4px",
  10788. },
  10789. "innerHTML": "提交作業"
  10790. })
  10791. let aTool = ''
  10792. let _loading = document.createElement('div')
  10793. _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;"
  10794. // _loading.id = "";
  10795. let _lchild = document.createElement('div')
  10796. let _limg = document.createElement('img')
  10797. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10798. _limg.style = "width: 26px;margin-right: 10px;"
  10799. _lchild.appendChild(_limg)
  10800. let _lspan = document.createElement('span')
  10801. _lspan.innerHTML = "上傳中..."
  10802. _lchild.appendChild(_lspan)
  10803. _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%);"
  10804. _loading.appendChild(_lchild)
  10805. var _box = $$('div', {
  10806. "style": {
  10807. "position": "relative",
  10808. "width": "100%",
  10809. "height": "100%",
  10810. },
  10811. })
  10812. _box.appendChild(_loading)
  10813. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10814. switch (str) {
  10815. case "CocoPi":
  10816. aTool = 57;
  10817. _iframe = $$("iframe", {
  10818. "allowpaymentrequest": "allowpaymentrequest",
  10819. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10820. "webkitallowfullscreen": "",
  10821. "mozallowfullscreen": "",
  10822. "frameborder": "no",
  10823. "border": "0",
  10824. "scrolling ": "no",
  10825. "style": {
  10826. "cssText": "border:0;width:100%;height:100%"
  10827. },
  10828. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10829. })
  10830. _box.appendChild(_iframe);
  10831. _box.appendChild(_jie);
  10832. _formdiv = new U.UF.UI.form(
  10833. "CocoPi-" + _username,
  10834. _box, {
  10835. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10836. "style": {
  10837. "width": "90%",
  10838. "height": "90%",
  10839. "overflow": 'hidden'
  10840. },
  10841. "onresize": function () { }
  10842. }, {
  10843. closecallback: function () { }
  10844. }, {
  10845. "style": {
  10846. "height": "36px"
  10847. }
  10848. }).form; //創建窗體
  10849. _taskbar = {
  10850. "id": str + _formdiv.id,
  10851. "style": {
  10852. "backgroundImage": "url(/img/icon/cocopi.png)"
  10853. },
  10854. "name": "CocoPi",
  10855. "forms": _formdiv,
  10856. "click": function () {
  10857. U.MD.D.I.openApplication(str, obj, info);
  10858. }
  10859. }
  10860. break;
  10861. }
  10862. if (_iframe) {
  10863. if (str == 'CocoPi') {
  10864. _iframe = _formdiv.querySelector('iframe')
  10865. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10866. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10867. })
  10868. if (onloadListener) {
  10869. _iframe.contentDocument.location.reload()
  10870. } else {
  10871. _iframe.contentDocument.location.reload()
  10872. }
  10873. }
  10874. _jie.onclick = async () => {
  10875. let text = ''
  10876. if (aTool == 57) {
  10877. text = _iframe.contentWindow.getLoadXmlStr()
  10878. }
  10879. _loading.style.display = 'flex'
  10880. console.log(_loading);
  10881. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10882. _loading.style.display = 'none'
  10883. let _div = document.createElement('div')
  10884. _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;"
  10885. let _inner = document.createElement('div')
  10886. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10887. _inner.innerHTML = "上傳成功"
  10888. _div.appendChild(_inner)
  10889. _iframe.contentWindow.window.document.body.appendChild(_div)
  10890. _div.onclick = () => {
  10891. _iframe.contentWindow.window.document.body.removeChild(_div)
  10892. }
  10893. setTimeout(() => {
  10894. _iframe.contentWindow.window.document.body.removeChild(_div)
  10895. }, 1000);
  10896. }, [], { "type": "POST", "withCredentials": true });
  10897. }
  10898. }
  10899. }
  10900. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10901. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10902. if (res.value[0].length > 0) {
  10903. if (atool == 57) {
  10904. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10905. }
  10906. } else {
  10907. if (atool == 57) {
  10908. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10909. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10910. }
  10911. }
  10912. }, [], { "type": "POST", "withCredentials": true });
  10913. }
  10914. U.MD.D.addOp = function(text,type,time){
  10915. var userInfo = US.userInfo;
  10916. if(Object.keys(userInfo).length !== 0){
  10917. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10918. }, [], { "type": "POST", "withCredentials": true });
  10919. }
  10920. }