DeskTop.js 724 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //雲海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  943. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未來教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  994. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未來教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未來教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "項目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成華教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成華教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成華教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //鹽田區幼兒園
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //鹽田區幼兒園
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  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.scnuaiAdminDeskIcon = [
  1331. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  1364. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  1430. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. ];
  1456. //stia
  1457. U.MD.D.I.stiaTeacherDeskIcon = [
  1458. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1459. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1461. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1462. // { "Name": "項目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1465. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. // { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1467. // { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1468. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1469. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1470. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1471. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1472. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1473. ];
  1474. //stia
  1475. U.MD.D.I.stiaStudentDeskIcon = [
  1476. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. ];
  1481. //szdjg
  1482. U.MD.D.I.szdjgTeacherDeskIcon = [
  1483. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1484. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1485. ];
  1486. //szdjg
  1487. U.MD.D.I.szdjgStudentDeskIcon = [
  1488. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //010607
  1494. U.MD.D.I.x010607TeacherDeskIcon = [
  1495. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1503. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1504. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1505. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1506. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1507. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1508. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1509. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1510. ];
  1511. //010607
  1512. U.MD.D.I.x010607StudentDeskIcon = [
  1513. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //010608
  1519. U.MD.D.I.x010608TeacherDeskIcon = [
  1520. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. ];
  1535. //010608
  1536. U.MD.D.I.x010608StudentDeskIcon = [
  1537. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //xhly
  1543. U.MD.D.I.xhlyTeacherDeskIcon = [
  1544. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. ];
  1546. //010608
  1547. U.MD.D.I.xhlyStudentDeskIcon = [
  1548. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //北師大
  1551. U.MD.D.I.BSDNSteacherDeskIcon = [
  1552. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1553. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1555. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1556. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1557. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1559. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1560. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1562. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1563. ];
  1564. //北師大
  1565. U.MD.D.I.BSDNSstudentDeskIcon = [
  1566. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //CUHK_EDU
  1572. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1573. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1576. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1577. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1578. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1579. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1580. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1581. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1583. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1584. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1585. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1586. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1587. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1588. ];
  1589. //CUHK_EDU
  1590. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1591. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //010503
  1597. U.MD.D.I.x010503TeacherDeskIcon = [
  1598. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1601. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1602. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1606. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1607. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1608. ];
  1609. //010503
  1610. U.MD.D.I.x010503StudentDeskIcon = [
  1611. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1615. ];
  1616. //SPROUT Lab
  1617. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1618. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1619. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1620. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1621. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1622. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1623. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1624. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1625. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1626. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1627. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1628. ];
  1629. //SPROUT Lab
  1630. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1631. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1635. ];
  1636. //010204
  1637. U.MD.D.I.x010204TeacherDeskIcon = [
  1638. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. ];
  1641. //010204
  1642. U.MD.D.I.x010204StudentDeskIcon = [
  1643. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1644. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1645. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1647. ];
  1648. //trail
  1649. U.MD.D.I.trailTeacherDeskIcon = [
  1650. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1651. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1652. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1653. ];
  1654. //trail
  1655. U.MD.D.I.trailStudentDeskIcon = [
  1656. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1657. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1658. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1659. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. ];
  1661. //trial
  1662. U.MD.D.I.trialTeacherDeskIcon = [
  1663. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1664. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1665. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1666. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1667. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1669. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1670. ];
  1671. //trial
  1672. U.MD.D.I.trialStudentDeskIcon = [
  1673. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1674. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1675. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1676. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1677. ];
  1678. //010504
  1679. U.MD.D.I.x010504TeacherDeskIcon = [
  1680. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1681. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1682. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1683. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1684. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1685. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1687. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1688. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1691. ];
  1692. //010504
  1693. U.MD.D.I.x010504StudentDeskIcon = [
  1694. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1695. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1696. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1697. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1698. ];
  1699. //010505
  1700. U.MD.D.I.x010505TeacherDeskIcon = [
  1701. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1702. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1703. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1704. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1705. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1706. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1707. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1708. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1709. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1710. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1711. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1712. ];
  1713. //010505
  1714. U.MD.D.I.x010505StudentDeskIcon = [
  1715. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1716. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1717. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. ];
  1720. //SCNUET
  1721. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1722. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1723. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1724. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1725. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1726. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1727. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1728. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1729. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1730. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1731. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1732. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1733. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1734. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1735. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1736. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1737. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1738. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1739. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1740. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1741. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1742. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1743. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1744. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1745. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1746. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1747. ];
  1748. //SCNUET
  1749. U.MD.D.I.SCNUETAdminDeskIcon = [
  1750. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1751. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1752. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1753. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1754. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1755. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1756. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1757. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1758. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1759. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1760. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1761. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1762. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1763. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1764. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1765. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1766. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1767. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1768. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1769. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1770. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1771. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1772. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1773. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1774. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1775. ];
  1776. //SCNUET
  1777. U.MD.D.I.SCNUETStudentDeskIcon = [
  1778. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1779. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1780. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1781. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1782. ];
  1783. //x020201
  1784. U.MD.D.I.x020201TeacherDeskIcon = [
  1785. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1786. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1787. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1788. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1789. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1790. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1791. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1792. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1793. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1794. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1795. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1796. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1797. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1798. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1799. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1800. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1801. ];
  1802. //x020201
  1803. U.MD.D.I.x020201AdminDeskIcon = [
  1804. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1805. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1806. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1807. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1808. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1809. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1810. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1811. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1812. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1813. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1814. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1815. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1816. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1817. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1818. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1819. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1820. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1821. ];
  1822. //020201
  1823. U.MD.D.I.x020201StudentDeskIcon = [
  1824. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1825. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1826. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1827. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1828. ];
  1829. //010611
  1830. U.MD.D.I.x010611TeacherDeskIcon = [
  1831. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1832. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1833. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1834. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1835. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1836. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1837. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1838. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1839. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1840. ];
  1841. //010611
  1842. U.MD.D.I.x010611StudentDeskIcon = [
  1843. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1844. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1845. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1846. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1847. ];
  1848. //010612
  1849. U.MD.D.I.x010612TeacherDeskIcon = [
  1850. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1851. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1852. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1853. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1854. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1855. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1856. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1857. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1858. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1859. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1860. ];
  1861. //010612
  1862. U.MD.D.I.x010612StudentDeskIcon = [
  1863. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1864. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1865. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1866. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1867. ];
  1868. //tianyuan
  1869. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1870. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1871. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1872. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1873. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1874. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1875. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1876. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1877. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1878. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1879. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1880. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1881. ];
  1882. //010611
  1883. U.MD.D.I.tianyuanStudentDeskIcon = [
  1884. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1885. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1886. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1887. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1888. ];
  1889. //320101
  1890. U.MD.D.I.x320101TeacherDeskIcon = [
  1891. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1892. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1893. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1894. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1895. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1896. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1897. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1898. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1899. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1900. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1901. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1902. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1903. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1904. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1905. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1906. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1907. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1908. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1909. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1910. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1911. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1912. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1913. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1914. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1915. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1916. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1917. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1918. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1919. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1920. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1921. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1922. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1923. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1924. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1925. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1926. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1927. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1928. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1929. ];
  1930. //320101
  1931. U.MD.D.I.x320101StudentDeskIcon = [
  1932. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1933. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1934. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1935. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1936. ];
  1937. //szsy
  1938. U.MD.D.I.szsyTeacherDeskIcon = [
  1939. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1940. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1941. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1942. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1943. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1944. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1945. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1946. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1947. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1948. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1949. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1950. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1951. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1952. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1953. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1954. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1955. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1956. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1957. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1958. ];
  1959. //szsy
  1960. U.MD.D.I.szsyStudentDeskIcon = [
  1961. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1962. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1963. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1964. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1965. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1966. ];
  1967. //010404
  1968. U.MD.D.I.x010404TeacherDeskIcon = [
  1969. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1970. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1971. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1972. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1973. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1974. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1975. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1976. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1977. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1978. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1979. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1980. ];
  1981. //010404
  1982. U.MD.D.I.x010404StudentDeskIcon = [
  1983. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1984. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1985. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1986. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1987. ];
  1988. //cocorobo demo
  1989. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1992. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1993. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1994. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1995. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1996. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1997. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1998. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1999. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2000. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2001. ];
  2002. //cocorobo demo
  2003. U.MD.D.I.demoCocoStudentDeskIcon = [
  2004. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2005. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2006. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2007. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2008. ];
  2009. //#region 桌面初始化a
  2010. /**
  2011. * 初始化桌面的起始函數
  2012. *
  2013. */
  2014. U.MD.D.I.init = function () {
  2015. if ($("#U_MD_D_K")[0]) {
  2016. //初始化桌面圖標
  2017. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2018. // var clickUrl = ':12588/requestIp.php';
  2019. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2020. // U.MD.D.I.Ip = data;
  2021. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2022. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2023. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2024. // })
  2025. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  2026. // })
  2027. }
  2028. }
  2029. /**
  2030. * 模式切換
  2031. *
  2032. */
  2033. U.MD.D.I.ModeCheck = function (type) {
  2034. if (US.Config.type == type) {
  2035. return
  2036. }
  2037. US.Config.type = type
  2038. $('.U_PBL_Check .active')[0].className = ''
  2039. if (type == 1) {
  2040. $('.U_PBL_Check div')[0].className = 'active'
  2041. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2042. } else {
  2043. $('.U_PBL_Check div')[1].className = 'active'
  2044. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2045. }
  2046. //初始化桌面圖標
  2047. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2048. if (type == 2) {
  2049. U.MD.D.I.openApplication("project")
  2050. }
  2051. }
  2052. /**
  2053. * 隱藏任務欄
  2054. *
  2055. * @param {element} 桌面元素
  2056. */
  2057. U.MD.D.I.hiddenTaskbar = function (el) {
  2058. //任務欄位置變小
  2059. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2060. //桌面的位置變大
  2061. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2062. }
  2063. /**
  2064. * 隱藏任務欄
  2065. *
  2066. * @param {element} 桌面元素
  2067. */
  2068. U.MD.D.I.hiddenTaskbarout = function (el) {
  2069. //任務欄位置變小
  2070. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2071. //任務欄位置變化
  2072. U.selectEl(el).css({ "bottom": "-60px" });
  2073. //桌面的位置變大
  2074. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2075. }
  2076. }
  2077. /**
  2078. * 初始化打印桌面圖標
  2079. *
  2080. * @param {element} 桌面元素
  2081. */
  2082. U.MD.D.I.initDesktopIcons = function (el, type) {
  2083. var i, //用於循環
  2084. _content, //桌面圖標元素
  2085. _iconcontent, //桌面圖標元素
  2086. _frag = $$("frag"), //定義一個碎片元素
  2087. _type = US.userInfo.type,
  2088. _org = US.userInfo.org,
  2089. _oid = US.userInfo.organizeid,
  2090. _role = US.userInfo.role,
  2091. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  2092. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  2093. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  2094. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  2095. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  2096. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  2097. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  2098. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2099. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2100. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2101. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  2102. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  2103. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  2104. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  2105. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取鬆山湖
  2106. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  2107. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  2108. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  2109. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  2110. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  2111. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  2112. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  2113. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  2114. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  2115. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2116. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2117. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  2118. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  2119. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  2120. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  2121. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  2122. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  2123. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2124. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2125. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2126. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2127. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2128. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2129. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2130. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2131. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2132. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  2133. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2134. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2135. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2136. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2137. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  2138. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2139. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2140. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2141. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2142. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2143. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2144. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2145. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2146. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2147. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2148. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2149. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2150. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2151. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2152. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2153. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  2154. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2155. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2156. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2157. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2158. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2159. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2160. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2161. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2162. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2163. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2164. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2165. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  2166. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  2167. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  2168. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  2169. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2170. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2171. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2172. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2173. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2174. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2175. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2176. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2177. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2178. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2179. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2180. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2181. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2182. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2183. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2184. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2185. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2186. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2187. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2188. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2189. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2190. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2191. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2192. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2193. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2194. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2195. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2196. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2197. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2198. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2199. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2200. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2201. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2202. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2203. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2204. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2205. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2206. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2207. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2208. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2209. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2210. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2211. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2212. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2213. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2214. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2215. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2216. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2217. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2218. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2219. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2220. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2221. 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','9a8076a2-469a-11f0-b60f-005056924926'];
  2222. 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', 'eaee75a4-ff2e-11ef-b508-005056924926'];
  2223. 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",]
  2224. //清楚桌面圖標
  2225. el.innerHTML = "";
  2226. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2227. _teacherDesktopIconInfo.push(
  2228. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2229. { "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)" } },
  2230. )
  2231. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2232. }
  2233. 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 == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2234. _teacherDesktopIconInfo.push(
  2235. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2236. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2237. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2238. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2239. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2240. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2241. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2242. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2243. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2244. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2245. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2246. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2247. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2248. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2249. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2250. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2251. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2252. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2253. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2254. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2255. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2256. )
  2257. }
  2258. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//鬆坪學校
  2259. _teacherDesktopIconInfo.push(
  2260. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2261. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2262. )
  2263. }
  2264. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//鬆坪學校
  2265. _nsfxTeacherDeskIconInfo.push(
  2266. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2267. )
  2268. }
  2269. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2270. // _teacherDesktopIconInfo.push(
  2271. // )
  2272. // }
  2273. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2274. _teacherDesktopIconInfo.push(
  2275. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2276. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2277. )
  2278. }
  2279. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2280. _teacherDesktopIconInfo.push(
  2281. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2282. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2283. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2284. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2285. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2286. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2287. )
  2288. _studentDesktopIconInfo.push(
  2289. )
  2290. }
  2291. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2292. _teacherDesktopIconInfo.push(
  2293. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2294. )
  2295. _studentDesktopIconInfo.push(
  2296. )
  2297. }
  2298. //010606 組織
  2299. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2300. _teacherDesktopIconInfo.push(
  2301. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2302. )
  2303. _studentDesktopIconInfo.push(
  2304. )
  2305. }
  2306. //麒麟二中 和 民新小學
  2307. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2308. _teacherDesktopIconInfo.push(
  2309. )
  2310. }
  2311. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2312. _teacherDesktopIconInfo.push(
  2313. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2314. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2315. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2316. )
  2317. }
  2318. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2319. _hkTeacherDeskIconInfo.push(
  2320. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2321. )
  2322. }
  2323. //北師大附中(010601)
  2324. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2325. // _teacherDesktopIconInfo.push(
  2326. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2327. // )
  2328. // _studentDesktopIconInfo.push(
  2329. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2330. // )
  2331. // }
  2332. //樂善堂余近卿中學
  2333. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2334. _teacherDesktopIconInfo.push(
  2335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2336. )
  2337. }
  2338. // Education Artificial Intelligence
  2339. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2340. _teacherDesktopIconInfo.push(
  2341. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2342. )
  2343. }
  2344. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2345. _teacherDesktopIconInfo.push(
  2346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2347. )
  2348. }
  2349. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2350. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2351. _teacherDesktopIconInfo.push(
  2352. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2353. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2354. )
  2355. }
  2356. //麒麟二中
  2357. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2358. _studentDesktopIconInfo.push(
  2359. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2360. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2361. )
  2362. }
  2363. //萬科雙語
  2364. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2365. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2366. if (el.Name == '項目管理') {
  2367. el.Name = 'PBL項目'
  2368. }
  2369. return el
  2370. })
  2371. _studentDesktopIconInfo3.push(
  2372. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2373. )
  2374. }
  2375. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2376. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2377. return el.Name != '魔盒識字' && el.Name != '24點'
  2378. })
  2379. }
  2380. 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) {
  2381. _studentDesktopIconInfo.push(
  2382. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2383. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2384. )
  2385. }
  2386. //循環創建桌面圖標
  2387. if (type == 1) {
  2388. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2389. for (i = 0; i < _studentDesktopIconInfo.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. }, [_studentDesktopIconInfo[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖動圖標即打開了桌面應用
  2398. U.MD.D.click(this, obj);
  2399. }, [_studentDesktopIconInfo[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2404. }
  2405. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2406. for (i = 0; i < _hkZJLSStudentDeskIconInfo.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. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖動圖標即打開了桌面應用
  2415. U.MD.D.click(this, obj);
  2416. }, [_hkZJLSStudentDeskIconInfo[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2421. } //
  2422. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2423. for (i = 0; i < _ytyStudentDeskIconInfo.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. }, [_ytyStudentDeskIconInfo[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖動圖標即打開了桌面應用
  2432. U.MD.D.click(this, obj);
  2433. }, [_ytyStudentDeskIconInfo[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2438. } //
  2439. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2440. for (i = 0; i < _jccssylStudentDeskIconInfo.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. }, [_jccssylStudentDeskIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖動圖標即打開了桌面應用
  2449. U.MD.D.click(this, obj);
  2450. }, [_jccssylStudentDeskIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2457. for (i = 0; i < _scnuaiStudentDeskIconInfo.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. }, [_scnuaiStudentDeskIconInfo[i]]),
  2464. "onclick": U.UF.C.closure(function (obj) {
  2465. //防止拖動圖標即打開了桌面應用
  2466. U.MD.D.click(this, obj);
  2467. }, [_scnuaiStudentDeskIconInfo[i]])
  2468. }, _frag); //
  2469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2472. }
  2473. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2474. for (i = 0; i < _caleStudentDeskIconInfo.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. }, [_caleStudentDeskIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖動圖標即打開了桌面應用
  2483. U.MD.D.click(this, obj);
  2484. }, [_caleStudentDeskIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2491. for (i = 0; i < _thuioeStudentDeskIconInfo.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. }, [_thuioeStudentDeskIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖動圖標即打開了桌面應用
  2500. U.MD.D.click(this, obj);
  2501. }, [_thuioeStudentDeskIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2508. for (i = 0; i < _tpcStudentDeskIconInfo.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. }, [_tpcStudentDeskIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖動圖標即打開了桌面應用
  2517. U.MD.D.click(this, obj);
  2518. }, [_tpcStudentDeskIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2523. } //
  2524. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2525. for (i = 0; i < _chjyjStudentDeskIconInfo.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. }, [_chjyjStudentDeskIconInfo[i]]),
  2532. "onclick": U.UF.C.closure(function (obj) {
  2533. //防止拖動圖標即打開了桌面應用
  2534. U.MD.D.click(this, obj);
  2535. }, [_chjyjStudentDeskIconInfo[i]])
  2536. }, _frag); //
  2537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2540. }
  2541. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2542. for (i = 0; i < _szjkyStudentDeskIconInfo.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. }, [_szjkyStudentDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖動圖標即打開了桌面應用
  2551. U.MD.D.click(this, obj);
  2552. }, [_szjkyStudentDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2559. for (i = 0; i < _x020201StudentDeskIconInfo.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. }, [_x020201StudentDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖動圖標即打開了桌面應用
  2568. U.MD.D.click(this, obj);
  2569. }, [_x020201StudentDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2576. for (i = 0; i < _SCNUETStudentDeskIconInfo.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. }, [_SCNUETStudentDeskIconInfo[i]]),
  2583. "onclick": U.UF.C.closure(function (obj) {
  2584. //防止拖動圖標即打開了桌面應用
  2585. U.MD.D.click(this, obj);
  2586. }, [_SCNUETStudentDeskIconInfo[i]])
  2587. }, _frag); //
  2588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2591. }
  2592. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2593. for (i = 0; i < _dseiStudentDeskIconInfo.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. }, [_dseiStudentDeskIconInfo[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖動圖標即打開了桌面應用
  2602. U.MD.D.click(this, obj);
  2603. }, [_dseiStudentDeskIconInfo[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2608. }
  2609. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2610. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.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. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2617. "onclick": U.UF.C.closure(function (obj) {
  2618. //防止拖動圖標即打開了桌面應用
  2619. U.MD.D.click(this, obj);
  2620. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2621. }, _frag); //
  2622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2625. }
  2626. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2627. for (i = 0; i < _nsfxStudentDeskIconInfo.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. }, [_nsfxStudentDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖動圖標即打開了桌面應用
  2636. U.MD.D.click(this, obj);
  2637. }, [_nsfxStudentDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2644. for (i = 0; i < _stiaStudentDeskIconInfo.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. }, [_stiaStudentDeskIconInfo[i]]),
  2651. "onclick": U.UF.C.closure(function (obj) {
  2652. //防止拖動圖標即打開了桌面應用
  2653. U.MD.D.click(this, obj);
  2654. }, [_stiaStudentDeskIconInfo[i]])
  2655. }, _frag); //
  2656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2659. }
  2660. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2661. for (i = 0; i < _szdjgStudentDeskIconInfo.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. }, [_szdjgStudentDeskIconInfo[i]]),
  2668. "onclick": U.UF.C.closure(function (obj) {
  2669. //防止拖動圖標即打開了桌面應用
  2670. U.MD.D.click(this, obj);
  2671. }, [_szdjgStudentDeskIconInfo[i]])
  2672. }, _frag); //
  2673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2676. }
  2677. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2678. for (i = 0; i < _x010607StudentDeskIconInfo.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. }, [_x010607StudentDeskIconInfo[i]]),
  2685. "onclick": U.UF.C.closure(function (obj) {
  2686. //防止拖動圖標即打開了桌面應用
  2687. U.MD.D.click(this, obj);
  2688. }, [_x010607StudentDeskIconInfo[i]])
  2689. }, _frag); //
  2690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2693. }
  2694. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2695. for (i = 0; i < _xhlyStudentDeskIconInfo.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. }, [_xhlyStudentDeskIconInfo[i]]),
  2702. "onclick": U.UF.C.closure(function (obj) {
  2703. //防止拖動圖標即打開了桌面應用
  2704. U.MD.D.click(this, obj);
  2705. }, [_xhlyStudentDeskIconInfo[i]])
  2706. }, _frag); //
  2707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2710. }
  2711. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2712. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.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. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2719. "onclick": U.UF.C.closure(function (obj) {
  2720. //防止拖動圖標即打開了桌面應用
  2721. U.MD.D.click(this, obj);
  2722. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2723. }, _frag); //
  2724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2727. }
  2728. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2729. for (i = 0; i < _x010503StudentDeskIconInfo.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. }, [_x010503StudentDeskIconInfo[i]]),
  2736. "onclick": U.UF.C.closure(function (obj) {
  2737. //防止拖動圖標即打開了桌面應用
  2738. U.MD.D.click(this, obj);
  2739. }, [_x010503StudentDeskIconInfo[i]])
  2740. }, _frag); //
  2741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2744. }
  2745. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2746. for (i = 0; i < _x010504StudentDeskIconInfo.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. }, [_x010504StudentDeskIconInfo[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖動圖標即打開了桌面應用
  2755. U.MD.D.click(this, obj);
  2756. }, [_x010504StudentDeskIconInfo[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2761. }
  2762. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2763. for (i = 0; i < _x010505StudentDeskIconInfo.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. }, [_x010505StudentDeskIconInfo[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖動圖標即打開了桌面應用
  2772. U.MD.D.click(this, obj);
  2773. }, [_x010505StudentDeskIconInfo[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2778. }
  2779. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2780. for (i = 0; i < _x010404StudentDeskIconInfo.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. }, [_x010404StudentDeskIconInfo[i]]),
  2787. "onclick": U.UF.C.closure(function (obj) {
  2788. //防止拖動圖標即打開了桌面應用
  2789. U.MD.D.click(this, obj);
  2790. }, [_x010404StudentDeskIconInfo[i]])
  2791. }, _frag); //
  2792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2795. }
  2796. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2797. for (i = 0; i < _x010204StudentDeskIconInfo.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. }, [_x010204StudentDeskIconInfo[i]]),
  2804. "onclick": U.UF.C.closure(function (obj) {
  2805. //防止拖動圖標即打開了桌面應用
  2806. U.MD.D.click(this, obj);
  2807. }, [_x010204StudentDeskIconInfo[i]])
  2808. }, _frag); //
  2809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2812. }
  2813. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2814. for (i = 0; i < _x320101StudentDeskIconInfo.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. }, [_x320101StudentDeskIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖動圖標即打開了桌面應用
  2823. U.MD.D.click(this, obj);
  2824. }, [_x320101StudentDeskIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2831. for (i = 0; i < _trailStudentDeskIconInfo.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. }, [_trailStudentDeskIconInfo[i]]),
  2838. "onclick": U.UF.C.closure(function (obj) {
  2839. //防止拖動圖標即打開了桌面應用
  2840. U.MD.D.click(this, obj);
  2841. }, [_trailStudentDeskIconInfo[i]])
  2842. }, _frag); //
  2843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2846. }
  2847. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2848. for (i = 0; i < _trialStudentDeskIconInfo.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. }, [_trialStudentDeskIconInfo[i]]),
  2855. "onclick": U.UF.C.closure(function (obj) {
  2856. //防止拖動圖標即打開了桌面應用
  2857. U.MD.D.click(this, obj);
  2858. }, [_trialStudentDeskIconInfo[i]])
  2859. }, _frag); //
  2860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2863. }
  2864. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2865. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.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. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖動圖標即打開了桌面應用
  2874. U.MD.D.click(this, obj);
  2875. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2882. for (i = 0; i < _szsyStudentDeskIconInfo.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. }, [_szsyStudentDeskIconInfo[i]]),
  2889. "onclick": U.UF.C.closure(function (obj) {
  2890. //防止拖動圖標即打開了桌面應用
  2891. U.MD.D.click(this, obj);
  2892. }, [_szsyStudentDeskIconInfo[i]])
  2893. }, _frag); //
  2894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2897. }
  2898. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2899. for (i = 0; i < _demoCocoStudentDeskIconInfo.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. }, [_demoCocoStudentDeskIconInfo[i]]),
  2906. "onclick": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_demoCocoStudentDeskIconInfo[i]])
  2910. }, _frag); //
  2911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2914. }
  2915. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2916. for (i = 0; i < _x010608StudentDeskIconInfo.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. }, [_x010608StudentDeskIconInfo[i]]),
  2923. "onclick": U.UF.C.closure(function (obj) {
  2924. //防止拖動圖標即打開了桌面應用
  2925. U.MD.D.click(this, obj);
  2926. }, [_x010608StudentDeskIconInfo[i]])
  2927. }, _frag); //
  2928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2931. }
  2932. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2933. for (i = 0; i < _x010611StudentDeskIconInfo.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. }, [_x010611StudentDeskIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖動圖標即打開了桌面應用
  2942. U.MD.D.click(this, obj);
  2943. }, [_x010611StudentDeskIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2950. for (i = 0; i < _x010612StudentDeskIconInfo.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. }, [_x010612StudentDeskIconInfo[i]]),
  2957. "onclick": U.UF.C.closure(function (obj) {
  2958. //防止拖動圖標即打開了桌面應用
  2959. U.MD.D.click(this, obj);
  2960. }, [_x010612StudentDeskIconInfo[i]])
  2961. }, _frag); //
  2962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2965. }
  2966. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2967. for (i = 0; i < _tianyuantudentDeskIconInfo.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. }, [_tianyuantudentDeskIconInfo[i]]),
  2974. "onclick": U.UF.C.closure(function (obj) {
  2975. //防止拖動圖標即打開了桌面應用
  2976. U.MD.D.click(this, obj);
  2977. }, [_tianyuantudentDeskIconInfo[i]])
  2978. }, _frag); //
  2979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2982. }
  2983. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2984. for (i = 0; i < _siesStudentDeskIconInfo.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. }, [_siesStudentDeskIconInfo[i]]),
  2991. "onclick": U.UF.C.closure(function (obj) {
  2992. //防止拖動圖標即打開了桌面應用
  2993. U.MD.D.click(this, obj);
  2994. }, [_siesStudentDeskIconInfo[i]])
  2995. }, _frag); //
  2996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2999. }
  3000. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3001. for (i = 0; i < _guzmsStudentDeskIconInfo.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. }, [_guzmsStudentDeskIconInfo[i]]),
  3008. "onclick": U.UF.C.closure(function (obj) {
  3009. //防止拖動圖標即打開了桌面應用
  3010. U.MD.D.click(this, obj);
  3011. }, [_guzmsStudentDeskIconInfo[i]])
  3012. }, _frag); //
  3013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3016. }
  3017. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3018. for (i = 0; i < _hkStudentDeskIconInfo.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. }, [_hkStudentDeskIconInfo[i]]),
  3025. "onclick": U.UF.C.closure(function (obj) {
  3026. //防止拖動圖標即打開了桌面應用
  3027. U.MD.D.click(this, obj);
  3028. }, [_hkStudentDeskIconInfo[i]])
  3029. }, _frag); //
  3030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3033. }
  3034. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3035. for (i = 0; i < _tycyStudentDeskIconInfo.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. }, [_tycyStudentDeskIconInfo[i]]),
  3042. "onclick": U.UF.C.closure(function (obj) {
  3043. //防止拖動圖標即打開了桌面應用
  3044. U.MD.D.click(this, obj);
  3045. }, [_tycyStudentDeskIconInfo[i]])
  3046. }, _frag); //
  3047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3050. }
  3051. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3052. for (i = 0; i < _ckcpsStudentDeskIconInfo.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. }, [_ckcpsStudentDeskIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_ckcpsStudentDeskIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3069. for (i = 0; i < _hkaceStudentDeskIconInfo.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. }, [_hkaceStudentDeskIconInfo[i]]),
  3076. "onclick": U.UF.C.closure(function (obj) {
  3077. //防止拖動圖標即打開了桌面應用
  3078. U.MD.D.click(this, obj);
  3079. }, [_hkaceStudentDeskIconInfo[i]])
  3080. }, _frag); //
  3081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3084. }
  3085. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3086. for (i = 0; i < _BSDNSstudentDesktopIconInfo.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. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3093. "onclick": U.UF.C.closure(function (obj) {
  3094. //防止拖動圖標即打開了桌面應用
  3095. U.MD.D.click(this, obj);
  3096. }, [_BSDNSstudentDesktopIconInfo[i]])
  3097. }, _frag); //
  3098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3101. }
  3102. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3103. for (i = 0; i < _cocobizStudentDeskIconInfo.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. }, [_cocobizStudentDeskIconInfo[i]]),
  3110. "onclick": U.UF.C.closure(function (obj) {
  3111. //防止拖動圖標即打開了桌面應用
  3112. U.MD.D.click(this, obj);
  3113. }, [_cocobizStudentDeskIconInfo[i]])
  3114. }, _frag); //
  3115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3118. }
  3119. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3120. for (i = 0; i < _xxzjkyStudentDeskIconInfo.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. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3127. "onclick": U.UF.C.closure(function (obj) {
  3128. //防止拖動圖標即打開了桌面應用
  3129. U.MD.D.click(this, obj);
  3130. }, [_xxzjkyStudentDeskIconInfo[i]])
  3131. }, _frag); //
  3132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3135. }
  3136. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3137. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3138. _content = $$("div", {
  3139. className: "U_MD_D_KO",
  3140. "onmousedown": U.UF.C.closure(function (obj) {
  3141. //防止拖動圖標即打開了桌面應用
  3142. U.MD.D.click(this, obj);
  3143. }, [_studentDesktopIconInfo[i]]),
  3144. "onclick": U.UF.C.closure(function (obj) {
  3145. //防止拖動圖標即打開了桌面應用
  3146. U.MD.D.click(this, obj);
  3147. }, [_studentDesktopIconInfo[i]])
  3148. }, _frag); //
  3149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3152. }
  3153. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3154. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3155. _content = $$("div", {
  3156. className: "U_MD_D_KO",
  3157. "onmousedown": U.UF.C.closure(function (obj) {
  3158. //防止拖動圖標即打開了桌面應用
  3159. U.MD.D.click(this, obj);
  3160. }, [_tcStudentDeskIconInfo[i]]),
  3161. "onclick": U.UF.C.closure(function (obj) {
  3162. //防止拖動圖標即打開了桌面應用
  3163. U.MD.D.click(this, obj);
  3164. }, [_tcStudentDeskIconInfo[i]])
  3165. }, _frag); //
  3166. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3169. }
  3170. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3171. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖動圖標即打開了桌面應用
  3176. U.MD.D.click(this, obj);
  3177. }, [_szscStudentDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖動圖標即打開了桌面應用
  3180. U.MD.D.click(this, obj);
  3181. }, [_szscStudentDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3188. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖動圖標即打開了桌面應用
  3193. U.MD.D.click(this, obj);
  3194. }, [_studentDesktopIconInfo3[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖動圖標即打開了桌面應用
  3197. U.MD.D.click(this, obj);
  3198. }, [_studentDesktopIconInfo3[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3203. }
  3204. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3205. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3206. _content = $$("div", {
  3207. className: "U_MD_D_KO",
  3208. "onmousedown": U.UF.C.closure(function (obj) {
  3209. //防止拖動圖標即打開了桌面應用
  3210. U.MD.D.click(this, obj);
  3211. }, [_studentDesktopIconInfo2[i]]),
  3212. "onclick": U.UF.C.closure(function (obj) {
  3213. //防止拖動圖標即打開了桌面應用
  3214. U.MD.D.click(this, obj);
  3215. }, [_studentDesktopIconInfo2[i]])
  3216. }, _frag); //
  3217. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3218. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3219. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3220. }
  3221. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3222. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3223. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3224. continue
  3225. }
  3226. _content = $$("div", {
  3227. className: "U_MD_D_KO",
  3228. "onmousedown": U.UF.C.closure(function (obj) {
  3229. //防止拖動圖標即打開了桌面應用
  3230. U.MD.D.click(this, obj);
  3231. }, [_wanketeacherDesktopIconInfo[i]]),
  3232. "onclick": U.UF.C.closure(function (obj) {
  3233. //防止拖動圖標即打開了桌面應用
  3234. U.MD.D.click(this, obj);
  3235. }, [_wanketeacherDesktopIconInfo[i]])
  3236. }, _frag); //
  3237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3240. }
  3241. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3242. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3243. _content = $$("div", {
  3244. className: "U_MD_D_KO",
  3245. "onmousedown": U.UF.C.closure(function (obj) {
  3246. //防止拖動圖標即打開了桌面應用
  3247. U.MD.D.click(this, obj);
  3248. }, [_wankeAdminDesktopIconInfo[i]]),
  3249. "onclick": U.UF.C.closure(function (obj) {
  3250. //防止拖動圖標即打開了桌面應用
  3251. U.MD.D.click(this, obj);
  3252. }, [_wankeAdminDesktopIconInfo[i]])
  3253. }, _frag); //
  3254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3257. }
  3258. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3259. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3260. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3261. continue
  3262. }
  3263. _content = $$("div", {
  3264. className: "U_MD_D_KO",
  3265. "onmousedown": U.UF.C.closure(function (obj) {
  3266. //防止拖動圖標即打開了桌面應用
  3267. U.MD.D.click(this, obj);
  3268. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3269. "onclick": U.UF.C.closure(function (obj) {
  3270. //防止拖動圖標即打開了桌面應用
  3271. U.MD.D.click(this, obj);
  3272. }, [_scnuaiTeacherDeskIconInfo[i]])
  3273. }, _frag); //
  3274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3277. }
  3278. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3279. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3280. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3281. continue
  3282. }
  3283. _content = $$("div", {
  3284. className: "U_MD_D_KO",
  3285. "onmousedown": U.UF.C.closure(function (obj) {
  3286. //防止拖動圖標即打開了桌面應用
  3287. U.MD.D.click(this, obj);
  3288. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3289. "onclick": U.UF.C.closure(function (obj) {
  3290. //防止拖動圖標即打開了桌面應用
  3291. U.MD.D.click(this, obj);
  3292. }, [_BSDNSteacherDesktopIconInfo[i]])
  3293. }, _frag); //
  3294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3297. }
  3298. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3299. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3300. _content = $$("div", {
  3301. className: "U_MD_D_KO",
  3302. "onmousedown": U.UF.C.closure(function (obj) {
  3303. //防止拖動圖標即打開了桌面應用
  3304. U.MD.D.click(this, obj);
  3305. }, [_scnuaiAdminDeskIconInfo[i]]),
  3306. "onclick": U.UF.C.closure(function (obj) {
  3307. //防止拖動圖標即打開了桌面應用
  3308. U.MD.D.click(this, obj);
  3309. }, [_scnuaiAdminDeskIconInfo[i]])
  3310. }, _frag); //
  3311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3314. }
  3315. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3316. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3317. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3318. continue
  3319. }
  3320. _content = $$("div", {
  3321. className: "U_MD_D_KO",
  3322. "onmousedown": U.UF.C.closure(function (obj) {
  3323. //防止拖動圖標即打開了桌面應用
  3324. U.MD.D.click(this, obj);
  3325. }, [_jccssylTeacherDeskIconInfo[i]]),
  3326. "onclick": U.UF.C.closure(function (obj) {
  3327. //防止拖動圖標即打開了桌面應用
  3328. U.MD.D.click(this, obj);
  3329. }, [_jccssylTeacherDeskIconInfo[i]])
  3330. }, _frag); //
  3331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3334. }
  3335. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3336. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3337. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3338. continue
  3339. }
  3340. _content = $$("div", {
  3341. className: "U_MD_D_KO",
  3342. "onmousedown": U.UF.C.closure(function (obj) {
  3343. //防止拖動圖標即打開了桌面應用
  3344. U.MD.D.click(this, obj);
  3345. }, [_caleTeacherDeskIconInfo[i]]),
  3346. "onclick": U.UF.C.closure(function (obj) {
  3347. //防止拖動圖標即打開了桌面應用
  3348. U.MD.D.click(this, obj);
  3349. }, [_caleTeacherDeskIconInfo[i]])
  3350. }, _frag); //
  3351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3354. }
  3355. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3356. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3357. _content = $$("div", {
  3358. className: "U_MD_D_KO",
  3359. "onmousedown": U.UF.C.closure(function (obj) {
  3360. //防止拖動圖標即打開了桌面應用
  3361. U.MD.D.click(this, obj);
  3362. }, [_tpcOrganizerDeskIconInfo[i]]),
  3363. "onclick": U.UF.C.closure(function (obj) {
  3364. //防止拖動圖標即打開了桌面應用
  3365. U.MD.D.click(this, obj);
  3366. }, [_tpcOrganizerDeskIconInfo[i]])
  3367. }, _frag); //
  3368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3371. }
  3372. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3373. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3374. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3375. continue
  3376. }
  3377. _content = $$("div", {
  3378. className: "U_MD_D_KO",
  3379. "onmousedown": U.UF.C.closure(function (obj) {
  3380. //防止拖動圖標即打開了桌面應用
  3381. U.MD.D.click(this, obj);
  3382. }, [_tpcTeacherDeskIconInfo[i]]),
  3383. "onclick": U.UF.C.closure(function (obj) {
  3384. //防止拖動圖標即打開了桌面應用
  3385. U.MD.D.click(this, obj);
  3386. }, [_tpcTeacherDeskIconInfo[i]])
  3387. }, _frag); //
  3388. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3389. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3390. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3391. }
  3392. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3393. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3394. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3395. continue
  3396. }
  3397. _content = $$("div", {
  3398. className: "U_MD_D_KO",
  3399. "onmousedown": U.UF.C.closure(function (obj) {
  3400. //防止拖動圖標即打開了桌面應用
  3401. U.MD.D.click(this, obj);
  3402. }, [_teacherDesktopIconInfo2[i]]),
  3403. "onclick": U.UF.C.closure(function (obj) {
  3404. //防止拖動圖標即打開了桌面應用
  3405. U.MD.D.click(this, obj);
  3406. }, [_teacherDesktopIconInfo2[i]])
  3407. }, _frag); //
  3408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3411. }
  3412. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3413. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3414. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3415. continue
  3416. }
  3417. _content = $$("div", {
  3418. className: "U_MD_D_KO",
  3419. "onmousedown": U.UF.C.closure(function (obj) {
  3420. //防止拖動圖標即打開了桌面應用
  3421. U.MD.D.click(this, obj);
  3422. }, [_thuioeTeacherDeskIconInfo[i]]),
  3423. "onclick": U.UF.C.closure(function (obj) {
  3424. //防止拖動圖標即打開了桌面應用
  3425. U.MD.D.click(this, obj);
  3426. }, [_thuioeTeacherDeskIconInfo[i]])
  3427. }, _frag); //
  3428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3431. }
  3432. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3433. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3434. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3435. continue
  3436. }
  3437. _content = $$("div", {
  3438. className: "U_MD_D_KO",
  3439. "onmousedown": U.UF.C.closure(function (obj) {
  3440. //防止拖動圖標即打開了桌面應用
  3441. U.MD.D.click(this, obj);
  3442. }, [_lotechTeacherDeskIconInfo[i]]),
  3443. "onclick": U.UF.C.closure(function (obj) {
  3444. //防止拖動圖標即打開了桌面應用
  3445. U.MD.D.click(this, obj);
  3446. }, [_lotechTeacherDeskIconInfo[i]])
  3447. }, _frag); //
  3448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3451. }//
  3452. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3453. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3454. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3455. continue
  3456. }
  3457. _content = $$("div", {
  3458. className: "U_MD_D_KO",
  3459. "onmousedown": U.UF.C.closure(function (obj) {
  3460. //防止拖動圖標即打開了桌面應用
  3461. U.MD.D.click(this, obj);
  3462. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3463. "onclick": U.UF.C.closure(function (obj) {
  3464. //防止拖動圖標即打開了桌面應用
  3465. U.MD.D.click(this, obj);
  3466. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3467. }, _frag); //
  3468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3471. }
  3472. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3473. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3474. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3475. continue
  3476. }
  3477. _content = $$("div", {
  3478. className: "U_MD_D_KO",
  3479. "onmousedown": U.UF.C.closure(function (obj) {
  3480. //防止拖動圖標即打開了桌面應用
  3481. U.MD.D.click(this, obj);
  3482. }, [_siesTeacherDeskIconInfo[i]]),
  3483. "onclick": U.UF.C.closure(function (obj) {
  3484. //防止拖動圖標即打開了桌面應用
  3485. U.MD.D.click(this, obj);
  3486. }, [_siesTeacherDeskIconInfo[i]])
  3487. }, _frag); //
  3488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3491. }
  3492. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3493. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3494. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3495. continue
  3496. }
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖動圖標即打開了桌面應用
  3501. U.MD.D.click(this, obj);
  3502. }, [_guzmsTeacherDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖動圖標即打開了桌面應用
  3505. U.MD.D.click(this, obj);
  3506. }, [_guzmsTeacherDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3511. }
  3512. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3513. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3514. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3515. continue
  3516. }
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖動圖標即打開了桌面應用
  3521. U.MD.D.click(this, obj);
  3522. }, [_longhuaTeacherDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖動圖標即打開了桌面應用
  3525. U.MD.D.click(this, obj);
  3526. }, [_longhuaTeacherDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3531. }
  3532. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3533. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3534. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3535. continue
  3536. }
  3537. _content = $$("div", {
  3538. className: "U_MD_D_KO",
  3539. "onmousedown": U.UF.C.closure(function (obj) {
  3540. //防止拖動圖標即打開了桌面應用
  3541. U.MD.D.click(this, obj);
  3542. }, [_ytyTeacherDeskIconInfo[i]]),
  3543. "onclick": U.UF.C.closure(function (obj) {
  3544. //防止拖動圖標即打開了桌面應用
  3545. U.MD.D.click(this, obj);
  3546. }, [_ytyTeacherDeskIconInfo[i]])
  3547. }, _frag); //
  3548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3551. }
  3552. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3553. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3554. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3555. continue
  3556. }
  3557. _content = $$("div", {
  3558. className: "U_MD_D_KO",
  3559. "onmousedown": U.UF.C.closure(function (obj) {
  3560. //防止拖動圖標即打開了桌面應用
  3561. U.MD.D.click(this, obj);
  3562. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3563. "onclick": U.UF.C.closure(function (obj) {
  3564. //防止拖動圖標即打開了桌面應用
  3565. U.MD.D.click(this, obj);
  3566. }, [_yunhaiTeacherDeskIconInfo[i]])
  3567. }, _frag); //
  3568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3571. } //_hkStudentDeskIconInfo
  3572. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3573. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3574. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3575. continue
  3576. }
  3577. _content = $$("div", {
  3578. className: "U_MD_D_KO",
  3579. "onmousedown": U.UF.C.closure(function (obj) {
  3580. //防止拖動圖標即打開了桌面應用
  3581. U.MD.D.click(this, obj);
  3582. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3583. "onclick": U.UF.C.closure(function (obj) {
  3584. //防止拖動圖標即打開了桌面應用
  3585. U.MD.D.click(this, obj);
  3586. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3587. }, _frag); //
  3588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3591. }
  3592. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3593. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3594. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3595. continue
  3596. }
  3597. _content = $$("div", {
  3598. className: "U_MD_D_KO",
  3599. "onmousedown": U.UF.C.closure(function (obj) {
  3600. //防止拖動圖標即打開了桌面應用
  3601. U.MD.D.click(this, obj);
  3602. }, [_ricohTeacherDeskIconInfo[i]]),
  3603. "onclick": U.UF.C.closure(function (obj) {
  3604. //防止拖動圖標即打開了桌面應用
  3605. U.MD.D.click(this, obj);
  3606. }, [_ricohTeacherDeskIconInfo[i]])
  3607. }, _frag); //
  3608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3611. }
  3612. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3613. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3614. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3615. continue
  3616. }
  3617. _content = $$("div", {
  3618. className: "U_MD_D_KO",
  3619. "onmousedown": U.UF.C.closure(function (obj) {
  3620. //防止拖動圖標即打開了桌面應用
  3621. U.MD.D.click(this, obj);
  3622. }, [_hkTeacherDeskIconInfo[i]]),
  3623. "onclick": U.UF.C.closure(function (obj) {
  3624. //防止拖動圖標即打開了桌面應用
  3625. U.MD.D.click(this, obj);
  3626. }, [_hkTeacherDeskIconInfo[i]])
  3627. }, _frag); //
  3628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3631. }
  3632. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3633. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3634. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3635. continue
  3636. }
  3637. _content = $$("div", {
  3638. className: "U_MD_D_KO",
  3639. "onmousedown": U.UF.C.closure(function (obj) {
  3640. //防止拖動圖標即打開了桌面應用
  3641. U.MD.D.click(this, obj);
  3642. }, [_tycyTeacherDeskIconInfo[i]]),
  3643. "onclick": U.UF.C.closure(function (obj) {
  3644. //防止拖動圖標即打開了桌面應用
  3645. U.MD.D.click(this, obj);
  3646. }, [_tycyTeacherDeskIconInfo[i]])
  3647. }, _frag); //
  3648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3651. }
  3652. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3653. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3654. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3655. continue
  3656. }
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_ckcpsTeacherDeskIconInfo[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3671. }
  3672. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3673. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3674. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3675. continue
  3676. }
  3677. _content = $$("div", {
  3678. className: "U_MD_D_KO",
  3679. "onmousedown": U.UF.C.closure(function (obj) {
  3680. //防止拖動圖標即打開了桌面應用
  3681. U.MD.D.click(this, obj);
  3682. }, [_hkaceTeacherDeskIconInfo[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖動圖標即打開了桌面應用
  3685. U.MD.D.click(this, obj);
  3686. }, [_hkaceTeacherDeskIconInfo[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3691. }
  3692. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3693. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3694. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3695. continue
  3696. }
  3697. _content = $$("div", {
  3698. className: "U_MD_D_KO",
  3699. "onmousedown": U.UF.C.closure(function (obj) {
  3700. //防止拖動圖標即打開了桌面應用
  3701. U.MD.D.click(this, obj);
  3702. }, [_cocobizTeacherDeskIconInfo[i]]),
  3703. "onclick": U.UF.C.closure(function (obj) {
  3704. //防止拖動圖標即打開了桌面應用
  3705. U.MD.D.click(this, obj);
  3706. }, [_cocobizTeacherDeskIconInfo[i]])
  3707. }, _frag); //
  3708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3711. }
  3712. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3713. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3714. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3715. continue
  3716. }
  3717. _content = $$("div", {
  3718. className: "U_MD_D_KO",
  3719. "onmousedown": U.UF.C.closure(function (obj) {
  3720. //防止拖動圖標即打開了桌面應用
  3721. U.MD.D.click(this, obj);
  3722. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3723. "onclick": U.UF.C.closure(function (obj) {
  3724. //防止拖動圖標即打開了桌面應用
  3725. U.MD.D.click(this, obj);
  3726. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3727. }, _frag); //
  3728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3731. }
  3732. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3733. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3734. _content = $$("div", {
  3735. className: "U_MD_D_KO",
  3736. "onmousedown": U.UF.C.closure(function (obj) {
  3737. //防止拖動圖標即打開了桌面應用
  3738. U.MD.D.click(this, obj);
  3739. }, [_gdjgAdminDeskIconInfo[i]]),
  3740. "onclick": U.UF.C.closure(function (obj) {
  3741. //防止拖動圖標即打開了桌面應用
  3742. U.MD.D.click(this, obj);
  3743. }, [_gdjgAdminDeskIconInfo[i]])
  3744. }, _frag); //
  3745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3748. }
  3749. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3750. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3751. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3752. continue
  3753. }
  3754. _content = $$("div", {
  3755. className: "U_MD_D_KO",
  3756. "onmousedown": U.UF.C.closure(function (obj) {
  3757. //防止拖動圖標即打開了桌面應用
  3758. U.MD.D.click(this, obj);
  3759. }, [_gdjgTeacherDeskIconInfo[i]]),
  3760. "onclick": U.UF.C.closure(function (obj) {
  3761. //防止拖動圖標即打開了桌面應用
  3762. U.MD.D.click(this, obj);
  3763. }, [_gdjgTeacherDeskIconInfo[i]])
  3764. }, _frag); //
  3765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3768. }
  3769. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3770. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3771. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3772. continue
  3773. }
  3774. _content = $$("div", {
  3775. className: "U_MD_D_KO",
  3776. "onmousedown": U.UF.C.closure(function (obj) {
  3777. //防止拖動圖標即打開了桌面應用
  3778. U.MD.D.click(this, obj);
  3779. }, [_szherTeacherDeskIconInfo[i]]),
  3780. "onclick": U.UF.C.closure(function (obj) {
  3781. //防止拖動圖標即打開了桌面應用
  3782. U.MD.D.click(this, obj);
  3783. }, [_szherTeacherDeskIconInfo[i]])
  3784. }, _frag); //
  3785. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3786. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3787. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3788. }
  3789. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3790. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖動圖標即打開了桌面應用
  3795. U.MD.D.click(this, obj);
  3796. }, [_heyuannAdminDeskIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖動圖標即打開了桌面應用
  3799. U.MD.D.click(this, obj);
  3800. }, [_heyuannAdminDeskIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3807. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3808. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3809. continue
  3810. }
  3811. _content = $$("div", {
  3812. className: "U_MD_D_KO",
  3813. "onmousedown": U.UF.C.closure(function (obj) {
  3814. //防止拖動圖標即打開了桌面應用
  3815. U.MD.D.click(this, obj);
  3816. }, [_heyuanTeacherDeskIconInfo[i]]),
  3817. "onclick": U.UF.C.closure(function (obj) {
  3818. //防止拖動圖標即打開了桌面應用
  3819. U.MD.D.click(this, obj);
  3820. }, [_heyuanTeacherDeskIconInfo[i]])
  3821. }, _frag); //
  3822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3825. } //
  3826. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3827. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3828. _content = $$("div", {
  3829. className: "U_MD_D_KO",
  3830. "onmousedown": U.UF.C.closure(function (obj) {
  3831. //防止拖動圖標即打開了桌面應用
  3832. U.MD.D.click(this, obj);
  3833. }, [_dseiAdminDeskIconInfo[i]]),
  3834. "onclick": U.UF.C.closure(function (obj) {
  3835. //防止拖動圖標即打開了桌面應用
  3836. U.MD.D.click(this, obj);
  3837. }, [_dseiAdminDeskIconInfo[i]])
  3838. }, _frag); //
  3839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3842. }
  3843. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3844. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3845. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3846. continue
  3847. }
  3848. _content = $$("div", {
  3849. className: "U_MD_D_KO",
  3850. "onmousedown": U.UF.C.closure(function (obj) {
  3851. //防止拖動圖標即打開了桌面應用
  3852. U.MD.D.click(this, obj);
  3853. }, [_dseiTeacherDeskIconInfo[i]]),
  3854. "onclick": U.UF.C.closure(function (obj) {
  3855. //防止拖動圖標即打開了桌面應用
  3856. U.MD.D.click(this, obj);
  3857. }, [_dseiTeacherDeskIconInfo[i]])
  3858. }, _frag); //
  3859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3862. } //
  3863. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3864. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3865. _content = $$("div", {
  3866. className: "U_MD_D_KO",
  3867. "onmousedown": U.UF.C.closure(function (obj) {
  3868. //防止拖動圖標即打開了桌面應用
  3869. U.MD.D.click(this, obj);
  3870. }, [_chjyjAdminDeskIconInfo[i]]),
  3871. "onclick": U.UF.C.closure(function (obj) {
  3872. //防止拖動圖標即打開了桌面應用
  3873. U.MD.D.click(this, obj);
  3874. }, [_chjyjAdminDeskIconInfo[i]])
  3875. }, _frag); //
  3876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3879. }//
  3880. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3881. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3882. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3883. continue
  3884. }
  3885. _content = $$("div", {
  3886. className: "U_MD_D_KO",
  3887. "onmousedown": U.UF.C.closure(function (obj) {
  3888. //防止拖動圖標即打開了桌面應用
  3889. U.MD.D.click(this, obj);
  3890. }, [_chjyjTeacherDeskIconInfo[i]]),
  3891. "onclick": U.UF.C.closure(function (obj) {
  3892. //防止拖動圖標即打開了桌面應用
  3893. U.MD.D.click(this, obj);
  3894. }, [_chjyjTeacherDeskIconInfo[i]])
  3895. }, _frag); //
  3896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3899. }
  3900. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3901. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖動圖標即打開了桌面應用
  3906. U.MD.D.click(this, obj);
  3907. }, [_szjkyAdminDeskIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖動圖標即打開了桌面應用
  3910. U.MD.D.click(this, obj);
  3911. }, [_szjkyAdminDeskIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3916. }//
  3917. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3918. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3919. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖動圖標即打開了桌面應用
  3926. U.MD.D.click(this, obj);
  3927. }, [_szjkyTeacherDeskIconInfo[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖動圖標即打開了桌面應用
  3930. U.MD.D.click(this, obj);
  3931. }, [_szjkyTeacherDeskIconInfo[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3938. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3939. _content = $$("div", {
  3940. className: "U_MD_D_KO",
  3941. "onmousedown": U.UF.C.closure(function (obj) {
  3942. //防止拖動圖標即打開了桌面應用
  3943. U.MD.D.click(this, obj);
  3944. }, [_x020201AdminDeskIconInfo[i]]),
  3945. "onclick": U.UF.C.closure(function (obj) {
  3946. //防止拖動圖標即打開了桌面應用
  3947. U.MD.D.click(this, obj);
  3948. }, [_x020201AdminDeskIconInfo[i]])
  3949. }, _frag); //
  3950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3953. }//
  3954. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3955. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3956. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3957. continue
  3958. }
  3959. _content = $$("div", {
  3960. className: "U_MD_D_KO",
  3961. "onmousedown": U.UF.C.closure(function (obj) {
  3962. //防止拖動圖標即打開了桌面應用
  3963. U.MD.D.click(this, obj);
  3964. }, [_x020201TeacherDeskIconInfo[i]]),
  3965. "onclick": U.UF.C.closure(function (obj) {
  3966. //防止拖動圖標即打開了桌面應用
  3967. U.MD.D.click(this, obj);
  3968. }, [_x020201TeacherDeskIconInfo[i]])
  3969. }, _frag); //
  3970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3973. }
  3974. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3975. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3976. _content = $$("div", {
  3977. className: "U_MD_D_KO",
  3978. "onmousedown": U.UF.C.closure(function (obj) {
  3979. //防止拖動圖標即打開了桌面應用
  3980. U.MD.D.click(this, obj);
  3981. }, [_SCNUETAdminDeskIconInfo[i]]),
  3982. "onclick": U.UF.C.closure(function (obj) {
  3983. //防止拖動圖標即打開了桌面應用
  3984. U.MD.D.click(this, obj);
  3985. }, [_SCNUETAdminDeskIconInfo[i]])
  3986. }, _frag); //
  3987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3990. }//
  3991. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3992. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3993. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3994. continue
  3995. }
  3996. _content = $$("div", {
  3997. className: "U_MD_D_KO",
  3998. "onmousedown": U.UF.C.closure(function (obj) {
  3999. //防止拖動圖標即打開了桌面應用
  4000. U.MD.D.click(this, obj);
  4001. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4002. "onclick": U.UF.C.closure(function (obj) {
  4003. //防止拖動圖標即打開了桌面應用
  4004. U.MD.D.click(this, obj);
  4005. }, [_SCNUETTeacherDeskIconInfo[i]])
  4006. }, _frag); //
  4007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4010. }
  4011. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4012. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4013. _content = $$("div", {
  4014. className: "U_MD_D_KO",
  4015. "onmousedown": U.UF.C.closure(function (obj) {
  4016. //防止拖動圖標即打開了桌面應用
  4017. U.MD.D.click(this, obj);
  4018. }, [_futianAdminDeskIconInfo[i]]),
  4019. "onclick": U.UF.C.closure(function (obj) {
  4020. //防止拖動圖標即打開了桌面應用
  4021. U.MD.D.click(this, obj);
  4022. }, [_futianAdminDeskIconInfo[i]])
  4023. }, _frag); //
  4024. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4025. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4026. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4027. }
  4028. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4029. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4030. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4031. continue
  4032. }
  4033. _content = $$("div", {
  4034. className: "U_MD_D_KO",
  4035. "onmousedown": U.UF.C.closure(function (obj) {
  4036. //防止拖動圖標即打開了桌面應用
  4037. U.MD.D.click(this, obj);
  4038. }, [_futianTeacherDeskIconInfo[i]]),
  4039. "onclick": U.UF.C.closure(function (obj) {
  4040. //防止拖動圖標即打開了桌面應用
  4041. U.MD.D.click(this, obj);
  4042. }, [_futianTeacherDeskIconInfo[i]])
  4043. }, _frag); //
  4044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4047. }
  4048. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4049. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4050. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4051. continue
  4052. }
  4053. _content = $$("div", {
  4054. className: "U_MD_D_KO",
  4055. "onmousedown": U.UF.C.closure(function (obj) {
  4056. //防止拖動圖標即打開了桌面應用
  4057. U.MD.D.click(this, obj);
  4058. }, [_MingdeTeacherDeskIcon[i]]),
  4059. "onclick": U.UF.C.closure(function (obj) {
  4060. //防止拖動圖標即打開了桌面應用
  4061. U.MD.D.click(this, obj);
  4062. }, [_MingdeTeacherDeskIcon[i]])
  4063. }, _frag); //
  4064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4067. }
  4068. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4069. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4070. _content = $$("div", {
  4071. className: "U_MD_D_KO",
  4072. "onmousedown": U.UF.C.closure(function (obj) {
  4073. //防止拖動圖標即打開了桌面應用
  4074. U.MD.D.click(this, obj);
  4075. }, [_lhsAdminDesktopIconInfo[i]]),
  4076. "onclick": U.UF.C.closure(function (obj) {
  4077. //防止拖動圖標即打開了桌面應用
  4078. U.MD.D.click(this, obj);
  4079. }, [_lhsAdminDesktopIconInfo[i]])
  4080. }, _frag); //
  4081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4084. }
  4085. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4086. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4087. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4088. continue
  4089. }
  4090. _content = $$("div", {
  4091. className: "U_MD_D_KO",
  4092. "onmousedown": U.UF.C.closure(function (obj) {
  4093. //防止拖動圖標即打開了桌面應用
  4094. U.MD.D.click(this, obj);
  4095. }, [_lhsteacherDesktopIconInfo[i]]),
  4096. "onclick": U.UF.C.closure(function (obj) {
  4097. //防止拖動圖標即打開了桌面應用
  4098. U.MD.D.click(this, obj);
  4099. }, [_lhsteacherDesktopIconInfo[i]])
  4100. }, _frag); //
  4101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4104. }
  4105. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4106. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4107. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4108. continue
  4109. }
  4110. _content = $$("div", {
  4111. className: "U_MD_D_KO",
  4112. "onmousedown": U.UF.C.closure(function (obj) {
  4113. //防止拖動圖標即打開了桌面應用
  4114. U.MD.D.click(this, obj);
  4115. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4116. "onclick": U.UF.C.closure(function (obj) {
  4117. //防止拖動圖標即打開了桌面應用
  4118. U.MD.D.click(this, obj);
  4119. }, [_zhoujiateacherDesktopIconInfo[i]])
  4120. }, _frag); //
  4121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4124. }
  4125. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4126. for (i = 0; i < _hanDeskIcon.length; i++) {
  4127. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4128. continue
  4129. }
  4130. _content = $$("div", {
  4131. className: "U_MD_D_KO",
  4132. "onmousedown": U.UF.C.closure(function (obj) {
  4133. //防止拖動圖標即打開了桌面應用
  4134. U.MD.D.click(this, obj);
  4135. }, [_hanDeskIcon[i]]),
  4136. "onclick": U.UF.C.closure(function (obj) {
  4137. //防止拖動圖標即打開了桌面應用
  4138. U.MD.D.click(this, obj);
  4139. }, [_hanDeskIcon[i]])
  4140. }, _frag); //
  4141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4144. }
  4145. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4146. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4147. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4148. continue
  4149. }
  4150. _content = $$("div", {
  4151. className: "U_MD_D_KO",
  4152. "onmousedown": U.UF.C.closure(function (obj) {
  4153. //防止拖動圖標即打開了桌面應用
  4154. U.MD.D.click(this, obj);
  4155. }, [_orgStemDeskIcon[i]]),
  4156. "onclick": U.UF.C.closure(function (obj) {
  4157. //防止拖動圖標即打開了桌面應用
  4158. U.MD.D.click(this, obj);
  4159. }, [_orgStemDeskIcon[i]])
  4160. }, _frag); //
  4161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4164. }
  4165. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4166. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4167. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4168. continue
  4169. }
  4170. _content = $$("div", {
  4171. className: "U_MD_D_KO",
  4172. "onmousedown": U.UF.C.closure(function (obj) {
  4173. //防止拖動圖標即打開了桌面應用
  4174. U.MD.D.click(this, obj);
  4175. }, [_szulsDeskIcon[i]]),
  4176. "onclick": U.UF.C.closure(function (obj) {
  4177. //防止拖動圖標即打開了桌面應用
  4178. U.MD.D.click(this, obj);
  4179. }, [_szulsDeskIcon[i]])
  4180. }, _frag); //
  4181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4184. }
  4185. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4186. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4187. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4188. continue
  4189. }
  4190. _content = $$("div", {
  4191. className: "U_MD_D_KO",
  4192. "onmousedown": U.UF.C.closure(function (obj) {
  4193. //防止拖動圖標即打開了桌面應用
  4194. U.MD.D.click(this, obj);
  4195. }, [_orgDesktopIconInfo[i]]),
  4196. "onclick": U.UF.C.closure(function (obj) {
  4197. //防止拖動圖標即打開了桌面應用
  4198. U.MD.D.click(this, obj);
  4199. }, [_orgDesktopIconInfo[i]])
  4200. }, _frag); //
  4201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4204. }
  4205. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4206. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4207. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4208. continue
  4209. }
  4210. _content = $$("div", {
  4211. className: "U_MD_D_KO",
  4212. "onmousedown": U.UF.C.closure(function (obj) {
  4213. //防止拖動圖標即打開了桌面應用
  4214. U.MD.D.click(this, obj);
  4215. }, [_schoolDesktopIconInfo[i]]),
  4216. "onclick": U.UF.C.closure(function (obj) {
  4217. //防止拖動圖標即打開了桌面應用
  4218. U.MD.D.click(this, obj);
  4219. }, [_schoolDesktopIconInfo[i]])
  4220. }, _frag); //
  4221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4224. }
  4225. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4226. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4227. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4228. continue
  4229. }
  4230. _content = $$("div", {
  4231. className: "U_MD_D_KO",
  4232. "onmousedown": U.UF.C.closure(function (obj) {
  4233. //防止拖動圖標即打開了桌面應用
  4234. U.MD.D.click(this, obj);
  4235. }, [_GMteacherDesktopIconInfo[i]]),
  4236. "onclick": U.UF.C.closure(function (obj) {
  4237. //防止拖動圖標即打開了桌面應用
  4238. U.MD.D.click(this, obj);
  4239. }, [_GMteacherDesktopIconInfo[i]])
  4240. }, _frag); //
  4241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4244. }
  4245. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4246. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4247. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4248. continue
  4249. }
  4250. _content = $$("div", {
  4251. className: "U_MD_D_KO",
  4252. "onmousedown": U.UF.C.closure(function (obj) {
  4253. //防止拖動圖標即打開了桌面應用
  4254. U.MD.D.click(this, obj);
  4255. }, [_SONGteacherDesktopIconInfo[i]]),
  4256. "onclick": U.UF.C.closure(function (obj) {
  4257. //防止拖動圖標即打開了桌面應用
  4258. U.MD.D.click(this, obj);
  4259. }, [_SONGteacherDesktopIconInfo[i]])
  4260. }, _frag); //
  4261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4264. }
  4265. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4266. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4267. _content = $$("div", {
  4268. className: "U_MD_D_KO",
  4269. "onmousedown": U.UF.C.closure(function (obj) {
  4270. //防止拖動圖標即打開了桌面應用
  4271. U.MD.D.click(this, obj);
  4272. }, [_GMstudentDesktopIconInfo[i]]),
  4273. "onclick": U.UF.C.closure(function (obj) {
  4274. //防止拖動圖標即打開了桌面應用
  4275. U.MD.D.click(this, obj);
  4276. }, [_GMstudentDesktopIconInfo[i]])
  4277. }, _frag); //
  4278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4281. }
  4282. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4283. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4284. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4285. continue
  4286. }
  4287. _content = $$("div", {
  4288. className: "U_MD_D_KO",
  4289. "onmousedown": U.UF.C.closure(function (obj) {
  4290. //防止拖動圖標即打開了桌面應用
  4291. U.MD.D.click(this, obj);
  4292. }, [_tcTeacherDeskIconInfo[i]]),
  4293. "onclick": U.UF.C.closure(function (obj) {
  4294. //防止拖動圖標即打開了桌面應用
  4295. U.MD.D.click(this, obj);
  4296. }, [_tcTeacherDeskIconInfo[i]])
  4297. }, _frag); //
  4298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4301. }
  4302. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4303. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4304. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4305. continue
  4306. }
  4307. _content = $$("div", {
  4308. className: "U_MD_D_KO",
  4309. "onmousedown": U.UF.C.closure(function (obj) {
  4310. //防止拖動圖標即打開了桌面應用
  4311. U.MD.D.click(this, obj);
  4312. }, [_tcOrganizerDeskIconInfo[i]]),
  4313. "onclick": U.UF.C.closure(function (obj) {
  4314. //防止拖動圖標即打開了桌面應用
  4315. U.MD.D.click(this, obj);
  4316. }, [_tcOrganizerDeskIconInfo[i]])
  4317. }, _frag); //
  4318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4321. }
  4322. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4323. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4324. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4325. continue
  4326. }
  4327. _content = $$("div", {
  4328. className: "U_MD_D_KO",
  4329. "onmousedown": U.UF.C.closure(function (obj) {
  4330. //防止拖動圖標即打開了桌面應用
  4331. U.MD.D.click(this, obj);
  4332. }, [_szscTeacherDeskIconInfo[i]]),
  4333. "onclick": U.UF.C.closure(function (obj) {
  4334. //防止拖動圖標即打開了桌面應用
  4335. U.MD.D.click(this, obj);
  4336. }, [_szscTeacherDeskIconInfo[i]])
  4337. }, _frag); //
  4338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4341. }
  4342. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4343. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4344. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4345. continue
  4346. }
  4347. _content = $$("div", {
  4348. className: "U_MD_D_KO",
  4349. "onmousedown": U.UF.C.closure(function (obj) {
  4350. //防止拖動圖標即打開了桌面應用
  4351. U.MD.D.click(this, obj);
  4352. }, [_szscOrganizerDeskIconInfo[i]]),
  4353. "onclick": U.UF.C.closure(function (obj) {
  4354. //防止拖動圖標即打開了桌面應用
  4355. U.MD.D.click(this, obj);
  4356. }, [_szscOrganizerDeskIconInfo[i]])
  4357. }, _frag); //
  4358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4361. }
  4362. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4363. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4364. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4365. continue
  4366. }
  4367. _content = $$("div", {
  4368. className: "U_MD_D_KO",
  4369. "onmousedown": U.UF.C.closure(function (obj) {
  4370. //防止拖動圖標即打開了桌面應用
  4371. U.MD.D.click(this, obj);
  4372. }, [_nsfxTeacherDeskIconInfo[i]]),
  4373. "onclick": U.UF.C.closure(function (obj) {
  4374. //防止拖動圖標即打開了桌面應用
  4375. U.MD.D.click(this, obj);
  4376. }, [_nsfxTeacherDeskIconInfo[i]])
  4377. }, _frag); //
  4378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4381. }
  4382. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4383. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4384. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4385. continue
  4386. }
  4387. _content = $$("div", {
  4388. className: "U_MD_D_KO",
  4389. "onmousedown": U.UF.C.closure(function (obj) {
  4390. //防止拖動圖標即打開了桌面應用
  4391. U.MD.D.click(this, obj);
  4392. }, [_stiaTeacherDeskIconInfo[i]]),
  4393. "onclick": U.UF.C.closure(function (obj) {
  4394. //防止拖動圖標即打開了桌面應用
  4395. U.MD.D.click(this, obj);
  4396. }, [_stiaTeacherDeskIconInfo[i]])
  4397. }, _frag); //
  4398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4401. }
  4402. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4403. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4404. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4405. continue
  4406. }
  4407. _content = $$("div", {
  4408. className: "U_MD_D_KO",
  4409. "onmousedown": U.UF.C.closure(function (obj) {
  4410. //防止拖動圖標即打開了桌面應用
  4411. U.MD.D.click(this, obj);
  4412. }, [_szdjgTeacherDeskIconInfo[i]]),
  4413. "onclick": U.UF.C.closure(function (obj) {
  4414. //防止拖動圖標即打開了桌面應用
  4415. U.MD.D.click(this, obj);
  4416. }, [_szdjgTeacherDeskIconInfo[i]])
  4417. }, _frag); //
  4418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4421. }
  4422. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4423. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4424. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4425. continue
  4426. }
  4427. _content = $$("div", {
  4428. className: "U_MD_D_KO",
  4429. "onmousedown": U.UF.C.closure(function (obj) {
  4430. //防止拖動圖標即打開了桌面應用
  4431. U.MD.D.click(this, obj);
  4432. }, [_x010607TeacherDeskIconInfo[i]]),
  4433. "onclick": U.UF.C.closure(function (obj) {
  4434. //防止拖動圖標即打開了桌面應用
  4435. U.MD.D.click(this, obj);
  4436. }, [_x010607TeacherDeskIconInfo[i]])
  4437. }, _frag); //
  4438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4441. }
  4442. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4443. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4444. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4445. continue
  4446. }
  4447. _content = $$("div", {
  4448. className: "U_MD_D_KO",
  4449. "onmousedown": U.UF.C.closure(function (obj) {
  4450. //防止拖動圖標即打開了桌面應用
  4451. U.MD.D.click(this, obj);
  4452. }, [_xhlyTeacherDeskIconInfo[i]]),
  4453. "onclick": U.UF.C.closure(function (obj) {
  4454. //防止拖動圖標即打開了桌面應用
  4455. U.MD.D.click(this, obj);
  4456. }, [_xhlyTeacherDeskIconInfo[i]])
  4457. }, _frag); //
  4458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4461. }
  4462. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4463. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4464. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4465. continue
  4466. }
  4467. _content = $$("div", {
  4468. className: "U_MD_D_KO",
  4469. "onmousedown": U.UF.C.closure(function (obj) {
  4470. //防止拖動圖標即打開了桌面應用
  4471. U.MD.D.click(this, obj);
  4472. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4473. "onclick": U.UF.C.closure(function (obj) {
  4474. //防止拖動圖標即打開了桌面應用
  4475. U.MD.D.click(this, obj);
  4476. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4477. }, _frag); //
  4478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4481. }
  4482. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4483. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4484. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4485. continue
  4486. }
  4487. _content = $$("div", {
  4488. className: "U_MD_D_KO",
  4489. "onmousedown": U.UF.C.closure(function (obj) {
  4490. //防止拖動圖標即打開了桌面應用
  4491. U.MD.D.click(this, obj);
  4492. }, [_x010503TeacherDeskIconInfo[i]]),
  4493. "onclick": U.UF.C.closure(function (obj) {
  4494. //防止拖動圖標即打開了桌面應用
  4495. U.MD.D.click(this, obj);
  4496. }, [_x010503TeacherDeskIconInfo[i]])
  4497. }, _frag); //
  4498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4501. }
  4502. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4503. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4504. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4505. continue
  4506. }
  4507. _content = $$("div", {
  4508. className: "U_MD_D_KO",
  4509. "onmousedown": U.UF.C.closure(function (obj) {
  4510. //防止拖動圖標即打開了桌面應用
  4511. U.MD.D.click(this, obj);
  4512. }, [_x010504TeacherDeskIconInfo[i]]),
  4513. "onclick": U.UF.C.closure(function (obj) {
  4514. //防止拖動圖標即打開了桌面應用
  4515. U.MD.D.click(this, obj);
  4516. }, [_x010504TeacherDeskIconInfo[i]])
  4517. }, _frag); //
  4518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4521. }
  4522. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4523. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4524. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4525. continue
  4526. }
  4527. _content = $$("div", {
  4528. className: "U_MD_D_KO",
  4529. "onmousedown": U.UF.C.closure(function (obj) {
  4530. //防止拖動圖標即打開了桌面應用
  4531. U.MD.D.click(this, obj);
  4532. }, [_x010505TeacherDeskIconInfo[i]]),
  4533. "onclick": U.UF.C.closure(function (obj) {
  4534. //防止拖動圖標即打開了桌面應用
  4535. U.MD.D.click(this, obj);
  4536. }, [_x010505TeacherDeskIconInfo[i]])
  4537. }, _frag); //
  4538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4541. }
  4542. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4543. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4544. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4545. continue
  4546. }
  4547. _content = $$("div", {
  4548. className: "U_MD_D_KO",
  4549. "onmousedown": U.UF.C.closure(function (obj) {
  4550. //防止拖動圖標即打開了桌面應用
  4551. U.MD.D.click(this, obj);
  4552. }, [_x010404TeacherDeskIconInfo[i]]),
  4553. "onclick": U.UF.C.closure(function (obj) {
  4554. //防止拖動圖標即打開了桌面應用
  4555. U.MD.D.click(this, obj);
  4556. }, [_x010404TeacherDeskIconInfo[i]])
  4557. }, _frag); //
  4558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4561. }
  4562. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4563. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4564. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4565. continue
  4566. }
  4567. _content = $$("div", {
  4568. className: "U_MD_D_KO",
  4569. "onmousedown": U.UF.C.closure(function (obj) {
  4570. //防止拖動圖標即打開了桌面應用
  4571. U.MD.D.click(this, obj);
  4572. }, [_x010204TeacherDeskIconInfo[i]]),
  4573. "onclick": U.UF.C.closure(function (obj) {
  4574. //防止拖動圖標即打開了桌面應用
  4575. U.MD.D.click(this, obj);
  4576. }, [_x010204TeacherDeskIconInfo[i]])
  4577. }, _frag); //
  4578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4581. }
  4582. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4583. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4584. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4585. continue
  4586. }
  4587. _content = $$("div", {
  4588. className: "U_MD_D_KO",
  4589. "onmousedown": U.UF.C.closure(function (obj) {
  4590. //防止拖動圖標即打開了桌面應用
  4591. U.MD.D.click(this, obj);
  4592. }, [_x320101TeacherDeskIconInfo[i]]),
  4593. "onclick": U.UF.C.closure(function (obj) {
  4594. //防止拖動圖標即打開了桌面應用
  4595. U.MD.D.click(this, obj);
  4596. }, [_x320101TeacherDeskIconInfo[i]])
  4597. }, _frag); //
  4598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4601. }
  4602. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4603. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4604. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4605. continue
  4606. }
  4607. _content = $$("div", {
  4608. className: "U_MD_D_KO",
  4609. "onmousedown": U.UF.C.closure(function (obj) {
  4610. //防止拖動圖標即打開了桌面應用
  4611. U.MD.D.click(this, obj);
  4612. }, [_trailTeacherDeskIconInfo[i]]),
  4613. "onclick": U.UF.C.closure(function (obj) {
  4614. //防止拖動圖標即打開了桌面應用
  4615. U.MD.D.click(this, obj);
  4616. }, [_trailTeacherDeskIconInfo[i]])
  4617. }, _frag); //
  4618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4621. }
  4622. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4623. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4624. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4625. continue
  4626. }
  4627. _content = $$("div", {
  4628. className: "U_MD_D_KO",
  4629. "onmousedown": U.UF.C.closure(function (obj) {
  4630. //防止拖動圖標即打開了桌面應用
  4631. U.MD.D.click(this, obj);
  4632. }, [_trialTeacherDeskIconInfo[i]]),
  4633. "onclick": U.UF.C.closure(function (obj) {
  4634. //防止拖動圖標即打開了桌面應用
  4635. U.MD.D.click(this, obj);
  4636. }, [_trialTeacherDeskIconInfo[i]])
  4637. }, _frag); //
  4638. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4639. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4640. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4641. }
  4642. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4643. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4644. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4645. continue
  4646. }
  4647. _content = $$("div", {
  4648. className: "U_MD_D_KO",
  4649. "onmousedown": U.UF.C.closure(function (obj) {
  4650. //防止拖動圖標即打開了桌面應用
  4651. U.MD.D.click(this, obj);
  4652. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4653. "onclick": U.UF.C.closure(function (obj) {
  4654. //防止拖動圖標即打開了桌面應用
  4655. U.MD.D.click(this, obj);
  4656. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4657. }, _frag); //
  4658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4661. }
  4662. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4663. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4664. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4665. continue
  4666. }
  4667. _content = $$("div", {
  4668. className: "U_MD_D_KO",
  4669. "onmousedown": U.UF.C.closure(function (obj) {
  4670. //防止拖動圖標即打開了桌面應用
  4671. U.MD.D.click(this, obj);
  4672. }, [_szsyTeacherDeskIconInfo[i]]),
  4673. "onclick": U.UF.C.closure(function (obj) {
  4674. //防止拖動圖標即打開了桌面應用
  4675. U.MD.D.click(this, obj);
  4676. }, [_szsyTeacherDeskIconInfo[i]])
  4677. }, _frag); //
  4678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4681. }
  4682. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4683. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4684. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4685. continue
  4686. }
  4687. _content = $$("div", {
  4688. className: "U_MD_D_KO",
  4689. "onmousedown": U.UF.C.closure(function (obj) {
  4690. //防止拖动图标即打开了桌面应用
  4691. U.MD.D.click(this, obj);
  4692. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4693. "onclick": U.UF.C.closure(function (obj) {
  4694. //防止拖动图标即打开了桌面应用
  4695. U.MD.D.click(this, obj);
  4696. }, [_demoCocoTeacherDeskIconInfo[i]])
  4697. }, _frag); //
  4698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4701. }
  4702. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4703. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4704. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4705. continue
  4706. }
  4707. _content = $$("div", {
  4708. className: "U_MD_D_KO",
  4709. "onmousedown": U.UF.C.closure(function (obj) {
  4710. //防止拖動圖標即打開了桌面應用
  4711. U.MD.D.click(this, obj);
  4712. }, [_x010608TeacherDeskIconInfo[i]]),
  4713. "onclick": U.UF.C.closure(function (obj) {
  4714. //防止拖動圖標即打開了桌面應用
  4715. U.MD.D.click(this, obj);
  4716. }, [_x010608TeacherDeskIconInfo[i]])
  4717. }, _frag); //
  4718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4721. }
  4722. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4723. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4724. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4725. continue
  4726. }
  4727. _content = $$("div", {
  4728. className: "U_MD_D_KO",
  4729. "onmousedown": U.UF.C.closure(function (obj) {
  4730. //防止拖動圖標即打開了桌面應用
  4731. U.MD.D.click(this, obj);
  4732. }, [_x010611TeacherDeskIconInfo[i]]),
  4733. "onclick": U.UF.C.closure(function (obj) {
  4734. //防止拖動圖標即打開了桌面應用
  4735. U.MD.D.click(this, obj);
  4736. }, [_x010611TeacherDeskIconInfo[i]])
  4737. }, _frag); //
  4738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4741. }
  4742. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4743. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4744. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4745. continue
  4746. }
  4747. _content = $$("div", {
  4748. className: "U_MD_D_KO",
  4749. "onmousedown": U.UF.C.closure(function (obj) {
  4750. //防止拖動圖標即打開了桌面應用
  4751. U.MD.D.click(this, obj);
  4752. }, [_x010612TeacherDeskIconInfo[i]]),
  4753. "onclick": U.UF.C.closure(function (obj) {
  4754. //防止拖動圖標即打開了桌面應用
  4755. U.MD.D.click(this, obj);
  4756. }, [_x010612TeacherDeskIconInfo[i]])
  4757. }, _frag); //
  4758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4761. }
  4762. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4763. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4764. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4765. continue
  4766. }
  4767. _content = $$("div", {
  4768. className: "U_MD_D_KO",
  4769. "onmousedown": U.UF.C.closure(function (obj) {
  4770. //防止拖動圖標即打開了桌面應用
  4771. U.MD.D.click(this, obj);
  4772. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4773. "onclick": U.UF.C.closure(function (obj) {
  4774. //防止拖動圖標即打開了桌面應用
  4775. U.MD.D.click(this, obj);
  4776. }, [_tianyuanTeacherDeskIconInfo[i]])
  4777. }, _frag); //
  4778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4781. }
  4782. } else {
  4783. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4784. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4785. continue
  4786. }
  4787. _content = $$("div", {
  4788. className: "U_MD_D_KO",
  4789. "onmousedown": U.UF.C.closure(function (obj) {
  4790. //防止拖動圖標即打開了桌面應用
  4791. U.MD.D.click(this, obj);
  4792. }, [_teacherDesktopIconInfo[i]]),
  4793. "onclick": U.UF.C.closure(function (obj) {
  4794. //防止拖動圖標即打開了桌面應用
  4795. U.MD.D.click(this, obj);
  4796. }, [_teacherDesktopIconInfo[i]])
  4797. }, _frag); //
  4798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4801. }
  4802. }
  4803. } else {
  4804. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4805. _content = $$("div", {
  4806. className: "U_MD_D_KO",
  4807. style: { 'width': '124px', 'height': '145px' },
  4808. "onmousedown": U.UF.C.closure(function (obj) {
  4809. //防止拖動圖標即打開了桌面應用
  4810. U.MD.D.click(this, obj);
  4811. }, [_easyDesktopIconInfo[i]]),
  4812. "onclick": U.UF.C.closure(function (obj) {
  4813. //防止拖動圖標即打開了桌面應用
  4814. U.MD.D.click(this, obj);
  4815. }, [_easyDesktopIconInfo[i]])
  4816. }, _frag); //
  4817. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4820. }
  4821. }
  4822. if (type == 1) {
  4823. //加載好後給圖標定位
  4824. U.MD.D.iconPostion($(_frag).Child());
  4825. } else {
  4826. //加載好後給圖標定位
  4827. U.MD.D.iconPostion2($(_frag).Child());
  4828. }
  4829. //把圖標加載到頁面
  4830. el.appendChild(_frag);
  4831. }
  4832. /**
  4833. * 顯示任務欄
  4834. *
  4835. * @param {element} 桌面元素
  4836. */
  4837. U.MD.D.I.displayTaskbar = function (el) {
  4838. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4839. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4840. //任務欄位置變化
  4841. U.selectEl(el).css({ "bottom": "0px" });
  4842. //桌面位置變話
  4843. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4844. }
  4845. }
  4846. //#region 桌面圖標拖動邏輯
  4847. /**
  4848. * 桌面排列圖標
  4849. *
  4850. * @param {element} 桌面元素
  4851. * @param {object} 上下相距的距離
  4852. * @param {object} 左右相距的距離
  4853. * @return {object} 命名空間
  4854. */
  4855. U.MD.D.iconPostion = function (childs, top, left) {
  4856. var i; //用於循環處理
  4857. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4858. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4859. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4860. for (i = 0; i < childs.length; i++) {
  4861. //如果豎排top超過了範圍處理
  4862. if (top + 95 > US.height - 10) {
  4863. //left超過了頁面範圍處理,則嚮上重疊打印處理
  4864. if ((left + 180) > US.width) {
  4865. top -= 110;
  4866. left -= 90;
  4867. }
  4868. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4869. else {
  4870. left += 90;
  4871. top = 15;
  4872. };
  4873. }
  4874. //給圖標的位置賦值
  4875. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4876. if (i < childs.length - 1) {
  4877. //頁面圖標每次嚮下加95
  4878. top += 95;
  4879. }
  4880. }
  4881. //返回最後調用的圖標的位置
  4882. return [top, left];
  4883. }
  4884. /**
  4885. * 桌面排列圖標
  4886. *
  4887. * @param {element} 桌面元素
  4888. * @param {object} 上下相距的距離
  4889. * @param {object} 左右相距的距離
  4890. * @return {object} 命名空間
  4891. */
  4892. U.MD.D.iconPostion2 = function (childs, top, left) {
  4893. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4894. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4895. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4896. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4897. for (i = 0; i < childs.length; i++) {
  4898. //如果豎排top超過了範圍處理
  4899. if (left + 150 > US.width - 10) {
  4900. //left超過了頁面範圍處理,則嚮上重疊打印處理
  4901. if ((top + 180) > US.Height) {
  4902. top -= 150;
  4903. left -= 150;
  4904. }
  4905. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4906. else {
  4907. top += 150;
  4908. left = ol;
  4909. };
  4910. }
  4911. //給圖標的位置賦值
  4912. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4913. if (i < childs.length - 1) {
  4914. //頁面圖標每次嚮下加95
  4915. left += 150;
  4916. }
  4917. }
  4918. //返回最後調用的圖標的位置
  4919. return [top, left];
  4920. }
  4921. /**
  4922. * 桌面點擊事件邏輯
  4923. *
  4924. * @param {element} 桌面元素
  4925. * @param {object} 上下相距的距離
  4926. * @param {object} 左右相距的距離
  4927. * @return {object} 命名空間
  4928. */
  4929. U.MD.D.click = function (el, obj) {
  4930. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4931. var _userinfo = US.userInfo;
  4932. U.UF.EV.stopBubble(); //阻止嚮上冒泡
  4933. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4934. if (_buttonnumber < 2) {
  4935. //如果是click事件的處理
  4936. if (event.type == "click") {
  4937. //如果元素在mousemove事件中沒有移動則出發click事件
  4938. if (!U.MD.D.I.IsDrag) {
  4939. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4940. U.alert("請先登錄您的賬號!");
  4941. setTimeout(() => {
  4942. U.MD.U.L.login();
  4943. }, 2000);
  4944. } else {
  4945. //打開應用處理
  4946. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4947. }
  4948. }
  4949. }
  4950. //如果是mouse事件的處理
  4951. else {
  4952. if (US.Config.type == '1') {
  4953. //拖動處理,添加拖動和拖動結束事件
  4954. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4955. }
  4956. }
  4957. U.MD.D.I.IsDrag = false;
  4958. }
  4959. }
  4960. /**
  4961. * 拖動的處理
  4962. *
  4963. */
  4964. U.MD.D.iconMove = function () {
  4965. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4966. U.MD.D.I.IsDrag = true;
  4967. }
  4968. /**
  4969. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4970. *
  4971. * @param {element} 拖動的元素
  4972. * @return {object} 命名空間
  4973. */
  4974. U.MD.D.iconUp = function (el) {
  4975. var _top = 15,
  4976. _left = 20,
  4977. _margin,
  4978. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4979. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4980. if (_positioninfo["OT"] > 15) {
  4981. //網狀的形式定位,如果差超過了55,那麼嚮下定位,否則嚮上定位
  4982. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4983. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4984. }
  4985. if (_positioninfo["OL"] > 20) {
  4986. //網狀的形式定位,如果差超過了90,那麼嚮右定位,否則嚮左定位
  4987. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4988. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4989. }
  4990. //while循環判斷麼一個重疊的元素
  4991. do {
  4992. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素嚮下定位
  4993. _top = _positioninfo[0] + 95; //得到定位後的top
  4994. _left = _positioninfo[1]; //得到定位後的left
  4995. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4996. }
  4997. /**
  4998. * 判斷拖動後圖標是否重疊
  4999. *
  5000. * @param {element} 拖動的元素
  5001. * @param {element} 桌面所有的元素
  5002. * @param {array} 拖動元素的位置
  5003. ----------[0] 上 top
  5004. ----------[1] 左 left
  5005. * @return {object} 命名空間
  5006. */
  5007. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5008. //循環所有的圖標
  5009. for (var i = 0; i < childs.length; i++) {
  5010. //判斷有沒有和該圖標誒子重疊的元素
  5011. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5012. return childs[i]; //如果有返回
  5013. }
  5014. }
  5015. }
  5016. //#endregion
  5017. //#endregion
  5018. //#region 桌面應用
  5019. /**
  5020. * 打開應用
  5021. *
  5022. * @param {string} 類型
  5023. -----------------Disk 網盤繫統
  5024. -----------------PDisk 學習繫統網盤
  5025. -----------------Poto 圖片
  5026. -----------------Video 視頻
  5027. -----------------Music 音樂
  5028. -----------------Word word
  5029. -----------------Excel excel
  5030. -----------------Txt 記事本
  5031. -----------------PB 學習繫統
  5032. -----------------Blog 朋友圈繫統
  5033. -----------------FTP ftp繫統
  5034. -----------------Group 好友群
  5035. -----------------SY 首頁繫統
  5036. -----------------Set 個人設置
  5037. -----------------XSet 繫統設置
  5038. -----------------App 我們所有的app
  5039. -----------------BC c.1473.cn 平臺
  5040. -----------------CWeb d.1473.cn 變成平臺
  5041. -----------------其他的外聯繫統 我們統一用iframe打開
  5042. * @param {array} 類型
  5043. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  5044. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  5045. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  5046. 如果第一個參數為其他,則無第二個參數
  5047. * @returns {array}
  5048. */
  5049. window.addEventListener('message', function (e) { // 監聽 message 事件
  5050. // alert(e.data.type);
  5051. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  5052. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5053. //3是展示全部階段 2學生 1老師 4專家
  5054. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  5055. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5056. //3是展示全部階段 2學生 1老師 4專家
  5057. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  5058. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5059. //3是展示全部階段 2學生 1老師 4專家
  5060. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  5061. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5062. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  5063. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5064. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  5065. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5066. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  5067. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5068. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  5069. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5070. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  5071. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5072. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  5073. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5074. //3是展示全部階段 2學生 1老師 4專家
  5075. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  5076. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5077. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  5078. U.MD.D.I.selectUser();
  5079. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5080. var _formel = document.getElementById("study");
  5081. U.UF.F.windowZooming(_formel);
  5082. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5083. var _formel = document.getElementById("studyDetail");
  5084. U.UF.F.windowZooming(_formel);
  5085. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5086. var _formel = document.getElementById("studyDetail");
  5087. U.UF.F.windowZooming(_formel);
  5088. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5089. var _formel = document.getElementById("studentStudy");
  5090. U.UF.F.windowZooming(_formel);
  5091. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5092. // var _formel = document.getElementById("study");
  5093. //如果最大化了,那麼就把他縮小
  5094. // if (_formel.ismaximize) {
  5095. // return;
  5096. // }
  5097. // U.UF.F.windowZooming(_formel);
  5098. // U.UF.F.topWindow(_formel);
  5099. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5100. // var _formel = document.getElementById("studyDetail");
  5101. //如果最大化了,那麼就把他縮小
  5102. // if (_formel.ismaximize) {
  5103. // return;
  5104. // }
  5105. // U.UF.F.windowZooming(_formel);
  5106. // U.UF.F.topWindow(_formel);
  5107. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5108. // var _formel = document.getElementById("studentStudy");
  5109. // if (_formel.ismaximize) {
  5110. // return;
  5111. // }
  5112. // U.UF.F.windowZooming(_formel);
  5113. // U.UF.F.topWindow(_formel);
  5114. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5115. var _formel = document.getElementById("study");
  5116. // if (_formel.ismaximize) {
  5117. // return;
  5118. // }
  5119. // U.UF.F.windowZooming(_formel);
  5120. U.UF.F.topWindow(_formel);
  5121. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5122. var _formel = document.getElementById("studentIndex");
  5123. U.UF.F.windowZooming(_formel);
  5124. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5125. var _formel = document.getElementById("studyDetailS");
  5126. U.UF.F.windowZooming(_formel);
  5127. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5128. var _formel = document.getElementById("studioIndex");
  5129. U.UF.F.windowZooming(_formel);
  5130. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5131. var _formel = document.getElementById("studyDetailStudio");
  5132. U.UF.F.windowZooming(_formel);
  5133. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5134. var _formel = document.getElementById("studyDetailStudio");
  5135. U.UF.F.windowZooming(_formel);
  5136. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5137. var _formel = document.getElementById("studyDetailNT");
  5138. U.UF.F.windowZooming(_formel);
  5139. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5140. var _formel = document.getElementById("studyDetailS");
  5141. U.UF.F.windowZooming(_formel);
  5142. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5143. var _formel = document.getElementById("studyDetailS");
  5144. U.UF.F.topWindow(_formel);
  5145. } else if (e.data.tools && e.data.tools == "1") {
  5146. // U.MD.D.I.openApplication("whiteboard")
  5147. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5148. } else if (e.data.tools && e.data.tools == "2") {
  5149. U.MD.D.I.openApplication("note")
  5150. } else if (e.data.tools && e.data.tools == "3") {
  5151. // U.MD.D.I.openApplication("mind")
  5152. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5153. } else if (e.data.tools && e.data.tools == "4") {
  5154. U.MD.D.I.openApplication("investigation")
  5155. } else if (e.data.tools && e.data.tools == "6") {
  5156. // U.MD.D.I.openApplication("doc")
  5157. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5158. } else if (e.data.tools && e.data.tools == "7") {
  5159. // U.MD.D.I.openApplication("mindNetwork")
  5160. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5161. } else if (e.data.tools && e.data.tools == "8") {
  5162. U.MD.D.I.openApplication("library")
  5163. } else if (e.data.tools && e.data.tools == "17") {
  5164. U.MD.D.I.openApplication("stuLibrary")
  5165. } else if (e.data.tools && e.data.tools == "18") {
  5166. U.MD.D.I.openApplication("train")
  5167. } else if (e.data.tools && e.data.tools == "21") {
  5168. U.MD.D.I.openApplication("program")
  5169. } else if (e.data.tools && e.data.tools == "22") {
  5170. U.MD.D.I.openApplication("AIprogram2")
  5171. } else if (e.data.tools && e.data.tools == "23") {
  5172. U.MD.D.I.openApplication("Pythonprogram")
  5173. } else if (e.data.tools && e.data.tools == "24") {
  5174. U.MD.D.I.openApplication("AIprogram")
  5175. } else if (e.data.tools && e.data.tools == "25") {
  5176. U.MD.D.I.openApplication("sys")
  5177. } else if (e.data.tools && e.data.tools == "26") {
  5178. // U.MD.D.I.openApplication("courseDesign")
  5179. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5180. } else if (e.data.tools && e.data.tools == "31") {
  5181. U.MD.D.I.openApplication("netWorkPanel")
  5182. } else if (e.data.tools && e.data.tools == "32") {
  5183. U.MD.D.I.openApplication("codeEdit")
  5184. } else if (e.data.tools && e.data.tools == "57") {
  5185. U.MD.D.I.openApplication("CocoPi")
  5186. } else if (e.data.tools && e.data.tools == "63") {
  5187. U.MD.D.I.openApplication("Wood")
  5188. } else if (e.data.tools && e.data.tools == "58") {
  5189. U.MD.D.I.openApplication("car")
  5190. } else if (e.data.tools && e.data.tools == "59") {
  5191. U.MD.D.I.openApplication("lineSearch")
  5192. } else if (e.data.tools && e.data.tools == "60") {
  5193. U.MD.D.I.openApplication("deepLearning")
  5194. } else if (e.data.tools && e.data.tools == "61") {
  5195. U.MD.D.I.openApplication("allHistory")
  5196. } else if (e.data.tools && e.data.tools == "28") {
  5197. U.MD.D.I.openApplication("translation")
  5198. } else if (e.data.tools && e.data.tools == "37") {
  5199. U.MD.D.I.openApplication("mohe")
  5200. } else if (e.data.tools && e.data.tools == "38") {
  5201. U.MD.D.I.openApplication("24game")
  5202. } else if (e.data.tools && e.data.tools == "39") {
  5203. U.MD.D.I.openApplication("GeoGebra")
  5204. } else if (e.data.tools && e.data.tools == "43") {
  5205. U.MD.D.I.openApplication("studentEvaluate")
  5206. } else if (e.data.tools && e.data.tools == "44") {
  5207. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5208. } else if (e.data.tools && e.data.tools == "46") {
  5209. U.MD.D.I.openApplication("project")
  5210. } else if (e.data.tools && e.data.tools == "71") {
  5211. U.MD.D.I.openApplication("aigptCourse")
  5212. } else if (e.data.tools && e.data.tools == "72") {
  5213. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5214. } else if (e.data.tools && e.data.tools == "1s") {
  5215. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5216. } else if (e.data.tools && e.data.tools == "3s") {
  5217. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5218. } else if (e.data.tools && e.data.tools == "6s") {
  5219. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5220. } else if (e.data.tools && e.data.tools == "1studio") {
  5221. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5222. } else if (e.data.tools && e.data.tools == "3studio") {
  5223. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5224. } else if (e.data.tools && e.data.tools == "6studio") {
  5225. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5226. } else if (e.data.tools && e.data.tools == "3y") {
  5227. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5228. } else if (e.data.tools && e.data.tools == "1y") {
  5229. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5230. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5231. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5232. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5233. U.MD.D.I.openApplication("AIAnalyse")
  5234. } else if (e.data.tools && e.data.tools == "1teacher") {
  5235. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5236. } else if (e.data.tools && e.data.tools == "3teacher") {
  5237. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5238. } else if (e.data.tools && e.data.tools == "7teacher") {
  5239. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5240. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5241. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5242. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5243. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5244. } else if (e.data.tools && e.data.tools == "1E") {
  5245. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5246. } else if (e.data.tools && e.data.tools == "3E") {
  5247. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5248. } else if (e.data.tools && e.data.tools == "57y") {
  5249. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5250. } else if (e.data.tools && e.data.tools == "57u") {
  5251. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5252. } else if (e.data.tools && e.data.tools == "57teacher") {
  5253. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5254. } else if (e.data.tools && e.data.tools == "64") {
  5255. U.MD.D.I.openApplication("AIChat")
  5256. } else if (e.data.tools && e.data.tools == "66") {
  5257. U.MD.D.I.openApplication("formulaEdi")
  5258. } else if (e.data.tools && e.data.tools == "67") {
  5259. U.MD.D.I.openApplication("molStr")
  5260. } else if (e.data.tools && e.data.tools == "68") {
  5261. U.MD.D.I.openApplication("timeAxis")
  5262. } else if (e.data.tools && e.data.tools == "openCourse") {
  5263. let _data = {
  5264. typea: e.data.typea || '',
  5265. typeb: e.data.typeb || '',
  5266. typed: e.data.typed || '',
  5267. }
  5268. U.MD.D.I.openInApplication("index", _data)
  5269. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5270. let _data = {
  5271. classid: e.data.classid || '',
  5272. }
  5273. U.MD.D.I.openInApplication("dataClass", _data)
  5274. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5275. let _data = {
  5276. cid: e.data.cid || '',
  5277. gid: e.data.gid || '',
  5278. }
  5279. U.MD.D.I.openInApplication("opencCscl", _data)
  5280. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5281. U.MD.D.I.openApplication("dataBoardTest")
  5282. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5283. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5284. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5285. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5286. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5287. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5288. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5289. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5290. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5291. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5292. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5293. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5294. }else if (e.data.tools && e.data.tools == "loginSz") {
  5295. U.MD.D.I.openInApplication("loginSz")
  5296. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5297. if($('#classroom_observation_board')[0]){
  5298. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5299. }
  5300. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5301. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5302. if($('#classroom_observation_ob_comment')[0]){
  5303. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5304. }
  5305. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5306. }else if (e.data.tools && e.data.tools == "logout"){
  5307. U.MD.U.LO.logoutSystem()
  5308. }else if (e.data.tools && e.data.tools == "getLogin"){
  5309. let _iframe = $('#UI_Login')[0];
  5310. if (_iframe) {
  5311. var userInfo = US.userInfo;
  5312. var type = 2
  5313. if(userInfo && userInfo.userid){
  5314. type = 1
  5315. }
  5316. _contentWindow = _iframe.contentWindow;
  5317. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5318. }
  5319. }
  5320. });
  5321. U.MD.D.I.selectUser = function () {
  5322. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5323. if (res.value[0].length > 0) {
  5324. US.userInfo = res.value[0][0];
  5325. $(".userName")[0].innerHTML = US.userInfo.username;
  5326. }
  5327. }, [], { "type": "GET", "withCredentials": true });
  5328. }
  5329. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5330. var _userinfo = US.userInfo, //登錄用戶信息
  5331. _userid = US.userInfo.userid, //登錄用戶id
  5332. _oid = _userinfo.organizeid,
  5333. _type = US.userInfo.type,
  5334. _org = US.userInfo.org,
  5335. _role = US.userInfo.role,
  5336. _classId = US.userInfo.classid;
  5337. if (_type == 4) {
  5338. tType = 4
  5339. }
  5340. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5341. if(opArray.includes(str)){
  5342. let _str = str
  5343. if(str == 'appStore'){
  5344. _str = "cocoFlow"
  5345. }else if(str == "futureClass"){
  5346. _str = "cocoNote"
  5347. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5348. _str = "IntelligentForm"
  5349. }else if(str == "testStudent" || str == "testStudentSies"){
  5350. _str = "TeacherCenter"
  5351. }
  5352. try {
  5353. if (data) {
  5354. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5355. }else {
  5356. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5357. }
  5358. } catch (error) {
  5359. console.log(error);
  5360. }
  5361. }
  5362. switch (str) {
  5363. case "studyDetailNT": //無終端模式
  5364. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5365. setTimeout(() => {
  5366. U.MD.U.L.login();
  5367. }, 2000);
  5368. } else {
  5369. _formdiv = new U.UF.UI.form(
  5370. "課程詳情",
  5371. $$("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 }), {
  5372. "id": "studyDetailNT",
  5373. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5374. "onresize": function () { }
  5375. }, {
  5376. closecallback: function () { }
  5377. }, { "style": { "height": "36px" } }).form; //創建窗體
  5378. _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); } }
  5379. break;
  5380. }
  5381. case "studyDetail":
  5382. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5383. setTimeout(() => {
  5384. U.MD.U.L.login();
  5385. }, 2000);
  5386. } else {
  5387. _formdiv = new U.UF.UI.form(
  5388. "課程詳情",
  5389. $$("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 }), {
  5390. "id": "studyDetail",
  5391. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5392. "onresize": function () { }
  5393. }, {
  5394. closecallback: function () { }
  5395. }, { "style": { "height": "36px" } }).form; //創建窗體
  5396. _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); } }
  5397. break;
  5398. }
  5399. case "studyDetailTrain":
  5400. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5401. setTimeout(() => {
  5402. U.MD.U.L.login();
  5403. }, 2000);
  5404. } else {
  5405. _formdiv = new U.UF.UI.form(
  5406. "培訓詳情",
  5407. $$("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 }), {
  5408. "id": "studyDetailTrain",
  5409. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //創建窗體
  5414. _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); } }
  5415. break;
  5416. }
  5417. case "studyDetailS":
  5418. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5419. setTimeout(() => {
  5420. U.MD.U.L.login();
  5421. }, 2000);
  5422. } else {
  5423. _formdiv = new U.UF.UI.form(
  5424. "項目詳情",
  5425. $$("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 }), {
  5426. "id": "studyDetailS",
  5427. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //創建窗體
  5432. _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); } }
  5433. break;
  5434. }
  5435. case "studyDetailStudio":
  5436. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5437. setTimeout(() => {
  5438. U.MD.U.L.login();
  5439. }, 2000);
  5440. } else {
  5441. _formdiv = new U.UF.UI.form(
  5442. "工作詳情",
  5443. $$("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 }), {
  5444. "id": "studyDetailStudio",
  5445. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //創建窗體
  5450. _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); } }
  5451. break;
  5452. }
  5453. case "studyDetailS5":
  5454. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5455. setTimeout(() => {
  5456. U.MD.U.L.login();
  5457. }, 2000);
  5458. } else {
  5459. _formdiv = new U.UF.UI.form(
  5460. "項目詳情",
  5461. $$("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 }), {
  5462. "id": "studyDetailS",
  5463. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5464. "onresize": function () { }
  5465. }, {
  5466. closecallback: function () { }
  5467. }, { "style": { "height": "36px" } }).form; //創建窗體
  5468. _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); } }
  5469. break;
  5470. }
  5471. case "studyDetailGM":
  5472. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5473. setTimeout(() => {
  5474. U.MD.U.L.login();
  5475. }, 2000);
  5476. } else {
  5477. _formdiv = new U.UF.UI.form(
  5478. "課程詳情",
  5479. $$("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 }), {
  5480. "id": "studyDetail",
  5481. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5482. "onresize": function () { }
  5483. }, {
  5484. closecallback: function () { }
  5485. }, { "style": { "height": "36px" } }).form; //創建窗體
  5486. _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); } }
  5487. break;
  5488. }
  5489. case "hanUrl":
  5490. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5491. setTimeout(() => {
  5492. U.MD.U.L.login();
  5493. }, 2000);
  5494. } else {
  5495. _formdiv = new U.UF.UI.form(
  5496. "漢字宮",
  5497. $$("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" }), {
  5498. "id": "hanUrl",
  5499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //創建窗體
  5504. _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); } }
  5505. break;
  5506. }
  5507. case "index":
  5508. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5509. setTimeout(() => {
  5510. U.MD.U.L.login();
  5511. }, 2000);
  5512. } else {
  5513. _formdiv = new U.UF.UI.form(
  5514. "課程中心",
  5515. $$("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 }), {
  5516. "id": "study",
  5517. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5518. "onresize": function () { }
  5519. }, {
  5520. closecallback: function () { }
  5521. }, { "style": { "height": "36px" } }).form; //創建窗體
  5522. _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); } }
  5523. break;
  5524. }
  5525. case "dataClass":
  5526. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5527. setTimeout(() => {
  5528. U.MD.U.L.login();
  5529. }, 2000);
  5530. } else {
  5531. _formdiv = new U.UF.UI.form(
  5532. "數據報告",
  5533. $$("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 }), {
  5534. "id": "dataClass",
  5535. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //創建窗體
  5540. _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); } }
  5541. break;
  5542. }
  5543. case "opencCscl":
  5544. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5545. setTimeout(() => {
  5546. U.MD.U.L.login();
  5547. }, 2000);
  5548. } else {
  5549. _formdiv = new U.UF.UI.form(
  5550. "協同建構",
  5551. $$("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 }), {
  5552. "id": "futureClass",
  5553. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5557. }, { "style": { "height": "36px" } }).form; //創建窗體
  5558. _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); } }
  5559. break;
  5560. }
  5561. case "openCourseUpdate":
  5562. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5563. setTimeout(() => {
  5564. U.MD.U.L.login();
  5565. }, 2000);
  5566. } else {
  5567. _formdiv = new U.UF.UI.form(
  5568. "課程管理",
  5569. $$("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 }), {
  5570. "id": "openCourseUpdate",
  5571. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //創建窗體
  5576. break;
  5577. }
  5578. case "openNewCourseUpdate":
  5579. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5580. setTimeout(() => {
  5581. U.MD.U.L.login();
  5582. }, 2000);
  5583. } else {
  5584. _formdiv = new U.UF.UI.form(
  5585. "課程管理",
  5586. $$("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 }), {
  5587. "id": "openCourseUpdate",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //創建窗體
  5593. break;
  5594. }
  5595. case "openCourseEUpdate":
  5596. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5597. setTimeout(() => {
  5598. U.MD.U.L.login();
  5599. }, 2000);
  5600. } else {
  5601. _formdiv = new U.UF.UI.form(
  5602. "課程管理",
  5603. $$("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 }), {
  5604. "id": "openCourseUpdate",
  5605. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5606. "onresize": function () { }
  5607. }, {
  5608. closecallback: function () { }
  5609. }, { "style": { "height": "36px" } }).form; //創建窗體
  5610. break;
  5611. }
  5612. case "openCourseAiUpdate":
  5613. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5614. setTimeout(() => {
  5615. U.MD.U.L.login();
  5616. }, 2000);
  5617. } else {
  5618. _formdiv = new U.UF.UI.form(
  5619. "課程管理",
  5620. $$("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 }), {
  5621. "id": "openCourseUpdate",
  5622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //創建窗體
  5627. break;
  5628. }
  5629. case "openCourseAiUpdate2":
  5630. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5631. setTimeout(() => {
  5632. U.MD.U.L.login();
  5633. }, 2000);
  5634. } else {
  5635. _formdiv = new U.UF.UI.form(
  5636. "課程管理",
  5637. $$("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 }), {
  5638. "id": "openCourseUpdate",
  5639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //創建窗體
  5644. break;
  5645. }
  5646. case "openCourseNewUpdate":
  5647. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5648. setTimeout(() => {
  5649. U.MD.U.L.login();
  5650. }, 2000);
  5651. } else {
  5652. _formdiv = new U.UF.UI.form(
  5653. "課程管理",
  5654. $$("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 }), {
  5655. "id": "openCourseUpdate",
  5656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //創建窗體
  5661. break;
  5662. }
  5663. case "inviteLoginSz":
  5664. _formdiv = new U.UF.UI.form(
  5665. "隨機碼登錄",
  5666. $$("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 }), {
  5667. "id": "loginSz",
  5668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //創建窗體
  5673. break;
  5674. case "loginSz":
  5675. _formdiv = new U.UF.UI.form(
  5676. "教師登錄",
  5677. $$("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" }), {
  5678. "id": "loginSz",
  5679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //創建窗體
  5684. break;
  5685. case "teacher":
  5686. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5687. setTimeout(() => {
  5688. U.MD.U.L.login();
  5689. }, 2000);
  5690. } else {
  5691. _formdiv = new U.UF.UI.form(
  5692. "教師管理",
  5693. $$("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 }), {
  5694. "id": "teacher",
  5695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //創建窗體
  5700. break;
  5701. }
  5702. case "dataBoardSZArea":
  5703. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5704. setTimeout(() => {
  5705. U.MD.U.L.login();
  5706. }, 2000);
  5707. } else {
  5708. _formdiv = new U.UF.UI.form(
  5709. "綜合數據看闆",
  5710. $$("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 }), {
  5711. "id": "dataBoardSZArea",
  5712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5713. "onresize": function () { }
  5714. }, {
  5715. closecallback: function () { }
  5716. }, { "style": { "height": "36px" } }).form; //創建窗體
  5717. break;
  5718. }
  5719. case "dataBoardSZCity":
  5720. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5721. setTimeout(() => {
  5722. U.MD.U.L.login();
  5723. }, 2000);
  5724. } else {
  5725. _formdiv = new U.UF.UI.form(
  5726. "綜合數據看闆",
  5727. $$("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 }), {
  5728. "id": "dataBoardSZCity",
  5729. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5730. "onresize": function () { }
  5731. }, {
  5732. closecallback: function () { }
  5733. }, { "style": { "height": "36px" } }).form; //創建窗體
  5734. break;
  5735. }
  5736. case "classroom_observation_board":
  5737. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5738. setTimeout(() => {
  5739. U.MD.U.L.login();
  5740. }, 2000);
  5741. } else {
  5742. _formdiv = new U.UF.UI.form(
  5743. "課堂觀察",
  5744. $$("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 }), {
  5745. "id": "classroom_observation_board",
  5746. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //創建窗體
  5751. break;
  5752. }
  5753. case "classroom_observation_ob_comment":
  5754. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5755. setTimeout(() => {
  5756. U.MD.U.L.login();
  5757. }, 2000);
  5758. } else {
  5759. _formdiv = new U.UF.UI.form(
  5760. "課堂審核",
  5761. $$("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 }), {
  5762. "id": "classroom_observation_ob_comment",
  5763. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5764. "onresize": function () { }
  5765. }, {
  5766. closecallback: function () { }
  5767. }, { "style": { "height": "36px" } }).form; //創建窗體
  5768. break;
  5769. }
  5770. case "gptConfig":
  5771. _formdiv = new U.UF.UI.form(
  5772. data.name ? data.name : "應用中心",
  5773. $$("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 }), {
  5774. "id": "gptConfig" + data.id,
  5775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5776. "onresize": function () { }
  5777. }, {
  5778. closecallback: function () { }
  5779. }, { "style": { "height": "36px" } }).form; //創建窗體
  5780. break;
  5781. case "testDetail":
  5782. _formdiv = new U.UF.UI.form(
  5783. "表单填写",
  5784. $$("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/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5785. "id": "testDetail" + data,
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. break;
  5792. }
  5793. }
  5794. U.MD.D.I.openApplication = function (str, obj, info) {
  5795. obj = obj || {};
  5796. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5797. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5798. _userinfo = US.userInfo, //登錄用戶信息
  5799. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5800. _oid = obj.organizeid || _userinfo.organizeid,
  5801. _type = US.userInfo.type,
  5802. _org = obj.org || US.userInfo.org,
  5803. _role = US.userInfo.role,
  5804. _classId = US.userInfo.classid,
  5805. _TscreenType = 1
  5806. _screenType = 2,
  5807. _SscreenType = 3;
  5808. let iframeBool = true
  5809. if(U.UF.UI.form.allForm[str]){
  5810. iframeBool = false
  5811. }
  5812. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5813. return;
  5814. }
  5815. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5816. if(opArray.includes(str)){
  5817. let _str = str
  5818. if(str == 'appStore'){
  5819. _str = "cocoFlow"
  5820. }else if(str == "futureClass"){
  5821. _str = "cocoNote"
  5822. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5823. _str = "IntelligentForm"
  5824. }else if(str == "testStudent" || str == "testStudentSies"){
  5825. _str = "TeacherCenter"
  5826. }
  5827. try {
  5828. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5829. } catch (error) {
  5830. console.log(error);
  5831. }
  5832. }
  5833. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5834. switch (str) {
  5835. case "studnetProject": //好友打開
  5836. _formdiv = new U.UF.UI.form(
  5837. "我的項目",
  5838. $$("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 }), {
  5839. "id": "studnetProject",
  5840. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //創建窗體
  5845. _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); } }
  5846. break;
  5847. case "studentEvaluate": //好友打開
  5848. _formdiv = new U.UF.UI.form(
  5849. "我的評價",
  5850. $$("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 }), {
  5851. "id": "studentEvaluate",
  5852. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //創建窗體
  5857. _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); } }
  5858. break;
  5859. case "my":
  5860. _formdiv = new U.UF.UI.form(
  5861. "我的資料",
  5862. $$("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 }), {
  5863. "id": "my",
  5864. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5865. "onresize": function () { }
  5866. }, {
  5867. closecallback: function () { }
  5868. }, { "style": { "height": "36px" } }).form; //創建窗體
  5869. _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); } }
  5870. break;
  5871. case "program":
  5872. _formdiv = new U.UF.UI.form(
  5873. "編程平臺",
  5874. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5875. "id": "program",
  5876. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //創建窗體
  5881. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5882. break;
  5883. case "library":
  5884. _formdiv = new U.UF.UI.form(
  5885. "素材庫",
  5886. $$("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 }), {
  5887. "id": "library",
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //創建窗體
  5893. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材庫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5894. break;
  5895. case "whiteboard":
  5896. _formdiv = new U.UF.UI.form(
  5897. "電子白闆",
  5898. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5899. "id": "whiteboard",
  5900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5901. "onresize": function () { }
  5902. }, {
  5903. closecallback: function () { }
  5904. }, { "style": { "height": "36px" } }).form; //創建窗體
  5905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "電子白闆", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5906. break;
  5907. case "investigation":
  5908. _formdiv = new U.UF.UI.form(
  5909. "問卷調查",
  5910. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5911. "id": "investigation",
  5912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //創建窗體
  5917. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5918. break;
  5919. case "note":
  5920. _formdiv = new U.UF.UI.form(
  5921. "便簽分類",
  5922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5923. "id": "note",
  5924. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //創建窗體
  5929. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便簽分類", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5930. break;
  5931. // case "score":
  5932. // _formdiv = new U.UF.UI.form(
  5933. // "量規評分",
  5934. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5935. // "id": "score",
  5936. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5937. // "onresize": function() {}
  5938. // }, {
  5939. // closecallback: function() {}
  5940. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5941. // _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); } }
  5942. // break;
  5943. case "mind":
  5944. _formdiv = new U.UF.UI.form(
  5945. "思維導圖",
  5946. $$("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"
  5947. "id": "mind",
  5948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //創建窗體
  5953. _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); } }
  5954. break;
  5955. case "doc":
  5956. // U.MD.D.I.isRoom();
  5957. _formdiv = new U.UF.UI.form(
  5958. "協同文檔",
  5959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5960. "id": "doc",
  5961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //創建窗體
  5966. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5967. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5968. // })
  5969. _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); } }
  5970. break;
  5971. case "studentStudy":
  5972. _formdiv = new U.UF.UI.form(
  5973. "課程中心",
  5974. $$("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
  5975. "id": "studentStudy",
  5976. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5982. break;
  5983. case "train": //好友打開
  5984. _formdiv = new U.UF.UI.form(
  5985. "訓練平臺",
  5986. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5987. "id": "train",
  5988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5989. "onresize": function () { }
  5990. }, {
  5991. closecallback: function () { }
  5992. }, { "style": { "height": "36px" } }).form; //創建窗體
  5993. _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); } }
  5994. break;
  5995. case "mindNetwork": //好友打開
  5996. _formdiv = new U.UF.UI.form(
  5997. "思維網格",
  5998. $$("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 }), {
  5999. "id": "mindNetwork",
  6000. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6001. "onresize": function () { }
  6002. }, {
  6003. closecallback: function () { }
  6004. }, { "style": { "height": "36px" } }).form; //創建窗體
  6005. _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); } }
  6006. break;
  6007. case "studentClassRoom": //好友打開
  6008. _formdiv = new U.UF.UI.form(
  6009. "實時課堂",
  6010. $$("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 }), {
  6011. "id": "studentClassRoom",
  6012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6013. "onresize": function () { }
  6014. }, {
  6015. closecallback: function () { }
  6016. }, { "style": { "height": "36px" } }).form; //創建窗體
  6017. _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); } }
  6018. setTimeout(() => {
  6019. U.UF.F.windowZooming(_formdiv)
  6020. }, 0);
  6021. break;
  6022. }
  6023. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6024. switch (str) {
  6025. case "studnetProject": //好友打開
  6026. _formdiv = new U.UF.UI.form(
  6027. "我的項目",
  6028. $$("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 }), {
  6029. "id": "studnetProject",
  6030. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, { "style": { "height": "36px" } }).form; //創建窗體
  6035. _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); } }
  6036. break;
  6037. case "studentEvaluate": //好友打開
  6038. _formdiv = new U.UF.UI.form(
  6039. "我的評價",
  6040. $$("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 }), {
  6041. "id": "studentEvaluate",
  6042. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6043. "onresize": function () { }
  6044. }, {
  6045. closecallback: function () { }
  6046. }, { "style": { "height": "36px" } }).form; //創建窗體
  6047. _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); } }
  6048. break;
  6049. case "my":
  6050. _formdiv = new U.UF.UI.form(
  6051. "我的資料",
  6052. $$("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 }), {
  6053. "id": "my",
  6054. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6055. "onresize": function () { }
  6056. }, {
  6057. closecallback: function () { }
  6058. }, { "style": { "height": "36px" } }).form; //創建窗體
  6059. _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); } }
  6060. break;
  6061. case "program":
  6062. _formdiv = new U.UF.UI.form(
  6063. "編程平臺",
  6064. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6065. "id": "program",
  6066. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6067. "onresize": function () { }
  6068. }, {
  6069. closecallback: function () { }
  6070. }, { "style": { "height": "36px" } }).form; //創建窗體
  6071. _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); } }
  6072. break;
  6073. case "library":
  6074. _formdiv = new U.UF.UI.form(
  6075. "素材庫",
  6076. $$("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 }), {
  6077. "id": "library",
  6078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, { "style": { "height": "36px" } }).form; //創建窗體
  6083. _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); } }
  6084. break;
  6085. case "whiteboard":
  6086. _formdiv = new U.UF.UI.form(
  6087. "電子白闆",
  6088. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6089. "id": "whiteboard",
  6090. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6091. "onresize": function () { }
  6092. }, {
  6093. closecallback: function () { }
  6094. }, { "style": { "height": "36px" } }).form; //創建窗體
  6095. _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); } }
  6096. break;
  6097. case "investigation":
  6098. _formdiv = new U.UF.UI.form(
  6099. "問卷調查",
  6100. $$("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 }), {
  6101. "id": "investigation",
  6102. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6103. "onresize": function () { }
  6104. }, {
  6105. closecallback: function () { }
  6106. }, { "style": { "height": "36px" } }).form; //創建窗體
  6107. _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); } }
  6108. break;
  6109. case "note":
  6110. _formdiv = new U.UF.UI.form(
  6111. "便簽分類",
  6112. $$("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 }), {
  6113. "id": "note",
  6114. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6115. "onresize": function () { }
  6116. }, {
  6117. closecallback: function () { }
  6118. }, { "style": { "height": "36px" } }).form; //創建窗體
  6119. _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); } }
  6120. break;
  6121. // case "score":
  6122. // _formdiv = new U.UF.UI.form(
  6123. // "量規評分",
  6124. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6125. // "id": "score",
  6126. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6127. // "onresize": function() {}
  6128. // }, {
  6129. // closecallback: function() {}
  6130. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6131. // _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); } }
  6132. // break;
  6133. case "mind":
  6134. _formdiv = new U.UF.UI.form(
  6135. "思維導圖",
  6136. $$("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"
  6137. "id": "mind",
  6138. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6139. "onresize": function () { }
  6140. }, {
  6141. closecallback: function () { }
  6142. }, { "style": { "height": "36px" } }).form; //創建窗體
  6143. _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); } }
  6144. break;
  6145. case "doc":
  6146. // U.MD.D.I.isRoom();
  6147. _formdiv = new U.UF.UI.form(
  6148. "協同文檔",
  6149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6150. "id": "doc",
  6151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, { "style": { "height": "36px" } }).form; //創建窗體
  6156. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6157. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6158. })
  6159. _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); } }
  6160. break;
  6161. case "train": //好友打開
  6162. _formdiv = new U.UF.UI.form(
  6163. "訓練平臺",
  6164. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6165. "id": "train",
  6166. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //創建窗體
  6171. _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); } }
  6172. break;
  6173. case "studentStudy":
  6174. _formdiv = new U.UF.UI.form(
  6175. "課程中心",
  6176. $$("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
  6177. "id": "studentStudy",
  6178. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //創建窗體
  6183. _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); } }
  6184. break;
  6185. case "mindNetwork": //好友打開
  6186. _formdiv = new U.UF.UI.form(
  6187. "思維網格",
  6188. $$("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 }), {
  6189. "id": "mindNetwork",
  6190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //創建窗體
  6195. _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); } }
  6196. break;
  6197. case "studentClassRoom": //好友打開
  6198. _formdiv = new U.UF.UI.form(
  6199. "實時課堂",
  6200. $$("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 }), {
  6201. "id": "studentClassRoom",
  6202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, { "style": { "height": "36px" } }).form; //創建窗體
  6207. _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); } }
  6208. setTimeout(() => {
  6209. U.UF.F.windowZooming(_formdiv)
  6210. }, 0);
  6211. break;
  6212. }
  6213. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6214. //選擇應用處理
  6215. switch (str) {
  6216. case "project": //好友打開
  6217. _formdiv = new U.UF.UI.form(
  6218. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  6219. $$("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 }), {
  6220. "id": "project",
  6221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6222. "onresize": function () { }
  6223. }, {
  6224. closecallback: function () { }
  6225. }, { "style": { "height": "36px" } }).form; //創建窗體
  6226. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6227. break;
  6228. case "student":
  6229. _formdiv = new U.UF.UI.form(
  6230. "學生管理",
  6231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  6232. "id": "student",
  6233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //創建窗體
  6238. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "學生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6239. break;
  6240. case "evaluate":
  6241. _formdiv = new U.UF.UI.form(
  6242. "學生評價",
  6243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6244. "id": "evaluate",
  6245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //創建窗體
  6250. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "學生評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6251. break;
  6252. case "sys":
  6253. _formdiv = new U.UF.UI.form(
  6254. "目標管理",
  6255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6256. "id": "sys",
  6257. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //創建窗體
  6262. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目標管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6263. break;
  6264. case "courseDesign":
  6265. _formdiv = new U.UF.UI.form(
  6266. "項目設計",
  6267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6268. "id": "courseDesign",
  6269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //創建窗體
  6274. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "項目設計", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6275. break;
  6276. case "program":
  6277. _formdiv = new U.UF.UI.form(
  6278. "編程平臺",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6280. "id": "program",
  6281. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //創建窗體
  6286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6287. break;
  6288. case "class":
  6289. _formdiv = new U.UF.UI.form(
  6290. "班級管理",
  6291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6292. "id": "class",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //創建窗體
  6298. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班級管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6299. break;
  6300. case "Grade":
  6301. _formdiv = new U.UF.UI.form(
  6302. "年級管理",
  6303. $$("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 }), {
  6304. "id": "Grade",
  6305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6306. "onresize": function () { }
  6307. }, {
  6308. closecallback: function () { }
  6309. }, { "style": { "height": "36px" } }).form; //創建窗體
  6310. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年級管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6311. break;
  6312. case "teacherOffice":
  6313. _formdiv = new U.UF.UI.form(
  6314. "教研室",
  6315. $$("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 }), {
  6316. "id": "teacherOffice",
  6317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6318. "onresize": function () { }
  6319. }, {
  6320. closecallback: function () { }
  6321. }, { "style": { "height": "36px" } }).form; //創建窗體
  6322. _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); } }
  6323. break;
  6324. case "my":
  6325. _formdiv = new U.UF.UI.form(
  6326. "我的資料",
  6327. $$("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 }), {
  6328. "id": "my",
  6329. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6330. "onresize": function () { }
  6331. }, {
  6332. closecallback: function () { }
  6333. }, { "style": { "height": "36px" } }).form; //創建窗體
  6334. _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); } }
  6335. break;
  6336. case "notice":
  6337. _formdiv = new U.UF.UI.form(
  6338. "通知公告",
  6339. $$("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 }), {
  6340. "id": "notice",
  6341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6342. "onresize": function () { }
  6343. }, {
  6344. closecallback: function () { }
  6345. }, { "style": { "height": "36px" } }).form; //創建窗體
  6346. _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); } }
  6347. break;
  6348. case "library":
  6349. _formdiv = new U.UF.UI.form(
  6350. "素材庫",
  6351. $$("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 }), {
  6352. "id": "library",
  6353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6354. "onresize": function () { }
  6355. }, {
  6356. closecallback: function () { }
  6357. }, { "style": { "height": "36px" } }).form; //創建窗體
  6358. _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); } }
  6359. break;
  6360. case "whiteboard":
  6361. _formdiv = new U.UF.UI.form(
  6362. "電子白闆",
  6363. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6364. "id": "whiteboard",
  6365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6366. "onresize": function () { }
  6367. }, {
  6368. closecallback: function () { }
  6369. }, { "style": { "height": "36px" } }).form; //創建窗體
  6370. _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); } }
  6371. break;
  6372. case "investigation":
  6373. _formdiv = new U.UF.UI.form(
  6374. "問卷調查",
  6375. $$("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 }), {
  6376. "id": "investigation",
  6377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6378. "onresize": function () { }
  6379. }, {
  6380. closecallback: function () { }
  6381. }, { "style": { "height": "36px" } }).form; //創建窗體
  6382. _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); } }
  6383. break;
  6384. case "note":
  6385. _formdiv = new U.UF.UI.form(
  6386. "便簽分類",
  6387. $$("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 }), {
  6388. "id": "note",
  6389. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6390. "onresize": function () { }
  6391. }, {
  6392. closecallback: function () { }
  6393. }, { "style": { "height": "36px" } }).form; //創建窗體
  6394. _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); } }
  6395. break;
  6396. // case "score":
  6397. // _formdiv = new U.UF.UI.form(
  6398. // "量規評分",
  6399. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6400. // "id": "score",
  6401. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6402. // "onresize": function() {}
  6403. // }, {
  6404. // closecallback: function() {}
  6405. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6406. // _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); } }
  6407. // break;
  6408. case "mind":
  6409. _formdiv = new U.UF.UI.form(
  6410. "思維導圖",
  6411. $$("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"
  6412. "id": "mind",
  6413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //創建窗體
  6418. _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); } }
  6419. break;
  6420. case "doc":
  6421. // U.MD.D.I.isRoom();
  6422. _formdiv = new U.UF.UI.form(
  6423. "協同文檔",
  6424. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6425. "id": "doc",
  6426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6427. "onresize": function () { }
  6428. }, {
  6429. closecallback: function () { }
  6430. }, { "style": { "height": "36px" } }).form; //創建窗體
  6431. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6432. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6433. })
  6434. _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); } }
  6435. break;
  6436. case "study":
  6437. _formdiv = new U.UF.UI.form(
  6438. "課程中心",
  6439. $$("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
  6440. "id": "study",
  6441. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //創建窗體
  6446. _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); } }
  6447. break;
  6448. case "mindNetwork": //好友打開
  6449. _formdiv = new U.UF.UI.form(
  6450. "思維網格",
  6451. $$("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 }), {
  6452. "id": "mindNetwork",
  6453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //創建窗體
  6458. _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); } }
  6459. break;
  6460. case "train": //好友打開
  6461. _formdiv = new U.UF.UI.form(
  6462. "訓練平臺",
  6463. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6464. "id": "mindNetwork",
  6465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //創建窗體
  6470. _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); } }
  6471. break;
  6472. case "teacherClassRoom": //好友打開
  6473. _formdiv = new U.UF.UI.form(
  6474. "實時課堂",
  6475. $$("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 }), {
  6476. "id": "teacherClassRoom",
  6477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //創建窗體
  6482. _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); } }
  6483. setTimeout(() => {
  6484. U.UF.F.windowZooming(_formdiv)
  6485. }, 0);
  6486. break;
  6487. }
  6488. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6489. switch (str) {
  6490. case "project": //好友打開
  6491. _formdiv = new U.UF.UI.form(
  6492. "課程管理",
  6493. $$("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 }), {
  6494. "id": "project",
  6495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6496. "onresize": function () { }
  6497. }, {
  6498. closecallback: function () { }
  6499. }, { "style": { "height": "36px" } }).form; //創建窗體
  6500. _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); } }
  6501. break;
  6502. case "evaluate":
  6503. _formdiv = new U.UF.UI.form(
  6504. "學生評價",
  6505. $$("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 }), {
  6506. "id": "evaluate",
  6507. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6508. "onresize": function () { }
  6509. }, {
  6510. closecallback: function () { }
  6511. }, { "style": { "height": "36px" } }).form; //創建窗體
  6512. _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); } }
  6513. break;
  6514. case "notice":
  6515. _formdiv = new U.UF.UI.form(
  6516. "通知公告",
  6517. $$("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 }), {
  6518. "id": "notice",
  6519. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6520. "onresize": function () { }
  6521. }, {
  6522. closecallback: function () { }
  6523. }, { "style": { "height": "36px" } }).form; //創建窗體
  6524. _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); } }
  6525. break;
  6526. case "stuLibrary":
  6527. _formdiv = new U.UF.UI.form(
  6528. "學習資料",
  6529. $$("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 }), {
  6530. "id": "stuLibrary",
  6531. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6532. "onresize": function () { }
  6533. }, {
  6534. closecallback: function () { }
  6535. }, { "style": { "height": "36px" } }).form; //創建窗體
  6536. _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); } }
  6537. break;
  6538. case "program":
  6539. _formdiv = new U.UF.UI.form(
  6540. "編程平臺",
  6541. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6542. "id": "program",
  6543. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6544. "onresize": function () { }
  6545. }, {
  6546. closecallback: function () { }
  6547. }, { "style": { "height": "36px" } }).form; //創建窗體
  6548. _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); } }
  6549. break;
  6550. case "whiteboard":
  6551. _formdiv = new U.UF.UI.form(
  6552. "電子白闆",
  6553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6554. "id": "whiteboard",
  6555. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. closecallback: function () { }
  6559. }, { "style": { "height": "36px" } }).form; //創建窗體
  6560. _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); } }
  6561. break;
  6562. case "investigation":
  6563. _formdiv = new U.UF.UI.form(
  6564. "問卷調查",
  6565. $$("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 }), {
  6566. "id": "investigation",
  6567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6568. "onresize": function () { }
  6569. }, {
  6570. closecallback: function () { }
  6571. }, { "style": { "height": "36px" } }).form; //創建窗體
  6572. _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); } }
  6573. break;
  6574. case "mind":
  6575. _formdiv = new U.UF.UI.form(
  6576. "思維導圖",
  6577. $$("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"
  6578. "id": "mind",
  6579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6580. "onresize": function () { }
  6581. }, {
  6582. closecallback: function () { }
  6583. }, { "style": { "height": "36px" } }).form; //創建窗體
  6584. _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); } }
  6585. break;
  6586. case "doc":
  6587. // U.MD.D.I.isRoom();
  6588. _formdiv = new U.UF.UI.form(
  6589. "協同文檔",
  6590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6591. "id": "doc",
  6592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //創建窗體
  6597. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6598. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6599. })
  6600. _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); } }
  6601. break;
  6602. case "study":
  6603. _formdiv = new U.UF.UI.form(
  6604. "課程中心",
  6605. $$("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
  6606. "id": "study",
  6607. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6608. "onresize": function () { }
  6609. }, {
  6610. closecallback: function () { }
  6611. }, { "style": { "height": "36px" } }).form; //創建窗體
  6612. _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); } }
  6613. break;
  6614. case "mindNetwork": //好友打開
  6615. _formdiv = new U.UF.UI.form(
  6616. "思維網格",
  6617. $$("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 }), {
  6618. "id": "mindNetwork",
  6619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //創建窗體
  6624. _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); } }
  6625. break;
  6626. case "train": //好友打開
  6627. _formdiv = new U.UF.UI.form(
  6628. "訓練平臺",
  6629. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6630. "id": "train",
  6631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () { }
  6635. }, { "style": { "height": "36px" } }).form; //創建窗體
  6636. _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); } }
  6637. break;
  6638. case "sys":
  6639. _formdiv = new U.UF.UI.form(
  6640. "目標管理",
  6641. $$("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 }), {
  6642. "id": "sys",
  6643. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () { }
  6647. }, { "style": { "height": "36px" } }).form; //創建窗體
  6648. _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); } }
  6649. break;
  6650. case "courseDesign":
  6651. _formdiv = new U.UF.UI.form(
  6652. "項目設計",
  6653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6654. "id": "courseDesign",
  6655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //創建窗體
  6660. _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); } }
  6661. break;
  6662. }
  6663. } else if (!_type) {
  6664. switch (str) {
  6665. case "my":
  6666. _formdiv = new U.UF.UI.form(
  6667. "我的資料",
  6668. $$("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 }), {
  6669. "id": "my",
  6670. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6676. break;
  6677. }
  6678. }
  6679. switch (str) {
  6680. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6681. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6682. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6683. case "formulaEdi": //公式編輯
  6684. _formdiv = new U.UF.UI.form(
  6685. "公式編輯",
  6686. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6687. "id": "formulaEdi",
  6688. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //創建窗體
  6693. _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); } }
  6694. break;
  6695. case "molStr": //分子結構
  6696. _formdiv = new U.UF.UI.form(
  6697. "分子結構",
  6698. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6699. "id": "molStr",
  6700. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //創建窗體
  6705. _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); } }
  6706. break;
  6707. case "timeAxis": //時間軸
  6708. _formdiv = new U.UF.UI.form(
  6709. "時間軸",
  6710. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6711. "id": "timeAxis",
  6712. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //創建窗體
  6717. _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); } }
  6718. break;
  6719. case "AIprogram2": //AI體驗
  6720. _formdiv = new U.UF.UI.form(
  6721. "AI體驗",
  6722. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6723. "id": "AIprogram2",
  6724. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //創建窗體
  6729. _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); } }
  6730. break;
  6731. case "Pythonprogram": //python編程
  6732. _formdiv = new U.UF.UI.form(
  6733. "Python編程",
  6734. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6735. "id": "Pythonprogram",
  6736. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //創建窗體
  6741. _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); } }
  6742. break;
  6743. case "AIprogram": //ai編程
  6744. _formdiv = new U.UF.UI.form(
  6745. "AI編程平臺",
  6746. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6747. "id": "AIprogram",
  6748. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //創建窗體
  6753. _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); } }
  6754. break;
  6755. case "CocoPi": //CocoPi
  6756. _formdiv = new U.UF.UI.form(
  6757. "CocoPi",
  6758. $$("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" }), {
  6759. "id": "CocoPi",
  6760. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //創建窗體
  6765. _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); } }
  6766. break;
  6767. case "Wood": //Wood
  6768. _formdiv = new U.UF.UI.form(
  6769. "海龜編程",
  6770. $$("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/" }), {
  6771. "id": "Wood",
  6772. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, { "style": { "height": "36px" } }).form; //創建窗體
  6777. _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); } }
  6778. break;
  6779. case "car": //模擬駕駛
  6780. _formdiv = new U.UF.UI.form(
  6781. "模擬駕駛",
  6782. $$("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/" }), {
  6783. "id": "car",
  6784. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //創建窗體
  6789. _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); } }
  6790. break;
  6791. case "lineSearch": //路徑搜索
  6792. _formdiv = new U.UF.UI.form(
  6793. "路徑搜索",
  6794. $$("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/" }), {
  6795. "id": "lineSearch",
  6796. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //創建窗體
  6801. _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); } }
  6802. break;
  6803. case "deepLearning": //深度學習
  6804. _formdiv = new U.UF.UI.form(
  6805. "深度學習",
  6806. $$("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/#" }), {
  6807. "id": "deepLearning",
  6808. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6809. "onresize": function () { }
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //創建窗體
  6813. _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); } }
  6814. break;
  6815. case "allHistory": //深度學習
  6816. _formdiv = new U.UF.UI.form(
  6817. "全歷史",
  6818. $$("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/" }), {
  6819. "id": "allHistory",
  6820. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //創建窗體
  6825. _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); } }
  6826. break;
  6827. case "chatPDF": //ai編程
  6828. _formdiv = new U.UF.UI.form(
  6829. "chatPDF",
  6830. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6831. "id": "chatPDF",
  6832. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //創建窗體
  6837. _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); } }
  6838. break;
  6839. case "resources": //國家教育
  6840. _formdiv = new U.UF.UI.form(
  6841. "國家教育",
  6842. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6843. "id": "resources",
  6844. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //創建窗體
  6849. _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); } }
  6850. break;
  6851. case "codeEdit": //源碼編輯
  6852. _formdiv = new U.UF.UI.form(
  6853. "源碼編輯",
  6854. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6855. "id": "codeEdit",
  6856. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //創建窗體
  6861. _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); } }
  6862. break; //
  6863. case "MindMap": //MindMap
  6864. _formdiv = new U.UF.UI.form(
  6865. "MindMap",
  6866. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6867. "id": "MindMap",
  6868. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. closecallback: function () { }
  6872. }, { "style": { "height": "36px" } }).form; //創建窗體
  6873. _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); } }
  6874. break;
  6875. case "netWorkPanel": //netWorkPanel
  6876. _formdiv = new U.UF.UI.form(
  6877. "netWorkPanel",
  6878. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6879. "id": "netWorkPanel",
  6880. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6881. "onresize": function () { }
  6882. }, {
  6883. closecallback: function () { }
  6884. }, { "style": { "height": "36px" } }).form; //創建窗體
  6885. _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); } }
  6886. break;
  6887. case "GeoGebra": //GeoGebra
  6888. _formdiv = new U.UF.UI.form(
  6889. "GeoGebra",
  6890. $$("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" }), {
  6891. "id": "GeoGebra",
  6892. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6893. "onresize": function () { }
  6894. }, {
  6895. closecallback: function () { }
  6896. }, { "style": { "height": "36px" } }).form; //創建窗體
  6897. _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); } }
  6898. break;
  6899. case "translation": //翻譯
  6900. _formdiv = new U.UF.UI.form(
  6901. "翻譯",
  6902. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6903. "id": "translation",
  6904. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6905. "onresize": function () { }
  6906. }, {
  6907. closecallback: function () { }
  6908. }, { "style": { "height": "36px" } }).form; //創建窗體
  6909. _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); } }
  6910. break;
  6911. case "mohe": //魔盒
  6912. _formdiv = new U.UF.UI.form(
  6913. "魔盒識字",
  6914. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6915. "id": "mohe",
  6916. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6917. "onresize": function () { }
  6918. }, {
  6919. closecallback: function () { }
  6920. }, { "style": { "height": "36px" } }).form; //創建窗體
  6921. _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); } }
  6922. break;
  6923. case "24game": //24點
  6924. _formdiv = new U.UF.UI.form(
  6925. "24點",
  6926. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6927. "id": "24game",
  6928. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6929. "onresize": function () { }
  6930. }, {
  6931. closecallback: function () { }
  6932. }, { "style": { "height": "36px" } }).form; //創建窗體
  6933. _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); } }
  6934. break;
  6935. case "case":
  6936. _formdiv = new U.UF.UI.form(
  6937. "課程進展",
  6938. $$("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 }), {
  6939. "id": "case",
  6940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6941. "onresize": function () { }
  6942. }, {
  6943. closecallback: function () { }
  6944. }, { "style": { "height": "36px" } }).form; //創建窗體
  6945. _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); } }
  6946. break;
  6947. case "snf":
  6948. _formdiv = new U.UF.UI.form(
  6949. "賽諾梵",
  6950. $$("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" }), {
  6951. "id": "snf",
  6952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6953. "onresize": function () { }
  6954. }, {
  6955. closecallback: function () { }
  6956. }, { "style": { "height": "36px" } }).form; //創建窗體
  6957. _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); } }
  6958. break;
  6959. case "hanFamily":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6963. "id": "hanFamily",
  6964. "style": { "width": "90%", "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/hanFamily.png)" }, "name": "漢字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6970. break;
  6971. case "hanClassics":
  6972. _formdiv = new U.UF.UI.form(
  6973. "國學經典",
  6974. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6975. "id": "hanClassics",
  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/hanClassics.png)" }, "name": "國學經典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6982. break;
  6983. case "hanTraining":
  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://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6987. "id": "hanTraining",
  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/hanTraining.png)" }, "name": "筆畫訓練", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6994. break;
  6995. case "hanClass":
  6996. _formdiv = new U.UF.UI.form(
  6997. "書法課堂",
  6998. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6999. "id": "hanClass",
  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/hanClass.png)" }, "name": "書法課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7006. break;
  7007. case "han":
  7008. _formdiv = new U.UF.UI.form(
  7009. "漢字宮",
  7010. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7011. "id": "han",
  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/han.png)" }, "name": "漢字宮", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7018. break;
  7019. case "projectGM": //課程管理
  7020. _formdiv = new U.UF.UI.form(
  7021. "課程管理",
  7022. $$("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 }), {
  7023. "id": "projectGM",
  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/gm/courseMange.png)" }, "name": "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7030. break;
  7031. case "studyGM": //課程中心
  7032. _formdiv = new U.UF.UI.form(
  7033. "課程中心",
  7034. $$("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
  7035. "id": "study",
  7036. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7042. break;
  7043. // studentGM
  7044. case "studentGM": //學生管理
  7045. _formdiv = new U.UF.UI.form(
  7046. "學生管理",
  7047. $$("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 }), {
  7048. "id": "studentGM",
  7049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () { }
  7053. }, { "style": { "height": "36px" } }).form; //創建窗體
  7054. _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); } }
  7055. break;
  7056. case "evaluateGM": //學生評價
  7057. _formdiv = new U.UF.UI.form(
  7058. "學生評價",
  7059. $$("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 }), {
  7060. "id": "evaluateGM",
  7061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7062. "onresize": function () { }
  7063. }, {
  7064. closecallback: function () { }
  7065. }, { "style": { "height": "36px" } }).form; //創建窗體
  7066. _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); } }
  7067. break;
  7068. // classGM
  7069. case "classGM": //班級管理
  7070. _formdiv = new U.UF.UI.form(
  7071. "班級管理",
  7072. $$("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 }), {
  7073. "id": "classGM",
  7074. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7075. "onresize": function () { }
  7076. }, {
  7077. closecallback: function () { }
  7078. }, { "style": { "height": "36px" } }).form; //創建窗體
  7079. _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); } }
  7080. break;
  7081. // dataGM
  7082. case "dataGM":
  7083. _formdiv = new U.UF.UI.form(
  7084. "我的資料",
  7085. $$("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 }), {
  7086. "id": "dataGM",
  7087. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7088. "onresize": function () { }
  7089. }, {
  7090. closecallback: function () { }
  7091. }, { "style": { "height": "36px" } }).form; //創建窗體
  7092. _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); } }
  7093. break;
  7094. // caseGM
  7095. case "caseGM": //課程進展
  7096. _formdiv = new U.UF.UI.form(
  7097. "課程進展",
  7098. $$("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 }), {
  7099. "id": "caseGM",
  7100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7101. "onresize": function () { }
  7102. }, {
  7103. closecallback: function () { }
  7104. }, { "style": { "height": "36px" } }).form; //創建窗體
  7105. _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); } }
  7106. break;
  7107. // meterialGM
  7108. case "meterialGM": //素材庫
  7109. _formdiv = new U.UF.UI.form(
  7110. "素材庫",
  7111. $$("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 }), {
  7112. "id": "meterialGM",
  7113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7114. "onresize": function () { }
  7115. }, {
  7116. closecallback: function () { }
  7117. }, { "style": { "height": "36px" } }).form; //創建窗體
  7118. _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); } }
  7119. break;
  7120. // evaluateSGM
  7121. case "evaluateSGM": //我的評價
  7122. _formdiv = new U.UF.UI.form(
  7123. "我的評價",
  7124. $$("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 }), {
  7125. "id": "evaluateSGM",
  7126. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7127. "onresize": function () { }
  7128. }, {
  7129. closecallback: function () { }
  7130. }, { "style": { "height": "36px" } }).form; //創建窗體
  7131. _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); } }
  7132. break;
  7133. case "jupyter": //jupyter
  7134. _formdiv = new U.UF.UI.form(
  7135. "jupyter",
  7136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7137. "id": "jupyter",
  7138. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7139. "onresize": function () { }
  7140. }, {
  7141. closecallback: function () { }
  7142. }, { "style": { "height": "36px" } }).form; //創建窗體
  7143. _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); } }
  7144. break;
  7145. case "number": //數字實驗室
  7146. _formdiv = new U.UF.UI.form(
  7147. "數字實驗室",
  7148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7149. "id": "number",
  7150. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7151. "onresize": function () { }
  7152. }, {
  7153. closecallback: function () { }
  7154. }, { "style": { "height": "36px" } }).form; //創建窗體
  7155. _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); } }
  7156. break;
  7157. case "studentCourse": //項目管理 學生
  7158. _formdiv = new U.UF.UI.form(
  7159. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  7160. $$("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 }), {
  7161. "id": "studentCourse",
  7162. "style": { "width": "90%", "height": "90%", "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/studentCourse.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7168. break;
  7169. case "studentCourseS": //項目管理 老師
  7170. _formdiv = new U.UF.UI.form(
  7171. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  7172. $$("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 }), {
  7173. "id": "studentCourseS",
  7174. "style": { "width": "90%", "height": "90%", "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/studentCourse.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7180. break;
  7181. case "studentIndex": //項目中心
  7182. _formdiv = new U.UF.UI.form(
  7183. "項目中心",
  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": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  7185. "id": "studentIndex",
  7186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () { }
  7190. }, { "style": { "height": "36px" } }).form; //創建窗體
  7191. _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); } }
  7192. break;
  7193. case "CaseDesignS":
  7194. _formdiv = new U.UF.UI.form(
  7195. "項目進展",
  7196. $$("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 }), {
  7197. "id": "case",
  7198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, { "style": { "height": "36px" } }).form; //創建窗體
  7203. _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); } }
  7204. break;
  7205. case "tcStudent": //騰訊學生管理
  7206. _formdiv = new U.UF.UI.form(
  7207. "學生管理",
  7208. $$("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 }), {
  7209. "id": "tcStudent",
  7210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, { "style": { "height": "36px" } }).form; //創建窗體
  7215. _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); } }
  7216. break;
  7217. case "tcSchool": //騰訊學校管理
  7218. _formdiv = new U.UF.UI.form(
  7219. "學校管理",
  7220. $$("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 }), {
  7221. "id": "tcSchool",
  7222. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7223. "onresize": function () { }
  7224. }, {
  7225. closecallback: function () { }
  7226. }, { "style": { "height": "36px" } }).form; //創建窗體
  7227. _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); } }
  7228. break;
  7229. case "tcTeacher": //騰訊學校管理
  7230. _formdiv = new U.UF.UI.form(
  7231. "教師管理",
  7232. $$("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 }), {
  7233. "id": "tcTeacher",
  7234. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. closecallback: function () { }
  7238. }, { "style": { "height": "36px" } }).form; //創建窗體
  7239. _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); } }
  7240. break;
  7241. case "teacher":
  7242. _formdiv = new U.UF.UI.form(
  7243. "教師管理",
  7244. $$("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 }), {
  7245. "id": "teacher",
  7246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () { }
  7250. }, { "style": { "height": "36px" } }).form; //創建窗體
  7251. _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); } }
  7252. break;
  7253. case "tcData": //騰訊我的資料
  7254. _formdiv = new U.UF.UI.form(
  7255. "我的資料",
  7256. $$("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 }), {
  7257. "id": "tcData",
  7258. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7259. "onresize": function () { }
  7260. }, {
  7261. closecallback: function () { }
  7262. }, { "style": { "height": "36px" } }).form; //創建窗體
  7263. _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); } }
  7264. break;
  7265. case "tcNotice": //騰訊消息通知
  7266. _formdiv = new U.UF.UI.form(
  7267. "消息通知",
  7268. $$("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 }), {
  7269. "id": "tcNotice",
  7270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, { "style": { "height": "36px" } }).form; //創建窗體
  7275. _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); } }
  7276. break;
  7277. case "myReport": //好友打開
  7278. _formdiv = new U.UF.UI.form(
  7279. "我的評價",
  7280. $$("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 }), {
  7281. "id": "myReport",
  7282. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7283. "onresize": function () { }
  7284. }, {
  7285. closecallback: function () { }
  7286. }, { "style": { "height": "36px" } }).form; //創建窗體
  7287. _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); } }
  7288. break;
  7289. case "learnAna": //好友打開
  7290. _formdiv = new U.UF.UI.form(
  7291. "學習分析",
  7292. $$("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 }), {
  7293. "id": "learnAna",
  7294. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, { "style": { "height": "36px" } }).form; //創建窗體
  7299. _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); } }
  7300. break;
  7301. case "AIChat": //AI共創
  7302. _formdiv = new U.UF.UI.form(
  7303. "AI共創",
  7304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  7305. "id": "AIChat",
  7306. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7307. "onresize": function () { }
  7308. }, {
  7309. istop: true,
  7310. closecallback: function () { $("#aichat_icon").remove(); },
  7311. narrowcallback: function () {
  7312. if (!$("#aichat_icon")[0]) {
  7313. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7314. }
  7315. },
  7316. }, { "style": { "height": "36px" } }).form; //創建窗體
  7317. _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); } }
  7318. break;
  7319. case "ainew": //AI共創
  7320. _formdiv = new U.UF.UI.form(
  7321. "AI協同",
  7322. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  7323. "id": "ainew",
  7324. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7325. "onresize": function () { }
  7326. }, {
  7327. closecallback: function () { }
  7328. }, { "style": { "height": "36px" } }).form; //創建窗體
  7329. _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); } }
  7330. break;
  7331. case "gpt4": //gpt4
  7332. _formdiv = new U.UF.UI.form(
  7333. "AI助手",
  7334. $$("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 }), {
  7335. "id": "gpt4",
  7336. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7337. "onresize": function () { }
  7338. }, {
  7339. closecallback: function () { }
  7340. }, { "style": { "height": "36px" } }).form; //創建窗體
  7341. _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); } }
  7342. break;
  7343. case "aigpt": //gpt4
  7344. _formdiv = new U.UF.UI.form(
  7345. "AI助手+",
  7346. $$("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 }), {
  7347. "id": "aigpt",
  7348. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7349. "onresize": function () { }
  7350. }, {
  7351. closecallback: function () {
  7352. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7353. }
  7354. }, { "style": { "height": "36px" } }).form; //創建窗體
  7355. _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); } }
  7356. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7357. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7358. })
  7359. break;
  7360. case "aiKnowledge": //aiKnowledge
  7361. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  7362. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7363. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7364. }
  7365. _formdiv = new U.UF.UI.form(
  7366. "知識建構",
  7367. $$("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 }), {
  7368. "id": "aiKnowledge",
  7369. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7370. "onresize": function () { }
  7371. }, {
  7372. closecallback: function () { }
  7373. }, { "style": { "height": "36px" } }).form; //創建窗體
  7374. _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); } }
  7375. break;
  7376. case "futureClass": //AI共創
  7377. _formdiv = new U.UF.UI.form(
  7378. "協同建構",
  7379. $$("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
  7380. "id": "synergyCourse",
  7381. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7382. "onresize": function () { }
  7383. }, {
  7384. closecallback: function () {
  7385. $("iframe", _formdiv)[0].contentWindow.loginout();
  7386. }
  7387. }, { "style": { "height": "36px" } }).form; //創建窗體
  7388. _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); } }
  7389. break;
  7390. case "aiagent": //ai agent
  7391. _formdiv = new U.UF.UI.form(
  7392. "AI Agent",
  7393. $$("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" }), {
  7394. "id": "AIAgent",
  7395. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7396. "onresize": function () { }
  7397. }, {
  7398. closecallback: function () { }
  7399. }, { "style": { "height": "36px" } }).form; //創建窗體
  7400. _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); } }
  7401. break;
  7402. case "dataBoard": //數據看闆
  7403. _formdiv = new U.UF.UI.form(
  7404. "數據看闆",
  7405. $$("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 }), {
  7406. "id": "dataBoard",
  7407. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7408. "onresize": function () { }
  7409. }, {
  7410. closecallback: function () { }
  7411. }, { "style": { "height": "36px" } }).form; //創建窗體
  7412. _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); } }
  7413. break;
  7414. case "dataBoardSies": //數據融合
  7415. _formdiv = new U.UF.UI.form(
  7416. "數據融合",
  7417. $$("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 }), {
  7418. "id": "dataBoardSies",
  7419. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7420. "onresize": function () { }
  7421. }, {
  7422. closecallback: function () { }
  7423. }, { "style": { "height": "36px" } }).form; //創建窗體
  7424. _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); } }
  7425. break;
  7426. case "dataBoardNew": //數據看闆
  7427. _formdiv = new U.UF.UI.form(
  7428. "綜合看闆",
  7429. $$("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 }), {
  7430. "id": "dataBoardNew",
  7431. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7432. "onresize": function () { }
  7433. }, {
  7434. closecallback: function () { }
  7435. }, { "style": { "height": "36px" } }).form; //創建窗體
  7436. _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); } }
  7437. break;
  7438. case "dataBoardTest": //數據看闆
  7439. _formdiv = new U.UF.UI.form(
  7440. "評測看闆",
  7441. $$("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 }), {
  7442. "id": "dataBoardTest",
  7443. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7444. "onresize": function () { }
  7445. }, {
  7446. closecallback: function () { }
  7447. }, { "style": { "height": "36px" } }).form; //創建窗體
  7448. _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); } }
  7449. break;
  7450. case "AIAnalyse": //AI共創
  7451. _formdiv = new U.UF.UI.form(
  7452. "AI分析",
  7453. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  7454. "id": "AIAnalyse",
  7455. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7456. "onresize": function () { }
  7457. }, {
  7458. closecallback: function () { }
  7459. }, { "style": { "height": "36px" } }).form; //創建窗體
  7460. _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); } }
  7461. break;
  7462. case "studioCourse": //AI共創
  7463. _formdiv = new U.UF.UI.form(
  7464. "工作管理",
  7465. $$("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 }), {
  7466. "id": "studioCourse",
  7467. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7468. "onresize": function () { }
  7469. }, {
  7470. closecallback: function () { }
  7471. }, { "style": { "height": "36px" } }).form; //創建窗體
  7472. _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); } }
  7473. break;
  7474. case "studioIndex": //AI共創
  7475. _formdiv = new U.UF.UI.form(
  7476. "工作中心",
  7477. $$("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 }), {
  7478. "id": "studioIndex",
  7479. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7480. "onresize": function () { }
  7481. }, {
  7482. closecallback: function () { }
  7483. }, { "style": { "height": "36px" } }).form; //創建窗體
  7484. _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); } }
  7485. break;
  7486. case "source":
  7487. _formdiv = new U.UF.UI.form(
  7488. "教學資源",
  7489. $$("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 }), {
  7490. "id": "source",
  7491. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7492. "onresize": function () { }
  7493. }, {
  7494. closecallback: function () { }
  7495. }, { "style": { "height": "36px" } }).form; //創建窗體
  7496. _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); } }
  7497. break;
  7498. case "testTeacher":
  7499. _formdiv = new U.UF.UI.form(
  7500. "智能錶單",
  7501. $$("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 }), {
  7502. "id": "testTeacher",
  7503. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7504. "onresize": function () { }
  7505. }, {
  7506. closecallback: function () { }
  7507. }, { "style": { "height": "36px" } }).form; //創建窗體
  7508. _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); } }
  7509. break;
  7510. case "testStudent":
  7511. _formdiv = new U.UF.UI.form(
  7512. "教師中心",
  7513. $$("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 }), {
  7514. "id": "testStudent",
  7515. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7516. "onresize": function () { }
  7517. }, {
  7518. closecallback: function () { }
  7519. }, { "style": { "height": "36px" } }).form; //創建窗體
  7520. _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); } }
  7521. break;
  7522. case "testTeacherSies":
  7523. _formdiv = new U.UF.UI.form(
  7524. "教師管理",
  7525. $$("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 }), {
  7526. "id": "testTeacherSies",
  7527. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7528. "onresize": function () { }
  7529. }, {
  7530. closecallback: function () { }
  7531. }, { "style": { "height": "36px" } }).form; //創建窗體
  7532. _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); } }
  7533. break;
  7534. case "testStudentSies":
  7535. _formdiv = new U.UF.UI.form(
  7536. "教師中心",
  7537. $$("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 }), {
  7538. "id": "testStudentSies",
  7539. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7540. "onresize": function () { }
  7541. }, {
  7542. closecallback: function () { }
  7543. }, { "style": { "height": "36px" } }).form; //創建窗體
  7544. _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); } }
  7545. break;
  7546. case "ytpbl": //消息通知
  7547. _formdiv = new U.UF.UI.form(
  7548. "案例徵集",
  7549. $$("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 }), {
  7550. "id": "ytpbl",
  7551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7552. "onresize": function () { }
  7553. }, {
  7554. closecallback: function () { }
  7555. }, { "style": { "height": "36px" } }).form; //創建窗體
  7556. _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); } }
  7557. // 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");
  7558. break;
  7559. case "aiCourseResource": //人工智能窗體
  7560. _formdiv = new U.UF.UI.form(
  7561. false,
  7562. $$("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 }), {
  7563. "id": "aiCourseResource",
  7564. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7565. "onresize": function () { },
  7566. "isdrag": false,
  7567. }, {
  7568. closecallback: function () { }
  7569. }, { "style": { "height": "36px" } }).form; //創建窗體
  7570. _taskbar = ''
  7571. break;
  7572. case "szdjgCocooroboX": //圖形化編程
  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://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  7576. "id": "szdjgCocooroboX",
  7577. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7578. "onresize": function () { }
  7579. }, {
  7580. closecallback: function () { }
  7581. }, { "style": { "height": "36px" } }).form; //創建窗體
  7582. _taskbar = ''
  7583. break;
  7584. case "szdjgPython": //python編程
  7585. _formdiv = new U.UF.UI.form(
  7586. "Python編程",
  7587. $$("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" }), {
  7588. "id": "szdjgPython",
  7589. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7590. "onresize": function () { }
  7591. }, {
  7592. closecallback: function () { }
  7593. }, { "style": { "height": "36px" } }).form; //創建窗體
  7594. _taskbar = ''
  7595. break;
  7596. case "Record":
  7597. _formdiv = new U.UF.UI.form(
  7598. "觀察記錄",
  7599. $$("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 }), {
  7600. "id": "Record",
  7601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7602. "onresize": function () { }
  7603. }, {
  7604. closecallback: function () { }
  7605. }, { "style": { "height": "36px" } }).form; //創建窗體
  7606. _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); } }
  7607. break;
  7608. case "aigptCourse":
  7609. _formdiv = new U.UF.UI.form(
  7610. "AI智能體",
  7611. $$("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' }), {
  7612. "id": "aigptCourse",
  7613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7614. "onresize": function () { }
  7615. }, {
  7616. closecallback: function () { }
  7617. }, { "style": { "height": "36px" } }).form; //創建窗體
  7618. _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); } }
  7619. break;
  7620. case "classroomObservation":
  7621. _formdiv = new U.UF.UI.form(
  7622. "課堂觀察",
  7623. $$("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 }), {
  7624. "id": "classroomObservation",
  7625. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7626. "onresize": function () { }
  7627. }, {
  7628. closecallback: function () { }
  7629. }, { "style": { "height": "36px" } }).form; //創建窗體
  7630. _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); } }
  7631. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7632. break;
  7633. case "pblCourse":
  7634. _formdiv = new U.UF.UI.form(
  7635. "學生PBL",
  7636. $$("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 }), {
  7637. "id": "pblCourse",
  7638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7639. "onresize": function () { }
  7640. }, {
  7641. closecallback: function () { }
  7642. }, { "style": { "height": "36px" } }).form; //創建窗體
  7643. _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); } }
  7644. break;
  7645. case "appStore":
  7646. U.MD.D.addOp('','cocoflowOpen','')
  7647. _formdiv = new U.UF.UI.form(
  7648. "CocoFlow",
  7649. $$("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 }), {
  7650. "id": "appStore",
  7651. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, { "style": { "height": "36px" } }).form; //創建窗體
  7656. _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); } }
  7657. break;
  7658. case "sassPlatform":
  7659. _formdiv = new U.UF.UI.form(
  7660. "Sass通用後臺管理",
  7661. $$("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 }), {
  7662. "id": "sassPlatform",
  7663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7664. "onresize": function () { }
  7665. }, {
  7666. closecallback: function () { }
  7667. }, { "style": { "height": "36px" } }).form; //創建窗體
  7668. _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); } }
  7669. break;
  7670. case "EDU":
  7671. _formdiv = new U.UF.UI.form(
  7672. "EDU",
  7673. $$("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" }), {
  7674. "id": "EDU",
  7675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7676. "onresize": function () { }
  7677. }, {
  7678. closecallback: function () { }
  7679. }, { "style": { "height": "36px" } }).form; //創建窗體
  7680. _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); } }
  7681. break;
  7682. case "knowledge":
  7683. _formdiv = new U.UF.UI.form(
  7684. "知識庫",
  7685. $$("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 }), {
  7686. "id": "knowledge",
  7687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7688. "onresize": function () { }
  7689. }, {
  7690. closecallback: function () { }
  7691. }, { "style": { "height": "36px" } }).form; //創建窗體
  7692. _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); } }
  7693. break;
  7694. case "userExamine":
  7695. _formdiv = new U.UF.UI.form(
  7696. "賬號申請",
  7697. $$("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" }), {
  7698. "id": "userExamine",
  7699. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7700. "onresize": function () { }
  7701. }, {
  7702. closecallback: function () { }
  7703. }, { "style": { "height": "36px" } }).form; //創建窗體
  7704. break;
  7705. case "cocoflowDeskTop": //cocoflowDeskTop
  7706. _formdiv = new U.UF.UI.form(
  7707. false,
  7708. $$("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 }), {
  7709. "id": "cocoflowDeskTop",
  7710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7711. "onresize": function () { },
  7712. }, {
  7713. closecallback: function () { },
  7714. "isdrag": false,
  7715. }, { "style": { "height": "36px" } }).form; //創建窗體
  7716. _taskbar = ''
  7717. break;
  7718. case "liyuanLogin": //liyuanLogin
  7719. _formdiv = new U.UF.UI.form(
  7720. false,
  7721. $$("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 }), {
  7722. "id": "liyuanLogin",
  7723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7724. "onresize": function () { },
  7725. }, {
  7726. closecallback: function () { },
  7727. isdrag: false,
  7728. isstretching: false,
  7729. isenlarge: false,
  7730. isnarrow: false
  7731. }, { "style": { "height": "36px" } }).form; //創建窗體
  7732. _taskbar = ''
  7733. break;
  7734. case "updatePaDialog":
  7735. _formdiv = new U.UF.UI.form(
  7736. "密碼修改",
  7737. $$("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 }), {
  7738. "id": "updatePaDialog",
  7739. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7740. "onresize": function () { },
  7741. }, {
  7742. closecallback: function () { },
  7743. isclose: false,
  7744. isdrag: false,
  7745. isstretching: false,
  7746. isenlarge: false,
  7747. isnarrow: false
  7748. }, { "style": { "height": "36px" } }).form; //創建窗體
  7749. break;
  7750. }
  7751. //U.MD.D.I.openClick(str);
  7752. //如果有任務欄信息
  7753. if (_taskbar) {
  7754. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7755. }
  7756. if(iframeBool){
  7757. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7758. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7759. // console.log("iframe進入");
  7760. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7761. // };
  7762. setTimeout(() => {
  7763. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7764. }, 2000);
  7765. }
  7766. }
  7767. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7768. var _formdiv, //創建任務欄時同時彈出的窗體元素。
  7769. _userinfo = US.userInfo, //登錄用戶信息
  7770. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解構賦值獲取用戶信息
  7771. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定義
  7772. let iframeBool = true;
  7773. let queryString = ''
  7774. if(array && array.length){
  7775. const paramsMap = {
  7776. userid: _userid,
  7777. org: _org,
  7778. oid: _oid,
  7779. type: _type,
  7780. role: _role,
  7781. classId: _classId,
  7782. TscreenType: _TscreenType,
  7783. SscreenType: _SscreenType
  7784. };
  7785. const canshu = array
  7786. .filter(param => paramsMap[param] !== undefined)
  7787. .map(param => `${param}=${paramsMap[param]}`);
  7788. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查詢字符串
  7789. }
  7790. let _url = url + queryString
  7791. if(U.UF.UI.form.allForm[id]){
  7792. iframeBool = false
  7793. }
  7794. _formdiv = new U.UF.UI.form(
  7795. false,
  7796. $$("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 }),
  7797. {
  7798. "id": id,
  7799. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7800. "onresize": function () { },
  7801. },
  7802. {
  7803. closecallback: function () { },
  7804. isdrag: false,
  7805. isstretching: false,
  7806. isenlarge: false,
  7807. isnarrow: false
  7808. },
  7809. { "style": { "height": "36px" } },
  7810. undefined,
  7811. undefined,
  7812. dom
  7813. ).form
  7814. }
  7815. // U.MD.D.I.openClick = function(str){
  7816. // var click = '';
  7817. // switch(str){
  7818. // case 'friend':
  7819. // click = '我的好友';
  7820. // break;
  7821. // case 'domain':
  7822. // click = '域名管理';
  7823. // break;
  7824. // case 'disk':
  7825. // click = '我的雲盤';
  7826. // break;
  7827. // case 'word':
  7828. // click = 'Word';
  7829. // break;
  7830. // case 'excel':
  7831. // click = 'Execl';
  7832. // break;
  7833. // case 'txt':
  7834. // click = '文本文件';
  7835. // break;
  7836. // case 'lookupFriend':
  7837. // click = '查找好友';
  7838. // break;
  7839. // case 'ftp':
  7840. // click = 'FTP';
  7841. // break;
  7842. // case 'group':
  7843. // click = '群組';
  7844. // break;
  7845. // case 'set':
  7846. // click = '我的設置';
  7847. // break;
  7848. // case 'systemSet':
  7849. // click = '繫統設置';
  7850. // break;
  7851. // case 'boomYun':
  7852. // click = '互聯辦公';
  7853. // break;
  7854. // case 'xz':
  7855. // click = '雲端下載';
  7856. // break;
  7857. // case 'client':
  7858. // click = '有思瀏覽器';
  7859. // break;
  7860. // case 'backEndProgramming':
  7861. // click = '在線後臺編程';
  7862. // break;
  7863. // case 'frontEndProgramming':
  7864. // click = '在線前端編程';
  7865. // break;
  7866. // default: break;
  7867. // }
  7868. // if(U.MD.D.I.Ip && click){
  7869. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7870. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7871. // })
  7872. // }
  7873. // }
  7874. /**
  7875. *函數作用:ajax簡易函數,使用post格式
  7876. *@param url {data} 後臺地址
  7877. *@param data {data} 參數json
  7878. *@param fn {data} 回調函數
  7879. *
  7880. */
  7881. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7882. // var xhr = new XMLHttpRequest();
  7883. // xhr.open("GET",url,true);
  7884. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7885. // xhr.onreadystatechange = function(){
  7886. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7887. // fn.call(this,xhr.responseText);
  7888. // }
  7889. // };
  7890. // xhr.send();
  7891. // }
  7892. /*判斷是否是內網IP*/
  7893. // U.MD.D.I.isInnerIPFn = function(str){
  7894. // var curPageUrl = str;
  7895. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7896. // curPageUrl =curPageUrl.replace(reg1,'');
  7897. // // console.log('curPageUrl-1 '+curPageUrl);
  7898. // var reg2 = /\:+/g;//替換冒號為一點
  7899. // curPageUrl =curPageUrl.replace(reg2,'.');
  7900. // // console.log('curPageUrl-2 '+curPageUrl);
  7901. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7902. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7903. // if(curPageUrl[2] != '16'){
  7904. // return ipAddress;
  7905. // }else{
  7906. // return false;
  7907. // }
  7908. // }
  7909. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7910. // //compatibility for firefox and chrome
  7911. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7912. // var pc = new myPeerConnection({
  7913. // iceServers: []
  7914. // }),
  7915. // noop = function() {},
  7916. // localIPs = {},
  7917. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7918. // key;
  7919. // function iterateIP(ip) {
  7920. // if (!localIPs[ip]) onNewIP(ip);
  7921. // localIPs[ip] = true;
  7922. // }
  7923. // //create a bogus data channel
  7924. // pc.createDataChannel("");
  7925. // // create offer and set local description
  7926. // pc.createOffer().then(function(sdp) {
  7927. // sdp.sdp.split('\n').forEach(function(line) {
  7928. // if (line.indexOf('candidate') < 0) return;
  7929. // line.match(ipRegex).forEach(iterateIP);
  7930. // });
  7931. // pc.setLocalDescription(sdp, noop, noop);
  7932. // }).catch(function(reason) {
  7933. // // An error occurred, so handle the failure to connect
  7934. // });
  7935. // //sten for candidate events
  7936. // pc.onicecandidate = function(ice) {
  7937. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7938. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7939. // };
  7940. // }
  7941. // U.MD.D.I.getUserIpBool = function(callback){
  7942. // U.MD.D.I.getUserIP(function(ip){
  7943. // alert("Got IP! :" + ip);
  7944. // });
  7945. //}
  7946. //#endregion
  7947. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7948. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7949. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7950. _userinfo = US.userInfo, //登錄用戶信息
  7951. _userid = US.userInfo.userid //登錄用戶id
  7952. let _iframe;
  7953. let _cid = cid,
  7954. _stage = stage,
  7955. _task = task,
  7956. _tool = tool;
  7957. var _jie = $$("div", {
  7958. "style": {
  7959. "position": "absolute",
  7960. "bottom": "50px",
  7961. "right": "50px",
  7962. "zIndex": "9999",
  7963. "backgroundColor": "#2268bc",
  7964. "color": "#fff",
  7965. "padding": "12px 20px",
  7966. "cursor": "pointer",
  7967. "borderRadius": "4px",
  7968. },
  7969. "innerHTML": "提交作業"
  7970. })
  7971. let aTool = ''
  7972. let _loading = document.createElement('div')
  7973. _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;"
  7974. // _loading.id = "";
  7975. let _lchild = document.createElement('div')
  7976. let _limg = document.createElement('img')
  7977. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7978. _limg.style = "width: 26px;margin-right: 10px;"
  7979. _lchild.appendChild(_limg)
  7980. let _lspan = document.createElement('span')
  7981. _lspan.innerHTML = "上傳中..."
  7982. _lchild.appendChild(_lspan)
  7983. _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%);"
  7984. _loading.appendChild(_lchild)
  7985. var _box = $$('div', {
  7986. "style": {
  7987. "position": "relative",
  7988. "width": "100%",
  7989. "height": "100%",
  7990. },
  7991. })
  7992. _box.appendChild(_loading)
  7993. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7994. switch (str) {
  7995. case "whiteboard":
  7996. aTool = 1;
  7997. _iframe = $$("iframe", {
  7998. "frameborder": "no",
  7999. "border": "0",
  8000. "scrolling ": "no",
  8001. "style": {
  8002. "cssText": "border:0;width:100%;height:100%"
  8003. },
  8004. "src": "https://iwb.cocorobo.hk/"
  8005. })
  8006. _box.appendChild(_iframe);
  8007. _box.appendChild(_jie);
  8008. _formdiv = new U.UF.UI.form(
  8009. "電子白闆",
  8010. _box, {
  8011. "id": "whiteboard" + cid + stage + task + tool,
  8012. "style": {
  8013. "width": "90%",
  8014. "height": "90%",
  8015. "overflow": 'hidden'
  8016. },
  8017. "onresize": function () { }
  8018. }, {
  8019. closecallback: function () { }
  8020. }, {
  8021. "style": {
  8022. "height": "36px"
  8023. }
  8024. }).form; //創建窗體
  8025. _taskbar = {
  8026. "id": str + _formdiv.id,
  8027. "style": {
  8028. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8029. },
  8030. "name": "電子白闆",
  8031. "forms": _formdiv,
  8032. "click": function () {
  8033. U.MD.D.I.openApplication(str, obj, info);
  8034. }
  8035. }
  8036. break;
  8037. case "mind":
  8038. aTool = 3;
  8039. _iframe = $$("iframe", {
  8040. "frameborder": "no",
  8041. "border": "0",
  8042. "scrolling ": "no",
  8043. "style": {
  8044. "cssText": "border:0;width:100%;height:100%"
  8045. },
  8046. "src": "/kityminder-editor/dist/index.html"
  8047. })
  8048. _box.appendChild(_iframe);
  8049. _box.appendChild(_jie);
  8050. _formdiv = new U.UF.UI.form(
  8051. "思維導圖",
  8052. _box, { //"/jsmind/example/demo.html"
  8053. "id": "mind" + cid + stage + task + tool,
  8054. "style": {
  8055. "width": "90%",
  8056. "height": "90%",
  8057. "overflow": 'hidden'
  8058. },
  8059. "onresize": function () { }
  8060. }, {
  8061. closecallback: function () { }
  8062. }, {
  8063. "style": {
  8064. "height": "36px"
  8065. }
  8066. }).form; //創建窗體
  8067. _taskbar = {
  8068. "id": str + _formdiv.id,
  8069. "style": {
  8070. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8071. },
  8072. "name": "思維導圖",
  8073. "forms": _formdiv,
  8074. "click": function () {
  8075. U.MD.D.I.openApplication(str, obj, info);
  8076. }
  8077. }
  8078. break;
  8079. case "MindMap":
  8080. aTool = 3;
  8081. _iframe = $$("iframe", {
  8082. "frameborder": "no",
  8083. "border": "0",
  8084. "scrolling ": "no",
  8085. "style": {
  8086. "cssText": "border:0;width:100%;height:100%"
  8087. },
  8088. "src": "//cloud.cocorobo.hk/mind/"
  8089. })
  8090. _box.appendChild(_iframe);
  8091. _box.appendChild(_jie);
  8092. _formdiv = new U.UF.UI.form(
  8093. "思維導圖",
  8094. _box, { //"/jsmind/example/demo.html"
  8095. "id": "mind" + cid + stage + task + tool,
  8096. "style": {
  8097. "width": "90%",
  8098. "height": "90%",
  8099. "overflow": 'hidden'
  8100. },
  8101. "onresize": function () { }
  8102. }, {
  8103. closecallback: function () { }
  8104. }, {
  8105. "style": {
  8106. "height": "36px"
  8107. }
  8108. }).form; //創建窗體
  8109. _taskbar = {
  8110. "id": str + _formdiv.id,
  8111. "style": {
  8112. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8113. },
  8114. "name": "思維導圖",
  8115. "forms": _formdiv,
  8116. "click": function () {
  8117. U.MD.D.I.openApplication(str, obj, info);
  8118. }
  8119. }
  8120. break;
  8121. case "doc":
  8122. aTool = 6;
  8123. _iframe = $$("iframe", {
  8124. "frameborder": "no",
  8125. "border": "0",
  8126. "scrolling ": "no",
  8127. "style": {
  8128. "cssText": "border:0;width:100%;height:100%"
  8129. },
  8130. "src": "/Office/Word/WordEditArea.htm"
  8131. })
  8132. _box.appendChild(_iframe);
  8133. _box.appendChild(_jie);
  8134. _formdiv = new U.UF.UI.form(
  8135. "協同文檔",
  8136. _box, {
  8137. "id": "doc" + cid + stage + task + tool,
  8138. "style": {
  8139. "width": "90%",
  8140. "height": "90%",
  8141. "overflow": 'hidden'
  8142. },
  8143. "onresize": function () { }
  8144. }, {
  8145. closecallback: function () { }
  8146. }, {
  8147. "style": {
  8148. "height": "36px"
  8149. }
  8150. }).form; //創建窗體
  8151. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8152. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8153. })
  8154. _taskbar = {
  8155. "id": str + _formdiv.id,
  8156. "style": {
  8157. "backgroundImage": "url(/img/icon/doc.png)"
  8158. },
  8159. "name": "協同文檔",
  8160. "forms": _formdiv,
  8161. "click": function () {
  8162. U.MD.D.I.openApplication(str, obj, info);
  8163. }
  8164. }
  8165. break;
  8166. case "mindNetwork": //好友打開
  8167. aTool = 7;
  8168. _iframe = $$("iframe", {
  8169. "webkitallowfullscreen": "",
  8170. "mozallowfullscreen": "",
  8171. "allowfullscreen": "",
  8172. "frameborder": "no",
  8173. "border": "0",
  8174. "scrolling ": "no",
  8175. "style": {
  8176. "cssText": "border:0; width:100%; height:100%;"
  8177. },
  8178. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8179. })
  8180. _box.appendChild(_iframe);
  8181. _box.appendChild(_jie);
  8182. _formdiv = new U.UF.UI.form(
  8183. "思維網格",
  8184. _box, {
  8185. "id": "mindNetwork" + cid + stage + task + tool,
  8186. "style": {
  8187. "width": "90%",
  8188. "height": "90%",
  8189. "overflow": 'hidden'
  8190. },
  8191. "onresize": function () { }
  8192. }, {
  8193. closecallback: function () { }
  8194. }, {
  8195. "style": {
  8196. "height": "36px"
  8197. }
  8198. }).form; //創建窗體
  8199. _taskbar = {
  8200. "id": str + _formdiv.id,
  8201. "style": {
  8202. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8203. },
  8204. "name": "思維網格",
  8205. "forms": _formdiv,
  8206. "click": function () {
  8207. U.MD.D.I.openApplication(str, obj, info);
  8208. }
  8209. }
  8210. break;
  8211. case "courseDesign":
  8212. _iframe = $$("iframe", {
  8213. "webkitallowfullscreen": "",
  8214. "mozallowfullscreen": "",
  8215. "allowfullscreen": "",
  8216. "frameborder": "no",
  8217. "border": "0",
  8218. "scrolling ": "no",
  8219. "style": {
  8220. "cssText": "border:0; width:100%; height:100%;"
  8221. },
  8222. "src": "/course-design-vue"
  8223. })
  8224. _box.appendChild(_iframe);
  8225. _box.appendChild(_jie);
  8226. _formdiv = new U.UF.UI.form(
  8227. "項目設計",
  8228. _box, {
  8229. "id": "courseDesign" + cid + stage + task + tool,
  8230. "style": {
  8231. "width": "90%",
  8232. "height": "90%",
  8233. "overflow": 'hidden'
  8234. },
  8235. "onresize": function () { }
  8236. }, {
  8237. closecallback: function () { }
  8238. }, {
  8239. "style": {
  8240. "height": "36px"
  8241. }
  8242. }).form; //創建窗體
  8243. _taskbar = {
  8244. "id": str + _formdiv.id,
  8245. "style": {
  8246. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8247. },
  8248. "name": "項目設計",
  8249. "forms": _formdiv,
  8250. "click": function () {
  8251. U.MD.D.I.openApplication(str, obj, info);
  8252. }
  8253. }
  8254. break;
  8255. }
  8256. const script1 = document.createElement("script");
  8257. script1.type = "text/javascript";
  8258. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8259. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8260. const script2 = document.createElement("script");
  8261. script2.type = "text/javascript";
  8262. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8263. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8264. const script3 = document.createElement("script");
  8265. script3.type = "text/javascript";
  8266. script3.charset = "UTF-8";
  8267. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8268. const script4 = document.createElement("script");
  8269. script4.type = "text/javascript";
  8270. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8271. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8272. if (_iframe) {
  8273. if (str == 'doc') {
  8274. _iframe = _formdiv.querySelector('iframe')
  8275. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8276. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8277. _iframe.contentWindow.document.body.appendChild(script1);
  8278. _iframe.contentWindow.document.body.appendChild(script2);
  8279. // _iframe.contentWindow.document.body.appendChild(script3);
  8280. _iframe.contentWindow.document.body.appendChild(script4);
  8281. })
  8282. if (onloadListener) {
  8283. _iframe.contentDocument.location.reload()
  8284. } else {
  8285. _iframe.contentDocument.location.reload()
  8286. }
  8287. } else if (str == 'courseDesign') {
  8288. U.UF.DL.iframeLoad(_iframe, function () {
  8289. // _iframe.contentWindow.U.MD.O.W.load();
  8290. // _iframe.contentWindow.document.body.appendChild(script1);
  8291. _iframe.contentWindow.document.body.appendChild(script2);
  8292. _iframe.contentWindow.document.body.appendChild(script4);
  8293. })
  8294. } else if (str == 'mind') {
  8295. _iframe = _formdiv.querySelector('iframe')
  8296. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8297. //
  8298. _iframe.contentWindow.document.body.appendChild(script1);
  8299. _iframe.contentWindow.document.body.appendChild(script2);
  8300. _iframe.contentWindow.document.body.appendChild(script4);
  8301. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8302. })
  8303. if (onloadListener) {
  8304. _iframe.contentDocument.location.reload()
  8305. } else {
  8306. _iframe.contentDocument.location.reload()
  8307. }
  8308. } else if (str == 'whiteboard') {
  8309. _iframe = _formdiv.querySelector('iframe')
  8310. let onloadListener = _iframe.onload = () => {
  8311. _iframe.contentWindow.document.body.appendChild(script1);
  8312. _iframe.contentWindow.document.body.appendChild(script2);
  8313. _iframe.contentWindow.document.body.appendChild(script4);
  8314. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8315. };
  8316. // if (onloadListener) {
  8317. // try {
  8318. // _iframe.src += "?cocorobo="+new Date().getTime()
  8319. // _iframe.contentWindow.document.location.reload()
  8320. // } catch (error) {
  8321. // }
  8322. // } else {
  8323. // _iframe.contentDocument.location.reload()
  8324. // }
  8325. } else {
  8326. _iframe.onload = () => {
  8327. _iframe.contentWindow.document.body.appendChild(script1);
  8328. _iframe.contentWindow.document.body.appendChild(script2);
  8329. // _iframe.contentWindow.document.body.appendChild(script3);
  8330. _iframe.contentWindow.document.body.appendChild(script4);
  8331. };
  8332. }
  8333. _jie.onclick = async () => {
  8334. let text = ''
  8335. if (aTool == 1) {
  8336. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8337. } else if (aTool == 6) {
  8338. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8339. } else if (aTool == 3) {
  8340. text = await U.MD.D.I.getEditorContent(_iframe);
  8341. }
  8342. _loading.style.display = 'flex'
  8343. console.log(_loading);
  8344. var _ajs = _iframe.contentWindow.document.createElement("script");
  8345. _ajs.type = "text/javascript";
  8346. _ajs.innerHTML =
  8347. // 'console.log(' + _loading + ');\n' +
  8348. 'var _js = document.createElement("script");\n' +
  8349. '_js.type="text/javascript";\n' +
  8350. '_js.charset="UTF-8";\n' +
  8351. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8352. "_js.onload = function(){\n" +
  8353. ' var a = document.getElementsByTagName("img")\n' +
  8354. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8355. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8356. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8357. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8358. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8359. "beforeUpload_shishi(file," +
  8360. "'" +
  8361. _userid +
  8362. "'" +
  8363. ", " +
  8364. "'" +
  8365. _cid +
  8366. "'" +
  8367. ", " +
  8368. "'" +
  8369. _stage +
  8370. "'" +
  8371. ", " +
  8372. "'" +
  8373. _task +
  8374. "'" +
  8375. ", " +
  8376. "'" +
  8377. _tool +
  8378. "'" +
  8379. ", " +
  8380. "'" +
  8381. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8382. "'" +
  8383. ", " +
  8384. "'" +
  8385. aTool +
  8386. "'" +
  8387. ", " +
  8388. "`" +
  8389. text +
  8390. "`" +
  8391. ")\n" +
  8392. " });\n" +
  8393. "}\n" +
  8394. "document.head.appendChild(_js);\n";
  8395. _iframe.contentWindow.document.head.appendChild(_ajs);
  8396. }
  8397. }
  8398. //U.MD.D.I.openClick(str);
  8399. //如果有任務欄信息
  8400. // if (_taskbar) {
  8401. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8402. // }
  8403. }
  8404. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8405. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8406. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8407. _userinfo = US.userInfo, //登錄用戶信息
  8408. _userid = US.userInfo.userid //登錄用戶id
  8409. let _iframe;
  8410. let _cid = cid,
  8411. _stage = stage,
  8412. _task = task,
  8413. _tool = tool;
  8414. var _jie = $$("div", {
  8415. "style": {
  8416. "position": "absolute",
  8417. "bottom": "50px",
  8418. "right": "50px",
  8419. "zIndex": "9999",
  8420. "backgroundColor": "#2268bc",
  8421. "color": "#fff",
  8422. "padding": "12px 20px",
  8423. "cursor": "pointer",
  8424. "borderRadius": "4px",
  8425. },
  8426. "innerHTML": "提交作業"
  8427. })
  8428. let aTool = ''
  8429. let _loading = document.createElement('div')
  8430. _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;"
  8431. // _loading.id = "";
  8432. let _lchild = document.createElement('div')
  8433. let _limg = document.createElement('img')
  8434. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8435. _limg.style = "width: 26px;margin-right: 10px;"
  8436. _lchild.appendChild(_limg)
  8437. let _lspan = document.createElement('span')
  8438. _lspan.innerHTML = "上傳中..."
  8439. _lchild.appendChild(_lspan)
  8440. _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%);"
  8441. _loading.appendChild(_lchild)
  8442. let _box = $$('div', {
  8443. "style": {
  8444. "position": "relative",
  8445. "width": "100%",
  8446. "height": "100%",
  8447. },
  8448. })
  8449. _box.appendChild(_loading)
  8450. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8451. switch (str) {
  8452. case "whiteboard":
  8453. aTool = 1;
  8454. _iframe = $$("iframe", {
  8455. "frameborder": "no",
  8456. "border": "0",
  8457. "scrolling ": "no",
  8458. "style": {
  8459. "cssText": "border:0;width:100%;height:100%"
  8460. },
  8461. "src": "https://iwb.cocorobo.hk/"
  8462. })
  8463. _box.appendChild(_iframe);
  8464. _box.appendChild(_jie);
  8465. _formdiv = new U.UF.UI.form(
  8466. "電子白闆",
  8467. _box, {
  8468. "id": "whiteboard" + cid + stage + task + tool,
  8469. "style": {
  8470. "width": "90%",
  8471. "height": "90%",
  8472. "overflow": 'hidden'
  8473. },
  8474. "onresize": function () { }
  8475. }, {
  8476. closecallback: function () { }
  8477. }, {
  8478. "style": {
  8479. "height": "36px"
  8480. }
  8481. }).form; //創建窗體
  8482. _taskbar = {
  8483. "id": str + _formdiv.id,
  8484. "style": {
  8485. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8486. },
  8487. "name": "電子白闆",
  8488. "forms": _formdiv,
  8489. "click": function () {
  8490. U.MD.D.I.openApplication(str, obj, info);
  8491. }
  8492. }
  8493. break;
  8494. case "mind":
  8495. aTool = 3;
  8496. _iframe = $$("iframe", {
  8497. "frameborder": "no",
  8498. "border": "0",
  8499. "scrolling ": "no",
  8500. "style": {
  8501. "cssText": "border:0;width:100%;height:100%"
  8502. },
  8503. "src": "/kityminder-editor/dist/index.html"
  8504. })
  8505. _box.appendChild(_iframe);
  8506. _box.appendChild(_jie);
  8507. _formdiv = new U.UF.UI.form(
  8508. "思維導圖",
  8509. _box, { //"/jsmind/example/demo.html"
  8510. "id": "mind" + cid + stage + task + tool,
  8511. "style": {
  8512. "width": "90%",
  8513. "height": "90%",
  8514. "overflow": 'hidden'
  8515. },
  8516. "onresize": function () { }
  8517. }, {
  8518. closecallback: function () { }
  8519. }, {
  8520. "style": {
  8521. "height": "36px"
  8522. }
  8523. }).form; //創建窗體
  8524. _taskbar = {
  8525. "id": str + _formdiv.id,
  8526. "style": {
  8527. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8528. },
  8529. "name": "思維導圖",
  8530. "forms": _formdiv,
  8531. "click": function () {
  8532. U.MD.D.I.openApplication(str, obj, info);
  8533. }
  8534. }
  8535. break;
  8536. case "MindMap":
  8537. aTool = 3;
  8538. _iframe = $$("iframe", {
  8539. "frameborder": "no",
  8540. "border": "0",
  8541. "scrolling ": "no",
  8542. "style": {
  8543. "cssText": "border:0;width:100%;height:100%"
  8544. },
  8545. "src": "//cloud.cocorobo.hk/mind/"
  8546. })
  8547. _box.appendChild(_iframe);
  8548. _box.appendChild(_jie);
  8549. _formdiv = new U.UF.UI.form(
  8550. "思維導圖",
  8551. _box, { //"/jsmind/example/demo.html"
  8552. "id": "mind" + cid + stage + task + tool,
  8553. "style": {
  8554. "width": "90%",
  8555. "height": "90%",
  8556. "overflow": 'hidden'
  8557. },
  8558. "onresize": function () { }
  8559. }, {
  8560. closecallback: function () { }
  8561. }, {
  8562. "style": {
  8563. "height": "36px"
  8564. }
  8565. }).form; //創建窗體
  8566. _taskbar = {
  8567. "id": str + _formdiv.id,
  8568. "style": {
  8569. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8570. },
  8571. "name": "思維導圖",
  8572. "forms": _formdiv,
  8573. "click": function () {
  8574. U.MD.D.I.openApplication(str, obj, info);
  8575. }
  8576. }
  8577. break;
  8578. case "doc":
  8579. aTool = 6;
  8580. _iframe = $$("iframe", {
  8581. "frameborder": "no",
  8582. "border": "0",
  8583. "scrolling ": "no",
  8584. "style": {
  8585. "cssText": "border:0;width:100%;height:100%"
  8586. },
  8587. "src": "/Office/Word/WordEditArea.htm"
  8588. })
  8589. _box.appendChild(_iframe);
  8590. _box.appendChild(_jie);
  8591. _formdiv = new U.UF.UI.form(
  8592. "協同文檔",
  8593. _box, {
  8594. "id": "doc" + cid + stage + task + tool,
  8595. "style": {
  8596. "width": "90%",
  8597. "height": "90%",
  8598. "overflow": 'hidden'
  8599. },
  8600. "onresize": function () { }
  8601. }, {
  8602. closecallback: function () { }
  8603. }, {
  8604. "style": {
  8605. "height": "36px"
  8606. }
  8607. }).form; //創建窗體
  8608. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8609. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8610. })
  8611. _taskbar = {
  8612. "id": str + _formdiv.id,
  8613. "style": {
  8614. "backgroundImage": "url(/img/icon/doc.png)"
  8615. },
  8616. "name": "協同文檔",
  8617. "forms": _formdiv,
  8618. "click": function () {
  8619. U.MD.D.I.openApplication(str, obj, info);
  8620. }
  8621. }
  8622. break;
  8623. case "mindNetwork": //好友打開
  8624. aTool = 7;
  8625. _iframe = $$("iframe", {
  8626. "webkitallowfullscreen": "",
  8627. "mozallowfullscreen": "",
  8628. "allowfullscreen": "",
  8629. "frameborder": "no",
  8630. "border": "0",
  8631. "scrolling ": "no",
  8632. "style": {
  8633. "cssText": "border:0; width:100%; height:100%;"
  8634. },
  8635. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8636. })
  8637. _box.appendChild(_iframe);
  8638. _box.appendChild(_jie);
  8639. _formdiv = new U.UF.UI.form(
  8640. "思維網格",
  8641. _box, {
  8642. "id": "mindNetwork" + cid + stage + task + tool,
  8643. "style": {
  8644. "width": "90%",
  8645. "height": "90%",
  8646. "overflow": 'hidden'
  8647. },
  8648. "onresize": function () { }
  8649. }, {
  8650. closecallback: function () { }
  8651. }, {
  8652. "style": {
  8653. "height": "36px"
  8654. }
  8655. }).form; //創建窗體
  8656. _taskbar = {
  8657. "id": str + _formdiv.id,
  8658. "style": {
  8659. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8660. },
  8661. "name": "思維網格",
  8662. "forms": _formdiv,
  8663. "click": function () {
  8664. U.MD.D.I.openApplication(str, obj, info);
  8665. }
  8666. }
  8667. break;
  8668. case "courseDesign":
  8669. _iframe = $$("iframe", {
  8670. "webkitallowfullscreen": "",
  8671. "mozallowfullscreen": "",
  8672. "allowfullscreen": "",
  8673. "frameborder": "no",
  8674. "border": "0",
  8675. "scrolling ": "no",
  8676. "style": {
  8677. "cssText": "border:0; width:100%; height:100%;"
  8678. },
  8679. "src": "/course-design-vue"
  8680. })
  8681. _box.appendChild(_iframe);
  8682. _box.appendChild(_jie);
  8683. _formdiv = new U.UF.UI.form(
  8684. "項目設計",
  8685. _box, {
  8686. "id": "courseDesign" + cid + stage + task + tool,
  8687. "style": {
  8688. "width": "90%",
  8689. "height": "90%",
  8690. "overflow": 'hidden'
  8691. },
  8692. "onresize": function () { }
  8693. }, {
  8694. closecallback: function () { }
  8695. }, {
  8696. "style": {
  8697. "height": "36px"
  8698. }
  8699. }).form; //創建窗體
  8700. _taskbar = {
  8701. "id": str + _formdiv.id,
  8702. "style": {
  8703. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8704. },
  8705. "name": "項目設計",
  8706. "forms": _formdiv,
  8707. "click": function () {
  8708. U.MD.D.I.openApplication(str, obj, info);
  8709. }
  8710. }
  8711. break;
  8712. }
  8713. const script1 = document.createElement("script");
  8714. script1.type = "text/javascript";
  8715. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8716. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8717. const script2 = document.createElement("script");
  8718. script2.type = "text/javascript";
  8719. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8720. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8721. const script3 = document.createElement("script");
  8722. script3.type = "text/javascript";
  8723. script3.charset = "UTF-8";
  8724. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8725. const script4 = document.createElement("script");
  8726. script4.type = "text/javascript";
  8727. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8728. script4.src = window.origin + "/js/Common/jietu2E.js";
  8729. if (_iframe) {
  8730. if (str == 'doc') {
  8731. _iframe = _formdiv.querySelector('iframe')
  8732. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8733. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8734. _iframe.contentWindow.document.body.appendChild(script1);
  8735. _iframe.contentWindow.document.body.appendChild(script2);
  8736. // _iframe.contentWindow.document.body.appendChild(script3);
  8737. _iframe.contentWindow.document.body.appendChild(script4);
  8738. })
  8739. if (onloadListener) {
  8740. _iframe.contentDocument.location.reload()
  8741. } else {
  8742. _iframe.contentDocument.location.reload()
  8743. }
  8744. } else if (str == 'courseDesign') {
  8745. U.UF.DL.iframeLoad(_iframe, function () {
  8746. // _iframe.contentWindow.U.MD.O.W.load();
  8747. // _iframe.contentWindow.document.body.appendChild(script1);
  8748. _iframe.contentWindow.document.body.appendChild(script2);
  8749. _iframe.contentWindow.document.body.appendChild(script4);
  8750. })
  8751. } else if (str == 'mind') {
  8752. _iframe = _formdiv.querySelector('iframe')
  8753. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8754. //
  8755. _iframe.contentWindow.document.body.appendChild(script1);
  8756. _iframe.contentWindow.document.body.appendChild(script2);
  8757. _iframe.contentWindow.document.body.appendChild(script4);
  8758. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8759. })
  8760. if (onloadListener) {
  8761. _iframe.contentDocument.location.reload()
  8762. } else {
  8763. _iframe.contentDocument.location.reload()
  8764. }
  8765. } else if (str == 'whiteboard') {
  8766. _iframe = _formdiv.querySelector('iframe')
  8767. let onloadListener = _iframe.onload = () => {
  8768. _iframe.contentWindow.document.body.appendChild(script1);
  8769. _iframe.contentWindow.document.body.appendChild(script2);
  8770. _iframe.contentWindow.document.body.appendChild(script4);
  8771. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8772. };
  8773. // if (onloadListener) {
  8774. // try {
  8775. // _iframe.src += "?cocorobo="+new Date().getTime()
  8776. // _iframe.contentWindow.document.location.reload()
  8777. // } catch (error) {
  8778. // }
  8779. // } else {
  8780. // _iframe.contentDocument.location.reload()
  8781. // }
  8782. } else {
  8783. _iframe.onload = () => {
  8784. _iframe.contentWindow.document.body.appendChild(script1);
  8785. _iframe.contentWindow.document.body.appendChild(script2);
  8786. // _iframe.contentWindow.document.body.appendChild(script3);
  8787. _iframe.contentWindow.document.body.appendChild(script4);
  8788. };
  8789. }
  8790. _jie.onclick = async () => {
  8791. let text = ''
  8792. if (aTool == 1) {
  8793. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8794. } else if (aTool == 6) {
  8795. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8796. } else if (aTool == 3) {
  8797. text = await U.MD.D.I.getEditorContent(_iframe);
  8798. }
  8799. _loading.style.display = 'flex'
  8800. console.log(_loading);
  8801. var _ajs = _iframe.contentWindow.document.createElement("script");
  8802. _ajs.type = "text/javascript";
  8803. _ajs.innerHTML =
  8804. // 'console.log(' + _loading + ');\n' +
  8805. 'var _js = document.createElement("script");\n' +
  8806. '_js.type="text/javascript";\n' +
  8807. '_js.charset="UTF-8";\n' +
  8808. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8809. "_js.onload = function(){\n" +
  8810. ' var a = document.getElementsByTagName("img")\n' +
  8811. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8812. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8813. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8814. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8815. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8816. "beforeUpload_shishi(file," +
  8817. "'" +
  8818. _userid +
  8819. "'" +
  8820. ", " +
  8821. "'" +
  8822. _cid +
  8823. "'" +
  8824. ", " +
  8825. "'" +
  8826. _stage +
  8827. "'" +
  8828. ", " +
  8829. "'" +
  8830. _task +
  8831. "'" +
  8832. ", " +
  8833. "'" +
  8834. _tool +
  8835. "'" +
  8836. ", " +
  8837. "'" +
  8838. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8839. "'" +
  8840. ", " +
  8841. "'" +
  8842. aTool +
  8843. "'" +
  8844. ", " +
  8845. "`" +
  8846. text +
  8847. "`" +
  8848. ")\n" +
  8849. " });\n" +
  8850. "}\n" +
  8851. "document.head.appendChild(_js);\n";
  8852. _iframe.contentWindow.document.head.appendChild(_ajs);
  8853. }
  8854. }
  8855. //U.MD.D.I.openClick(str);
  8856. //如果有任務欄信息
  8857. // if (_taskbar) {
  8858. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8859. // }
  8860. }
  8861. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8862. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8863. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8864. _userid = student.userid, //登錄用戶id
  8865. _username = student.student //用戶名字
  8866. let _iframe;
  8867. let _cid = cid,
  8868. _stage = stage,
  8869. _task = task,
  8870. _tool = tool;
  8871. var _jie = $$("div", {
  8872. "style": {
  8873. "position": "absolute",
  8874. "bottom": "50px",
  8875. "right": "50px",
  8876. "zIndex": "9999",
  8877. "backgroundColor": "#2268bc",
  8878. "color": "#fff",
  8879. "padding": "12px 20px",
  8880. "cursor": "pointer",
  8881. "borderRadius": "4px",
  8882. },
  8883. "innerHTML": "提交作業"
  8884. })
  8885. let aTool = ''
  8886. let _loading = document.createElement('div')
  8887. _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;"
  8888. // _loading.id = "";
  8889. let _lchild = document.createElement('div')
  8890. let _limg = document.createElement('img')
  8891. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8892. _limg.style = "width: 26px;margin-right: 10px;"
  8893. _lchild.appendChild(_limg)
  8894. let _lspan = document.createElement('span')
  8895. _lspan.innerHTML = "上傳中..."
  8896. _lchild.appendChild(_lspan)
  8897. _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%);"
  8898. _loading.appendChild(_lchild)
  8899. var _box = $$('div', {
  8900. "style": {
  8901. "position": "relative",
  8902. "width": "100%",
  8903. "height": "100%",
  8904. },
  8905. })
  8906. _box.appendChild(_loading)
  8907. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8908. switch (str) {
  8909. case "whiteboard":
  8910. aTool = 1;
  8911. _iframe = $$("iframe", {
  8912. "frameborder": "no",
  8913. "border": "0",
  8914. "scrolling ": "no",
  8915. "style": {
  8916. "cssText": "border:0;width:100%;height:100%"
  8917. },
  8918. "src": "https://iwb.cocorobo.hk/"
  8919. })
  8920. _box.appendChild(_iframe);
  8921. _box.appendChild(_jie);
  8922. _formdiv = new U.UF.UI.form(
  8923. "電子白闆-" + _username,
  8924. _box, {
  8925. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8926. "style": {
  8927. "width": "90%",
  8928. "height": "90%",
  8929. "overflow": 'hidden'
  8930. },
  8931. "onresize": function () { }
  8932. }, {
  8933. closecallback: function () { }
  8934. }, {
  8935. "style": {
  8936. "height": "36px"
  8937. }
  8938. }).form; //創建窗體
  8939. _taskbar = {
  8940. "id": str + _formdiv.id,
  8941. "style": {
  8942. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8943. },
  8944. "name": "電子白闆",
  8945. "forms": _formdiv,
  8946. "click": function () {
  8947. U.MD.D.I.openApplication(str, obj, info);
  8948. }
  8949. }
  8950. break;
  8951. case "mind":
  8952. aTool = 3;
  8953. _iframe = $$("iframe", {
  8954. "frameborder": "no",
  8955. "border": "0",
  8956. "scrolling ": "no",
  8957. "style": {
  8958. "cssText": "border:0;width:100%;height:100%"
  8959. },
  8960. "src": "/kityminder-editor/dist/index.html"
  8961. })
  8962. _box.appendChild(_iframe);
  8963. _box.appendChild(_jie);
  8964. _formdiv = new U.UF.UI.form(
  8965. "思維導圖-" + _username,
  8966. _box, { //"/jsmind/example/demo.html"
  8967. "id": "mind" + cid + stage + task + tool + _userid,
  8968. "style": {
  8969. "width": "90%",
  8970. "height": "90%",
  8971. "overflow": 'hidden'
  8972. },
  8973. "onresize": function () { }
  8974. }, {
  8975. closecallback: function () { }
  8976. }, {
  8977. "style": {
  8978. "height": "36px"
  8979. }
  8980. }).form; //創建窗體
  8981. _taskbar = {
  8982. "id": str + _formdiv.id,
  8983. "style": {
  8984. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8985. },
  8986. "name": "思維導圖",
  8987. "forms": _formdiv,
  8988. "click": function () {
  8989. U.MD.D.I.openApplication(str, obj, info);
  8990. }
  8991. }
  8992. break;
  8993. case "MindMap":
  8994. aTool = 3;
  8995. _iframe = $$("iframe", {
  8996. "frameborder": "no",
  8997. "border": "0",
  8998. "scrolling ": "no",
  8999. "style": {
  9000. "cssText": "border:0;width:100%;height:100%"
  9001. },
  9002. "src": "//cloud.cocorobo.hk/mind/"
  9003. })
  9004. _box.appendChild(_iframe);
  9005. _box.appendChild(_jie);
  9006. _formdiv = new U.UF.UI.form(
  9007. "思維導圖-" + _username,
  9008. _box, { //"/jsmind/example/demo.html"
  9009. "id": "mind" + cid + stage + task + tool + _userid,
  9010. "style": {
  9011. "width": "90%",
  9012. "height": "90%",
  9013. "overflow": 'hidden'
  9014. },
  9015. "onresize": function () { }
  9016. }, {
  9017. closecallback: function () { }
  9018. }, {
  9019. "style": {
  9020. "height": "36px"
  9021. }
  9022. }).form; //創建窗體
  9023. _taskbar = {
  9024. "id": str + _formdiv.id,
  9025. "style": {
  9026. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9027. },
  9028. "name": "思維導圖",
  9029. "forms": _formdiv,
  9030. "click": function () {
  9031. U.MD.D.I.openApplication(str, obj, info);
  9032. }
  9033. }
  9034. break;
  9035. case "doc":
  9036. aTool = 6;
  9037. _iframe = $$("iframe", {
  9038. "frameborder": "no",
  9039. "border": "0",
  9040. "scrolling ": "no",
  9041. "style": {
  9042. "cssText": "border:0;width:100%;height:100%"
  9043. },
  9044. "src": "/Office/Word/WordEditArea.htm"
  9045. })
  9046. _box.appendChild(_iframe);
  9047. _box.appendChild(_jie);
  9048. _formdiv = new U.UF.UI.form(
  9049. "協同文檔-" + _username,
  9050. _box, {
  9051. "id": "doc" + cid + stage + task + tool + _userid,
  9052. "style": {
  9053. "width": "90%",
  9054. "height": "90%",
  9055. "overflow": 'hidden'
  9056. },
  9057. "onresize": function () { }
  9058. }, {
  9059. closecallback: function () { }
  9060. }, {
  9061. "style": {
  9062. "height": "36px"
  9063. }
  9064. }).form; //創建窗體
  9065. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9066. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9067. })
  9068. _taskbar = {
  9069. "id": str + _formdiv.id,
  9070. "style": {
  9071. "backgroundImage": "url(/img/icon/doc.png)"
  9072. },
  9073. "name": "協同文檔",
  9074. "forms": _formdiv,
  9075. "click": function () {
  9076. U.MD.D.I.openApplication(str, obj, info);
  9077. }
  9078. }
  9079. break;
  9080. case "mindNetwork": //好友打開
  9081. aTool = 7;
  9082. _iframe = $$("iframe", {
  9083. "webkitallowfullscreen": "",
  9084. "mozallowfullscreen": "",
  9085. "allowfullscreen": "",
  9086. "frameborder": "no",
  9087. "border": "0",
  9088. "scrolling ": "no",
  9089. "style": {
  9090. "cssText": "border:0; width:100%; height:100%;"
  9091. },
  9092. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9093. })
  9094. _box.appendChild(_iframe);
  9095. _box.appendChild(_jie);
  9096. _formdiv = new U.UF.UI.form(
  9097. "思維網格-" + _username,
  9098. _box, {
  9099. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9100. "style": {
  9101. "width": "90%",
  9102. "height": "90%",
  9103. "overflow": 'hidden'
  9104. },
  9105. "onresize": function () { }
  9106. }, {
  9107. closecallback: function () { }
  9108. }, {
  9109. "style": {
  9110. "height": "36px"
  9111. }
  9112. }).form; //創建窗體
  9113. _taskbar = {
  9114. "id": str + _formdiv.id,
  9115. "style": {
  9116. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9117. },
  9118. "name": "思維網格",
  9119. "forms": _formdiv,
  9120. "click": function () {
  9121. U.MD.D.I.openApplication(str, obj, info);
  9122. }
  9123. }
  9124. break;
  9125. case "courseDesign":
  9126. _iframe = $$("iframe", {
  9127. "webkitallowfullscreen": "",
  9128. "mozallowfullscreen": "",
  9129. "allowfullscreen": "",
  9130. "frameborder": "no",
  9131. "border": "0",
  9132. "scrolling ": "no",
  9133. "style": {
  9134. "cssText": "border:0; width:100%; height:100%;"
  9135. },
  9136. "src": "/course-design-vue"
  9137. })
  9138. _box.appendChild(_iframe);
  9139. _box.appendChild(_jie);
  9140. _formdiv = new U.UF.UI.form(
  9141. "項目設計-" + _username,
  9142. _box, {
  9143. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9144. "style": {
  9145. "width": "90%",
  9146. "height": "90%",
  9147. "overflow": 'hidden'
  9148. },
  9149. "onresize": function () { }
  9150. }, {
  9151. closecallback: function () { }
  9152. }, {
  9153. "style": {
  9154. "height": "36px"
  9155. }
  9156. }).form; //創建窗體
  9157. _taskbar = {
  9158. "id": str + _formdiv.id,
  9159. "style": {
  9160. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9161. },
  9162. "name": "項目設計",
  9163. "forms": _formdiv,
  9164. "click": function () {
  9165. U.MD.D.I.openApplication(str, obj, info);
  9166. }
  9167. }
  9168. break;
  9169. }
  9170. const script1 = document.createElement("script");
  9171. script1.type = "text/javascript";
  9172. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9173. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9174. const script2 = document.createElement("script");
  9175. script2.type = "text/javascript";
  9176. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9177. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9178. const script3 = document.createElement("script");
  9179. script3.type = "text/javascript";
  9180. script3.charset = "UTF-8";
  9181. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9182. const script4 = document.createElement("script");
  9183. script4.type = "text/javascript";
  9184. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9185. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  9186. if (_iframe) {
  9187. if (str == 'doc') {
  9188. _iframe = _formdiv.querySelector('iframe')
  9189. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9190. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9191. _iframe.contentWindow.document.body.appendChild(script1);
  9192. _iframe.contentWindow.document.body.appendChild(script2);
  9193. // _iframe.contentWindow.document.body.appendChild(script3);
  9194. _iframe.contentWindow.document.body.appendChild(script4);
  9195. })
  9196. if (onloadListener) {
  9197. _iframe.contentDocument.location.reload()
  9198. } else {
  9199. _iframe.contentDocument.location.reload()
  9200. }
  9201. } else if (str == 'courseDesign') {
  9202. U.UF.DL.iframeLoad(_iframe, function () {
  9203. // _iframe.contentWindow.U.MD.O.W.load();
  9204. // _iframe.contentWindow.document.body.appendChild(script1);
  9205. _iframe.contentWindow.document.body.appendChild(script2);
  9206. _iframe.contentWindow.document.body.appendChild(script4);
  9207. })
  9208. } else if (str == 'mind') {
  9209. _iframe = _formdiv.querySelector('iframe')
  9210. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9211. //
  9212. _iframe.contentWindow.document.body.appendChild(script1);
  9213. _iframe.contentWindow.document.body.appendChild(script2);
  9214. _iframe.contentWindow.document.body.appendChild(script4);
  9215. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9216. })
  9217. if (onloadListener) {
  9218. _iframe.contentDocument.location.reload()
  9219. } else {
  9220. _iframe.contentDocument.location.reload()
  9221. }
  9222. } else if (str == 'whiteboard') {
  9223. _iframe = _formdiv.querySelector('iframe')
  9224. let onloadListener = _iframe.onload = () => {
  9225. _iframe.contentWindow.document.body.appendChild(script1);
  9226. _iframe.contentWindow.document.body.appendChild(script2);
  9227. _iframe.contentWindow.document.body.appendChild(script4);
  9228. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9229. };
  9230. // if (onloadListener) {
  9231. // try {
  9232. // _iframe.src += "?cocorobo="+new Date().getTime()
  9233. // _iframe.contentWindow.document.location.reload()
  9234. // } catch (error) {
  9235. // }
  9236. // } else {
  9237. // _iframe.contentDocument.location.reload()
  9238. // }
  9239. } else {
  9240. _iframe.onload = () => {
  9241. _iframe.contentWindow.document.body.appendChild(script1);
  9242. _iframe.contentWindow.document.body.appendChild(script2);
  9243. // _iframe.contentWindow.document.body.appendChild(script3);
  9244. _iframe.contentWindow.document.body.appendChild(script4);
  9245. };
  9246. }
  9247. _jie.onclick = async () => {
  9248. let text = ''
  9249. if (aTool == 1) {
  9250. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9251. } else if (aTool == 6) {
  9252. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9253. } else if (aTool == 3) {
  9254. text = await U.MD.D.I.getEditorContent(_iframe);
  9255. }
  9256. _loading.style.display = 'flex'
  9257. console.log(_loading);
  9258. var _ajs = _iframe.contentWindow.document.createElement("script");
  9259. _ajs.type = "text/javascript";
  9260. _ajs.innerHTML =
  9261. // 'console.log(' + _loading + ');\n' +
  9262. 'var _js = document.createElement("script");\n' +
  9263. '_js.type="text/javascript";\n' +
  9264. '_js.charset="UTF-8";\n' +
  9265. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9266. "_js.onload = function(){\n" +
  9267. ' var a = document.getElementsByTagName("img")\n' +
  9268. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9269. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9270. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9271. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9272. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9273. "beforeUpload_shishi(file," +
  9274. "'" +
  9275. _userid +
  9276. "'" +
  9277. ", " +
  9278. "'" +
  9279. _cid +
  9280. "'" +
  9281. ", " +
  9282. "'" +
  9283. _stage +
  9284. "'" +
  9285. ", " +
  9286. "'" +
  9287. _task +
  9288. "'" +
  9289. ", " +
  9290. "'" +
  9291. _tool +
  9292. "'" +
  9293. ", " +
  9294. "'" +
  9295. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9296. "'" +
  9297. ", " +
  9298. "'" +
  9299. aTool +
  9300. "'" +
  9301. ", " +
  9302. "`" +
  9303. text +
  9304. "`" +
  9305. ")\n" +
  9306. " });\n" +
  9307. "}\n" +
  9308. "document.head.appendChild(_js);\n";
  9309. _iframe.contentWindow.document.head.appendChild(_ajs);
  9310. }
  9311. }
  9312. }
  9313. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9314. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9315. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9316. _userid = student.userid, //登錄用戶id
  9317. _username = student.student //用戶名字
  9318. let _iframe;
  9319. let _cid = cid,
  9320. _stage = stage,
  9321. _task = task,
  9322. _tool = tool;
  9323. var _jie = $$("div", {
  9324. "style": {
  9325. "position": "absolute",
  9326. "bottom": "50px",
  9327. "right": "50px",
  9328. "zIndex": "9999",
  9329. "backgroundColor": "#2268bc",
  9330. "color": "#fff",
  9331. "padding": "12px 20px",
  9332. "cursor": "pointer",
  9333. "borderRadius": "4px",
  9334. },
  9335. "innerHTML": "提交作業"
  9336. })
  9337. let aTool = ''
  9338. let _loading = document.createElement('div')
  9339. _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;"
  9340. // _loading.id = "";
  9341. let _lchild = document.createElement('div')
  9342. let _limg = document.createElement('img')
  9343. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9344. _limg.style = "width: 26px;margin-right: 10px;"
  9345. _lchild.appendChild(_limg)
  9346. let _lspan = document.createElement('span')
  9347. _lspan.innerHTML = "上傳中..."
  9348. _lchild.appendChild(_lspan)
  9349. _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%);"
  9350. _loading.appendChild(_lchild)
  9351. var _box = $$('div', {
  9352. "style": {
  9353. "position": "relative",
  9354. "width": "100%",
  9355. "height": "100%",
  9356. },
  9357. })
  9358. _box.appendChild(_loading)
  9359. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9360. switch (str) {
  9361. case "whiteboard":
  9362. aTool = 1;
  9363. _iframe = $$("iframe", {
  9364. "frameborder": "no",
  9365. "border": "0",
  9366. "scrolling ": "no",
  9367. "style": {
  9368. "cssText": "border:0;width:100%;height:100%"
  9369. },
  9370. "src": "https://iwb.cocorobo.hk/"
  9371. })
  9372. _box.appendChild(_iframe);
  9373. _box.appendChild(_jie);
  9374. _formdiv = new U.UF.UI.form(
  9375. "電子白闆-" + _username,
  9376. _box, {
  9377. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9378. "style": {
  9379. "width": "90%",
  9380. "height": "90%",
  9381. "overflow": 'hidden'
  9382. },
  9383. "onresize": function () { }
  9384. }, {
  9385. closecallback: function () { }
  9386. }, {
  9387. "style": {
  9388. "height": "36px"
  9389. }
  9390. }).form; //創建窗體
  9391. _taskbar = {
  9392. "id": str + _formdiv.id,
  9393. "style": {
  9394. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9395. },
  9396. "name": "電子白闆",
  9397. "forms": _formdiv,
  9398. "click": function () {
  9399. U.MD.D.I.openApplication(str, obj, info);
  9400. }
  9401. }
  9402. break;
  9403. case "mind":
  9404. aTool = 3;
  9405. _iframe = $$("iframe", {
  9406. "frameborder": "no",
  9407. "border": "0",
  9408. "scrolling ": "no",
  9409. "style": {
  9410. "cssText": "border:0;width:100%;height:100%"
  9411. },
  9412. "src": "/kityminder-editor/dist/index.html"
  9413. })
  9414. _box.appendChild(_iframe);
  9415. _box.appendChild(_jie);
  9416. _formdiv = new U.UF.UI.form(
  9417. "思維導圖-" + _username,
  9418. _box, { //"/jsmind/example/demo.html"
  9419. "id": "mind" + cid + stage + task + tool + _userid,
  9420. "style": {
  9421. "width": "90%",
  9422. "height": "90%",
  9423. "overflow": 'hidden'
  9424. },
  9425. "onresize": function () { }
  9426. }, {
  9427. closecallback: function () { }
  9428. }, {
  9429. "style": {
  9430. "height": "36px"
  9431. }
  9432. }).form; //創建窗體
  9433. _taskbar = {
  9434. "id": str + _formdiv.id,
  9435. "style": {
  9436. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9437. },
  9438. "name": "思維導圖",
  9439. "forms": _formdiv,
  9440. "click": function () {
  9441. U.MD.D.I.openApplication(str, obj, info);
  9442. }
  9443. }
  9444. break;
  9445. case "MindMap":
  9446. aTool = 3;
  9447. _iframe = $$("iframe", {
  9448. "frameborder": "no",
  9449. "border": "0",
  9450. "scrolling ": "no",
  9451. "style": {
  9452. "cssText": "border:0;width:100%;height:100%"
  9453. },
  9454. "src": "//cloud.cocorobo.hk/mind/"
  9455. })
  9456. _box.appendChild(_iframe);
  9457. _box.appendChild(_jie);
  9458. _formdiv = new U.UF.UI.form(
  9459. "思維導圖-" + _username,
  9460. _box, { //"/jsmind/example/demo.html"
  9461. "id": "mind" + cid + stage + task + tool + _userid,
  9462. "style": {
  9463. "width": "90%",
  9464. "height": "90%",
  9465. "overflow": 'hidden'
  9466. },
  9467. "onresize": function () { }
  9468. }, {
  9469. closecallback: function () { }
  9470. }, {
  9471. "style": {
  9472. "height": "36px"
  9473. }
  9474. }).form; //創建窗體
  9475. _taskbar = {
  9476. "id": str + _formdiv.id,
  9477. "style": {
  9478. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9479. },
  9480. "name": "思維導圖",
  9481. "forms": _formdiv,
  9482. "click": function () {
  9483. U.MD.D.I.openApplication(str, obj, info);
  9484. }
  9485. }
  9486. break;
  9487. case "doc":
  9488. aTool = 6;
  9489. _iframe = $$("iframe", {
  9490. "frameborder": "no",
  9491. "border": "0",
  9492. "scrolling ": "no",
  9493. "style": {
  9494. "cssText": "border:0;width:100%;height:100%"
  9495. },
  9496. "src": "/Office/Word/WordEditArea.htm"
  9497. })
  9498. _box.appendChild(_iframe);
  9499. _box.appendChild(_jie);
  9500. _formdiv = new U.UF.UI.form(
  9501. "協同文檔-" + _username,
  9502. _box, {
  9503. "id": "doc" + cid + stage + task + tool + _userid,
  9504. "style": {
  9505. "width": "90%",
  9506. "height": "90%",
  9507. "overflow": 'hidden'
  9508. },
  9509. "onresize": function () { }
  9510. }, {
  9511. closecallback: function () { }
  9512. }, {
  9513. "style": {
  9514. "height": "36px"
  9515. }
  9516. }).form; //創建窗體
  9517. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9518. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9519. })
  9520. _taskbar = {
  9521. "id": str + _formdiv.id,
  9522. "style": {
  9523. "backgroundImage": "url(/img/icon/doc.png)"
  9524. },
  9525. "name": "協同文檔",
  9526. "forms": _formdiv,
  9527. "click": function () {
  9528. U.MD.D.I.openApplication(str, obj, info);
  9529. }
  9530. }
  9531. break;
  9532. case "mindNetwork": //好友打開
  9533. aTool = 7;
  9534. _iframe = $$("iframe", {
  9535. "webkitallowfullscreen": "",
  9536. "mozallowfullscreen": "",
  9537. "allowfullscreen": "",
  9538. "frameborder": "no",
  9539. "border": "0",
  9540. "scrolling ": "no",
  9541. "style": {
  9542. "cssText": "border:0; width:100%; height:100%;"
  9543. },
  9544. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9545. })
  9546. _box.appendChild(_iframe);
  9547. _box.appendChild(_jie);
  9548. _formdiv = new U.UF.UI.form(
  9549. "思維網格-" + _username,
  9550. _box, {
  9551. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9552. "style": {
  9553. "width": "90%",
  9554. "height": "90%",
  9555. "overflow": 'hidden'
  9556. },
  9557. "onresize": function () { }
  9558. }, {
  9559. closecallback: function () { }
  9560. }, {
  9561. "style": {
  9562. "height": "36px"
  9563. }
  9564. }).form; //創建窗體
  9565. _taskbar = {
  9566. "id": str + _formdiv.id,
  9567. "style": {
  9568. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9569. },
  9570. "name": "思維網格",
  9571. "forms": _formdiv,
  9572. "click": function () {
  9573. U.MD.D.I.openApplication(str, obj, info);
  9574. }
  9575. }
  9576. break;
  9577. case "courseDesign":
  9578. _iframe = $$("iframe", {
  9579. "webkitallowfullscreen": "",
  9580. "mozallowfullscreen": "",
  9581. "allowfullscreen": "",
  9582. "frameborder": "no",
  9583. "border": "0",
  9584. "scrolling ": "no",
  9585. "style": {
  9586. "cssText": "border:0; width:100%; height:100%;"
  9587. },
  9588. "src": "/course-design-vue"
  9589. })
  9590. _box.appendChild(_iframe);
  9591. _box.appendChild(_jie);
  9592. _formdiv = new U.UF.UI.form(
  9593. "項目設計-" + _username,
  9594. _box, {
  9595. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9596. "style": {
  9597. "width": "90%",
  9598. "height": "90%",
  9599. "overflow": 'hidden'
  9600. },
  9601. "onresize": function () { }
  9602. }, {
  9603. closecallback: function () { }
  9604. }, {
  9605. "style": {
  9606. "height": "36px"
  9607. }
  9608. }).form; //創建窗體
  9609. _taskbar = {
  9610. "id": str + _formdiv.id,
  9611. "style": {
  9612. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9613. },
  9614. "name": "項目設計",
  9615. "forms": _formdiv,
  9616. "click": function () {
  9617. U.MD.D.I.openApplication(str, obj, info);
  9618. }
  9619. }
  9620. break;
  9621. }
  9622. const script1 = document.createElement("script");
  9623. script1.type = "text/javascript";
  9624. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9625. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9626. const script2 = document.createElement("script");
  9627. script2.type = "text/javascript";
  9628. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9629. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9630. const script3 = document.createElement("script");
  9631. script3.type = "text/javascript";
  9632. script3.charset = "UTF-8";
  9633. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9634. const script4 = document.createElement("script");
  9635. script4.type = "text/javascript";
  9636. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9637. script4.src = window.origin + "/js/Common/jietu2E.js";
  9638. if (_iframe) {
  9639. if (str == 'doc') {
  9640. _iframe = _formdiv.querySelector('iframe')
  9641. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9642. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9643. _iframe.contentWindow.document.body.appendChild(script1);
  9644. _iframe.contentWindow.document.body.appendChild(script2);
  9645. // _iframe.contentWindow.document.body.appendChild(script3);
  9646. _iframe.contentWindow.document.body.appendChild(script4);
  9647. })
  9648. if (onloadListener) {
  9649. _iframe.contentDocument.location.reload()
  9650. } else {
  9651. _iframe.contentDocument.location.reload()
  9652. }
  9653. } else if (str == 'courseDesign') {
  9654. U.UF.DL.iframeLoad(_iframe, function () {
  9655. // _iframe.contentWindow.U.MD.O.W.load();
  9656. // _iframe.contentWindow.document.body.appendChild(script1);
  9657. _iframe.contentWindow.document.body.appendChild(script2);
  9658. _iframe.contentWindow.document.body.appendChild(script4);
  9659. })
  9660. } else if (str == 'mind') {
  9661. _iframe = _formdiv.querySelector('iframe')
  9662. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9663. //
  9664. _iframe.contentWindow.document.body.appendChild(script1);
  9665. _iframe.contentWindow.document.body.appendChild(script2);
  9666. _iframe.contentWindow.document.body.appendChild(script4);
  9667. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9668. })
  9669. if (onloadListener) {
  9670. _iframe.contentDocument.location.reload()
  9671. } else {
  9672. _iframe.contentDocument.location.reload()
  9673. }
  9674. } else if (str == 'whiteboard') {
  9675. _iframe = _formdiv.querySelector('iframe')
  9676. let onloadListener = _iframe.onload = () => {
  9677. _iframe.contentWindow.document.body.appendChild(script1);
  9678. _iframe.contentWindow.document.body.appendChild(script2);
  9679. _iframe.contentWindow.document.body.appendChild(script4);
  9680. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9681. };
  9682. // if (onloadListener) {
  9683. // try {
  9684. // _iframe.src += "?cocorobo="+new Date().getTime()
  9685. // _iframe.contentWindow.document.location.reload()
  9686. // } catch (error) {
  9687. // }
  9688. // } else {
  9689. // _iframe.contentDocument.location.reload()
  9690. // }
  9691. } else {
  9692. _iframe.onload = () => {
  9693. _iframe.contentWindow.document.body.appendChild(script1);
  9694. _iframe.contentWindow.document.body.appendChild(script2);
  9695. // _iframe.contentWindow.document.body.appendChild(script3);
  9696. _iframe.contentWindow.document.body.appendChild(script4);
  9697. };
  9698. }
  9699. _jie.onclick = async () => {
  9700. let text = ''
  9701. if (aTool == 1) {
  9702. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9703. } else if (aTool == 6) {
  9704. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9705. } else if (aTool == 3) {
  9706. text = await U.MD.D.I.getEditorContent(_iframe);
  9707. }
  9708. _loading.style.display = 'flex'
  9709. console.log(_loading);
  9710. var _ajs = _iframe.contentWindow.document.createElement("script");
  9711. _ajs.type = "text/javascript";
  9712. _ajs.innerHTML =
  9713. // 'console.log(' + _loading + ');\n' +
  9714. 'var _js = document.createElement("script");\n' +
  9715. '_js.type="text/javascript";\n' +
  9716. '_js.charset="UTF-8";\n' +
  9717. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9718. "_js.onload = function(){\n" +
  9719. ' var a = document.getElementsByTagName("img")\n' +
  9720. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9721. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9722. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9723. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9724. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9725. "beforeUpload_shishi(file," +
  9726. "'" +
  9727. _userid +
  9728. "'" +
  9729. ", " +
  9730. "'" +
  9731. _cid +
  9732. "'" +
  9733. ", " +
  9734. "'" +
  9735. _stage +
  9736. "'" +
  9737. ", " +
  9738. "'" +
  9739. _task +
  9740. "'" +
  9741. ", " +
  9742. "'" +
  9743. _tool +
  9744. "'" +
  9745. ", " +
  9746. "'" +
  9747. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9748. "'" +
  9749. ", " +
  9750. "'" +
  9751. aTool +
  9752. "'" +
  9753. ", " +
  9754. "`" +
  9755. text +
  9756. "`" +
  9757. ")\n" +
  9758. " });\n" +
  9759. "}\n" +
  9760. "document.head.appendChild(_js);\n";
  9761. _iframe.contentWindow.document.head.appendChild(_ajs);
  9762. }
  9763. }
  9764. }
  9765. U.MD.D.I.getEditorContent = function (iframe) {
  9766. return new Promise((resolve, reject) => {
  9767. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9768. console.log(content);
  9769. resolve(content)
  9770. });
  9771. });
  9772. }
  9773. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9774. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9775. // if (res.value[0].length > 0) {
  9776. // // resolve(res.value[0][0].text);
  9777. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9778. // $(fileInput).val('');
  9779. // });
  9780. // }
  9781. // }, [], { "type": "GET", "withCredentials": true });
  9782. var xmlhttp;
  9783. var Mac, Sn, DeviceId
  9784. if (window.XMLHttpRequest) {
  9785. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9786. xmlhttp = new XMLHttpRequest();
  9787. }
  9788. else {
  9789. // IE6, IE5 瀏覽器執行代碼
  9790. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9791. }
  9792. xmlhttp.onreadystatechange = function () {
  9793. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9794. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9795. // resolve(res.value[0][0].text);
  9796. if (type == '2') {
  9797. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9798. } else if (type == '3') {
  9799. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9800. }
  9801. } else {
  9802. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9803. }
  9804. }
  9805. }
  9806. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9807. xmlhttp.send();
  9808. }
  9809. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9810. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9811. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9812. _userinfo = US.userInfo, //登錄用戶信息
  9813. _userid = US.userInfo.userid //登錄用戶id
  9814. let _iframe;
  9815. let _cid = cid,
  9816. _stage = stage,
  9817. _task = task,
  9818. _tool = tool;
  9819. var _jie = $$("div", {
  9820. "style": {
  9821. "position": "absolute",
  9822. "bottom": "50px",
  9823. "right": "50px",
  9824. "zIndex": "9999",
  9825. "backgroundColor": "#2268bc",
  9826. "color": "#fff",
  9827. "padding": "12px 20px",
  9828. "cursor": "pointer",
  9829. "borderRadius": "4px",
  9830. },
  9831. "innerHTML": "確認並提交"
  9832. })
  9833. let aTool = ''
  9834. let _loading = document.createElement('div')
  9835. _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;"
  9836. // _loading.id = "";
  9837. let _lchild = document.createElement('div')
  9838. let _limg = document.createElement('img')
  9839. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9840. _limg.style = "width: 26px;margin-right: 10px;"
  9841. _lchild.appendChild(_limg)
  9842. let _lspan = document.createElement('span')
  9843. _lspan.innerHTML = "上傳中..."
  9844. _lchild.appendChild(_lspan)
  9845. _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%);"
  9846. _loading.appendChild(_lchild)
  9847. var _box = $$('div', {
  9848. "style": {
  9849. "position": "relative",
  9850. "width": "100%",
  9851. "height": "100%",
  9852. },
  9853. })
  9854. _box.appendChild(_loading)
  9855. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9856. switch (str) {
  9857. case "whiteboard":
  9858. aTool = 1;
  9859. _iframe = $$("iframe", {
  9860. "frameborder": "no",
  9861. "border": "0",
  9862. "scrolling ": "no",
  9863. "style": {
  9864. "cssText": "border:0;width:100%;height:100%"
  9865. },
  9866. "src": "https://iwb.cocorobo.hk/"
  9867. })
  9868. _box.appendChild(_iframe);
  9869. _box.appendChild(_jie);
  9870. _formdiv = new U.UF.UI.form(
  9871. "電子白闆",
  9872. _box, {
  9873. "id": "whiteboards" + cid + stage + task + tool,
  9874. "style": {
  9875. "width": "90%",
  9876. "height": "90%",
  9877. "overflow": 'hidden'
  9878. },
  9879. "onresize": function () { }
  9880. }, {
  9881. closecallback: function () { }
  9882. }, {
  9883. "style": {
  9884. "height": "36px"
  9885. }
  9886. }).form; //創建窗體
  9887. _taskbar = {
  9888. "id": str + _formdiv.id,
  9889. "style": {
  9890. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9891. },
  9892. "name": "電子白闆",
  9893. "forms": _formdiv,
  9894. "click": function () {
  9895. U.MD.D.I.openApplication(str, obj, info);
  9896. }
  9897. }
  9898. break;
  9899. case "mind":
  9900. aTool = 3;
  9901. _iframe = $$("iframe", {
  9902. "frameborder": "no",
  9903. "border": "0",
  9904. "scrolling ": "no",
  9905. "style": {
  9906. "cssText": "border:0;width:100%;height:100%"
  9907. },
  9908. "src": "/kityminder-editor/dist/index.html"
  9909. });
  9910. _box.appendChild(_iframe);
  9911. _box.appendChild(_jie);
  9912. _formdiv = new U.UF.UI.form(
  9913. "思維導圖",
  9914. _box, { //"/jsmind/example/demo.html"
  9915. "id": "minds" + cid + stage + task + tool,
  9916. "style": {
  9917. "width": "90%",
  9918. "height": "90%",
  9919. "overflow": 'hidden'
  9920. },
  9921. "onresize": function () { }
  9922. }, {
  9923. closecallback: function () { }
  9924. }, {
  9925. "style": {
  9926. "height": "36px"
  9927. }
  9928. }).form; //創建窗體
  9929. _taskbar = {
  9930. "id": str + _formdiv.id,
  9931. "style": {
  9932. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9933. },
  9934. "name": "思維導圖",
  9935. "forms": _formdiv,
  9936. "click": function () {
  9937. U.MD.D.I.openApplication(str, obj, info);
  9938. }
  9939. }
  9940. break;
  9941. case "doc":
  9942. aTool = 6;
  9943. _iframe = $$("iframe", {
  9944. "frameborder": "no",
  9945. "border": "0",
  9946. "scrolling ": "no",
  9947. "style": {
  9948. "cssText": "border:0;width:100%;height:100%"
  9949. },
  9950. "src": "/Office/Word/WordEditArea.htm"
  9951. })
  9952. _box.appendChild(_iframe);
  9953. _box.appendChild(_jie);
  9954. _formdiv = new U.UF.UI.form(
  9955. "協同文檔",
  9956. _box, {
  9957. "id": "docs" + cid + stage + task + tool,
  9958. "style": {
  9959. "width": "90%",
  9960. "height": "90%",
  9961. "overflow": 'hidden'
  9962. },
  9963. "onresize": function () { }
  9964. }, {
  9965. closecallback: function () { }
  9966. }, {
  9967. "style": {
  9968. "height": "36px"
  9969. }
  9970. }).form; //創建窗體
  9971. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9972. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9973. })
  9974. _taskbar = {
  9975. "id": str + _formdiv.id,
  9976. "style": {
  9977. "backgroundImage": "url(/img/icon/doc.png)"
  9978. },
  9979. "name": "協同文檔",
  9980. "forms": _formdiv,
  9981. "click": function () {
  9982. U.MD.D.I.openApplication(str, obj, info);
  9983. }
  9984. }
  9985. break;
  9986. }
  9987. const script1 = document.createElement("script");
  9988. script1.type = "text/javascript";
  9989. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9990. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9991. const script2 = document.createElement("script");
  9992. script2.type = "text/javascript";
  9993. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9994. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9995. const script3 = document.createElement("script");
  9996. script3.type = "text/javascript";
  9997. script3.charset = "UTF-8";
  9998. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9999. const script4 = document.createElement("script");
  10000. script4.type = "text/javascript";
  10001. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10002. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  10003. if (_iframe) {
  10004. if (str == 'doc') {
  10005. _iframe = _formdiv.querySelector('iframe')
  10006. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10007. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10008. _iframe.contentWindow.document.body.appendChild(script1);
  10009. _iframe.contentWindow.document.body.appendChild(script2);
  10010. // _iframe.contentWindow.document.body.appendChild(script3);
  10011. _iframe.contentWindow.document.body.appendChild(script4);
  10012. })
  10013. if (onloadListener) {
  10014. _iframe.contentDocument.location.reload()
  10015. } else {
  10016. _iframe.contentDocument.location.reload()
  10017. }
  10018. } else if (str == 'mind') {
  10019. _iframe = _formdiv.querySelector('iframe')
  10020. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10021. _iframe.contentWindow.document.body.appendChild(script1);
  10022. _iframe.contentWindow.document.body.appendChild(script2);
  10023. _iframe.contentWindow.document.body.appendChild(script4);
  10024. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10025. })
  10026. if (onloadListener) {
  10027. _iframe.contentDocument.location.reload()
  10028. } else {
  10029. _iframe.contentDocument.location.reload()
  10030. }
  10031. } else {
  10032. _iframe.onload = () => {
  10033. _iframe.contentWindow.document.body.appendChild(script1);
  10034. _iframe.contentWindow.document.body.appendChild(script2);
  10035. // _iframe.contentWindow.document.body.appendChild(script3);
  10036. _iframe.contentWindow.document.body.appendChild(script4);
  10037. };
  10038. }
  10039. _jie.onclick = async () => {
  10040. let text = ''
  10041. if (aTool == 6) {
  10042. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10043. } else if (aTool == 3) {
  10044. text = await U.MD.D.I.getEditorContent(_iframe);
  10045. }
  10046. _loading.style.display = 'flex'
  10047. console.log(_loading);
  10048. var _ajs = _iframe.contentWindow.document.createElement("script");
  10049. _ajs.type = "text/javascript";
  10050. _ajs.innerHTML =
  10051. // 'console.log(' + _loading + ');\n' +
  10052. 'var _js = document.createElement("script");\n' +
  10053. '_js.type="text/javascript";\n' +
  10054. '_js.charset="UTF-8";\n' +
  10055. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  10056. "_js.onload = function(){\n" +
  10057. ' var a = document.getElementsByTagName("img")\n' +
  10058. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10059. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10060. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10061. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10062. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  10063. "beforeUpload_shishi(file," +
  10064. "'" +
  10065. _userid +
  10066. "'" +
  10067. ", " +
  10068. "'" +
  10069. _cid +
  10070. "'" +
  10071. ", " +
  10072. "'" +
  10073. _stage +
  10074. "'" +
  10075. ", " +
  10076. "'" +
  10077. _task +
  10078. "'" +
  10079. ", " +
  10080. "'" +
  10081. _tool +
  10082. "'" +
  10083. ", " +
  10084. "'" +
  10085. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10086. "'" +
  10087. ", " +
  10088. "'" +
  10089. aTool +
  10090. "'" +
  10091. ", " +
  10092. "`" +
  10093. text +
  10094. "`" +
  10095. ")\n" +
  10096. " });\n" +
  10097. "}\n" +
  10098. "document.head.appendChild(_js);\n";
  10099. _iframe.contentWindow.document.head.appendChild(_ajs);
  10100. }
  10101. }
  10102. //U.MD.D.I.openClick(str);
  10103. //如果有任務欄信息
  10104. // if (_taskbar) {
  10105. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10106. // }
  10107. }
  10108. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10109. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10110. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10111. _userinfo = US.userInfo, //登錄用戶信息
  10112. _userid = US.userInfo.userid //登錄用戶id
  10113. let _iframe;
  10114. let _cid = cid,
  10115. _stage = stage,
  10116. _task = task,
  10117. _tool = tool;
  10118. var _jie = $$("div", {
  10119. "style": {
  10120. "position": "absolute",
  10121. "bottom": "50px",
  10122. "right": "50px",
  10123. "zIndex": "9999",
  10124. "backgroundColor": "#2268bc",
  10125. "color": "#fff",
  10126. "padding": "12px 20px",
  10127. "cursor": "pointer",
  10128. "borderRadius": "4px",
  10129. },
  10130. "innerHTML": "確認並提交"
  10131. })
  10132. let aTool = ''
  10133. let _loading = document.createElement('div')
  10134. _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;"
  10135. // _loading.id = "";
  10136. let _lchild = document.createElement('div')
  10137. let _limg = document.createElement('img')
  10138. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10139. _limg.style = "width: 26px;margin-right: 10px;"
  10140. _lchild.appendChild(_limg)
  10141. let _lspan = document.createElement('span')
  10142. _lspan.innerHTML = "上傳中..."
  10143. _lchild.appendChild(_lspan)
  10144. _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%);"
  10145. _loading.appendChild(_lchild)
  10146. var _box = $$('div', {
  10147. "style": {
  10148. "position": "relative",
  10149. "width": "100%",
  10150. "height": "100%",
  10151. },
  10152. })
  10153. _box.appendChild(_loading)
  10154. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10155. switch (str) {
  10156. case "whiteboard":
  10157. aTool = 1;
  10158. _iframe = $$("iframe", {
  10159. "frameborder": "no",
  10160. "border": "0",
  10161. "scrolling ": "no",
  10162. "style": {
  10163. "cssText": "border:0;width:100%;height:100%"
  10164. },
  10165. "src": "https://iwb.cocorobo.hk/"
  10166. })
  10167. _box.appendChild(_iframe);
  10168. _box.appendChild(_jie);
  10169. _formdiv = new U.UF.UI.form(
  10170. "電子白闆",
  10171. _box, {
  10172. "id": "whiteboards" + cid + stage + task + tool,
  10173. "style": {
  10174. "width": "90%",
  10175. "height": "90%",
  10176. "overflow": 'hidden'
  10177. },
  10178. "onresize": function () { }
  10179. }, {
  10180. closecallback: function () { }
  10181. }, {
  10182. "style": {
  10183. "height": "36px"
  10184. }
  10185. }).form; //創建窗體
  10186. _taskbar = {
  10187. "id": str + _formdiv.id,
  10188. "style": {
  10189. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10190. },
  10191. "name": "電子白闆",
  10192. "forms": _formdiv,
  10193. "click": function () {
  10194. U.MD.D.I.openApplication(str, obj, info);
  10195. }
  10196. }
  10197. break;
  10198. case "mind":
  10199. aTool = 3;
  10200. _iframe = $$("iframe", {
  10201. "frameborder": "no",
  10202. "border": "0",
  10203. "scrolling ": "no",
  10204. "style": {
  10205. "cssText": "border:0;width:100%;height:100%"
  10206. },
  10207. "src": "/kityminder-editor/dist/index.html"
  10208. });
  10209. _box.appendChild(_iframe);
  10210. _box.appendChild(_jie);
  10211. _formdiv = new U.UF.UI.form(
  10212. "思維導圖",
  10213. _box, { //"/jsmind/example/demo.html"
  10214. "id": "minds" + cid + stage + task + tool,
  10215. "style": {
  10216. "width": "90%",
  10217. "height": "90%",
  10218. "overflow": 'hidden'
  10219. },
  10220. "onresize": function () { }
  10221. }, {
  10222. closecallback: function () { }
  10223. }, {
  10224. "style": {
  10225. "height": "36px"
  10226. }
  10227. }).form; //創建窗體
  10228. _taskbar = {
  10229. "id": str + _formdiv.id,
  10230. "style": {
  10231. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10232. },
  10233. "name": "思維導圖",
  10234. "forms": _formdiv,
  10235. "click": function () {
  10236. U.MD.D.I.openApplication(str, obj, info);
  10237. }
  10238. }
  10239. break;
  10240. case "doc":
  10241. aTool = 6;
  10242. _iframe = $$("iframe", {
  10243. "frameborder": "no",
  10244. "border": "0",
  10245. "scrolling ": "no",
  10246. "style": {
  10247. "cssText": "border:0;width:100%;height:100%"
  10248. },
  10249. "src": "/Office/Word/WordEditArea.htm"
  10250. })
  10251. _box.appendChild(_iframe);
  10252. _box.appendChild(_jie);
  10253. _formdiv = new U.UF.UI.form(
  10254. "協同文檔",
  10255. _box, {
  10256. "id": "docs" + cid + stage + task + tool,
  10257. "style": {
  10258. "width": "90%",
  10259. "height": "90%",
  10260. "overflow": 'hidden'
  10261. },
  10262. "onresize": function () { }
  10263. }, {
  10264. closecallback: function () { }
  10265. }, {
  10266. "style": {
  10267. "height": "36px"
  10268. }
  10269. }).form; //創建窗體
  10270. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10271. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10272. })
  10273. _taskbar = {
  10274. "id": str + _formdiv.id,
  10275. "style": {
  10276. "backgroundImage": "url(/img/icon/doc.png)"
  10277. },
  10278. "name": "協同文檔",
  10279. "forms": _formdiv,
  10280. "click": function () {
  10281. U.MD.D.I.openApplication(str, obj, info);
  10282. }
  10283. }
  10284. break;
  10285. }
  10286. const script1 = document.createElement("script");
  10287. script1.type = "text/javascript";
  10288. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10289. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  10290. const script2 = document.createElement("script");
  10291. script2.type = "text/javascript";
  10292. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10293. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  10294. const script3 = document.createElement("script");
  10295. script3.type = "text/javascript";
  10296. script3.charset = "UTF-8";
  10297. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  10298. const script4 = document.createElement("script");
  10299. script4.type = "text/javascript";
  10300. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10301. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  10302. if (_iframe) {
  10303. if (str == 'doc') {
  10304. _iframe = _formdiv.querySelector('iframe')
  10305. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10306. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10307. _iframe.contentWindow.document.body.appendChild(script1);
  10308. _iframe.contentWindow.document.body.appendChild(script2);
  10309. // _iframe.contentWindow.document.body.appendChild(script3);
  10310. _iframe.contentWindow.document.body.appendChild(script4);
  10311. })
  10312. if (onloadListener) {
  10313. _iframe.contentDocument.location.reload()
  10314. } else {
  10315. _iframe.contentDocument.location.reload()
  10316. }
  10317. } else if (str == 'mind') {
  10318. _iframe = _formdiv.querySelector('iframe')
  10319. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10320. _iframe.contentWindow.document.body.appendChild(script1);
  10321. _iframe.contentWindow.document.body.appendChild(script2);
  10322. _iframe.contentWindow.document.body.appendChild(script4);
  10323. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10324. })
  10325. if (onloadListener) {
  10326. _iframe.contentDocument.location.reload()
  10327. } else {
  10328. _iframe.contentDocument.location.reload()
  10329. }
  10330. } else {
  10331. _iframe.onload = () => {
  10332. _iframe.contentWindow.document.body.appendChild(script1);
  10333. _iframe.contentWindow.document.body.appendChild(script2);
  10334. // _iframe.contentWindow.document.body.appendChild(script3);
  10335. _iframe.contentWindow.document.body.appendChild(script4);
  10336. };
  10337. }
  10338. _jie.onclick = async () => {
  10339. let text = ''
  10340. if (aTool == 6) {
  10341. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10342. } else if (aTool == 3) {
  10343. text = await U.MD.D.I.getEditorContent(_iframe);
  10344. }
  10345. _loading.style.display = 'flex'
  10346. console.log(_loading);
  10347. var _ajs = _iframe.contentWindow.document.createElement("script");
  10348. _ajs.type = "text/javascript";
  10349. _ajs.innerHTML =
  10350. // 'console.log(' + _loading + ');\n' +
  10351. 'var _js = document.createElement("script");\n' +
  10352. '_js.type="text/javascript";\n' +
  10353. '_js.charset="UTF-8";\n' +
  10354. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  10355. "_js.onload = function(){\n" +
  10356. ' var a = document.getElementsByTagName("img")\n' +
  10357. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10358. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10359. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10360. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10361. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  10362. "beforeUpload_shishi(file," +
  10363. "'" +
  10364. _userid +
  10365. "'" +
  10366. ", " +
  10367. "'" +
  10368. _cid +
  10369. "'" +
  10370. ", " +
  10371. "'" +
  10372. _stage +
  10373. "'" +
  10374. ", " +
  10375. "'" +
  10376. _task +
  10377. "'" +
  10378. ", " +
  10379. "'" +
  10380. _tool +
  10381. "'" +
  10382. ", " +
  10383. "'" +
  10384. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10385. "'" +
  10386. ", " +
  10387. "'" +
  10388. aTool +
  10389. "'" +
  10390. ", " +
  10391. "`" +
  10392. text +
  10393. "`" +
  10394. ")\n" +
  10395. " });\n" +
  10396. "}\n" +
  10397. "document.head.appendChild(_js);\n";
  10398. _iframe.contentWindow.document.head.appendChild(_ajs);
  10399. }
  10400. }
  10401. //U.MD.D.I.openClick(str);
  10402. //如果有任務欄信息
  10403. // if (_taskbar) {
  10404. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10405. // }
  10406. }
  10407. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10408. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10409. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10410. _userinfo = US.userInfo, //登錄用戶信息
  10411. _userid = US.userInfo.userid //登錄用戶id
  10412. let _iframe;
  10413. let _cid = cid,
  10414. _stage = stage,
  10415. _task = task,
  10416. _tool = tool;
  10417. var _jie = $$("div", {
  10418. "style": {
  10419. "position": "absolute",
  10420. "bottom": "50px",
  10421. "right": "50px",
  10422. "zIndex": "9999",
  10423. "backgroundColor": "#2268bc",
  10424. "color": "#fff",
  10425. "padding": "12px 20px",
  10426. "cursor": "pointer",
  10427. "borderRadius": "4px",
  10428. },
  10429. "innerHTML": "上傳模闆"
  10430. })
  10431. let aTool = ''
  10432. let _loading = document.createElement('div')
  10433. _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;"
  10434. // _loading.id = "";
  10435. let _lchild = document.createElement('div')
  10436. let _limg = document.createElement('img')
  10437. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10438. _limg.style = "width: 26px;margin-right: 10px;"
  10439. _lchild.appendChild(_limg)
  10440. let _lspan = document.createElement('span')
  10441. _lspan.innerHTML = "上傳中..."
  10442. _lchild.appendChild(_lspan)
  10443. _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%);"
  10444. _loading.appendChild(_lchild)
  10445. var _box = $$('div', {
  10446. "style": {
  10447. "position": "relative",
  10448. "width": "100%",
  10449. "height": "100%",
  10450. },
  10451. })
  10452. _box.appendChild(_loading)
  10453. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10454. switch (str) {
  10455. case "whiteboard":
  10456. aTool = 1;
  10457. _iframe = $$("iframe", {
  10458. "frameborder": "no",
  10459. "border": "0",
  10460. "scrolling ": "no",
  10461. "style": {
  10462. "cssText": "border:0;width:100%;height:100%"
  10463. },
  10464. "src": "https://iwb.cocorobo.hk/"
  10465. })
  10466. _box.appendChild(_iframe);
  10467. _box.appendChild(_jie);
  10468. _formdiv = new U.UF.UI.form(
  10469. "電子白闆",
  10470. _box, {
  10471. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10472. "style": {
  10473. "width": "90%",
  10474. "height": "90%",
  10475. "overflow": 'hidden'
  10476. },
  10477. "onresize": function () { }
  10478. }, {
  10479. closecallback: function () { }
  10480. }, {
  10481. "style": {
  10482. "height": "36px"
  10483. }
  10484. }).form; //創建窗體
  10485. _taskbar = {
  10486. "id": str + _formdiv.id,
  10487. "style": {
  10488. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10489. },
  10490. "name": "電子白闆",
  10491. "forms": _formdiv,
  10492. "click": function () {
  10493. U.MD.D.I.openApplication(str, obj, info);
  10494. }
  10495. }
  10496. break;
  10497. case "mind":
  10498. aTool = 3;
  10499. _iframe = $$("iframe", {
  10500. "frameborder": "no",
  10501. "border": "0",
  10502. "scrolling ": "no",
  10503. "style": {
  10504. "cssText": "border:0;width:100%;height:100%"
  10505. },
  10506. "src": "/kityminder-editor/dist/index.html"
  10507. });
  10508. _box.appendChild(_iframe);
  10509. _box.appendChild(_jie);
  10510. _formdiv = new U.UF.UI.form(
  10511. "思維導圖",
  10512. _box, { //"/jsmind/example/demo.html"
  10513. "id": "minds_Yu" + cid + stage + task + tool,
  10514. "style": {
  10515. "width": "90%",
  10516. "height": "90%",
  10517. "overflow": 'hidden'
  10518. },
  10519. "onresize": function () { }
  10520. }, {
  10521. closecallback: function () { }
  10522. }, {
  10523. "style": {
  10524. "height": "36px"
  10525. }
  10526. }).form; //創建窗體
  10527. _taskbar = {
  10528. "id": str + _formdiv.id,
  10529. "style": {
  10530. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10531. },
  10532. "name": "思維導圖",
  10533. "forms": _formdiv,
  10534. "click": function () {
  10535. U.MD.D.I.openApplication(str, obj, info);
  10536. }
  10537. }
  10538. break;
  10539. case "doc":
  10540. aTool = 6;
  10541. _iframe = $$("iframe", {
  10542. "frameborder": "no",
  10543. "border": "0",
  10544. "scrolling ": "no",
  10545. "style": {
  10546. "cssText": "border:0;width:100%;height:100%"
  10547. },
  10548. "src": "/Office/Word/WordEditArea.htm"
  10549. })
  10550. _box.appendChild(_iframe);
  10551. _box.appendChild(_jie);
  10552. _formdiv = new U.UF.UI.form(
  10553. "協同文檔",
  10554. _box, {
  10555. "id": "docs_Yu" + cid + stage + task + tool,
  10556. "style": {
  10557. "width": "90%",
  10558. "height": "90%",
  10559. "overflow": 'hidden'
  10560. },
  10561. "onresize": function () { }
  10562. }, {
  10563. closecallback: function () { }
  10564. }, {
  10565. "style": {
  10566. "height": "36px"
  10567. }
  10568. }).form; //創建窗體
  10569. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10570. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10571. })
  10572. _taskbar = {
  10573. "id": str + _formdiv.id,
  10574. "style": {
  10575. "backgroundImage": "url(/img/icon/doc.png)"
  10576. },
  10577. "name": "協同文檔",
  10578. "forms": _formdiv,
  10579. "click": function () {
  10580. U.MD.D.I.openApplication(str, obj, info);
  10581. }
  10582. }
  10583. break;
  10584. case "CocoPi":
  10585. aTool = 57;
  10586. _iframe = $$("iframe", {
  10587. "allowpaymentrequest": "allowpaymentrequest",
  10588. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10589. "webkitallowfullscreen": "",
  10590. "mozallowfullscreen": "",
  10591. "frameborder": "no",
  10592. "border": "0",
  10593. "scrolling ": "no",
  10594. "style": {
  10595. "cssText": "border:0;width:100%;height:100%"
  10596. },
  10597. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10598. })
  10599. _box.appendChild(_iframe);
  10600. _box.appendChild(_jie);
  10601. _formdiv = new U.UF.UI.form(
  10602. "CocoPi",
  10603. _box, {
  10604. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10605. "style": {
  10606. "width": "90%",
  10607. "height": "90%",
  10608. "overflow": 'hidden'
  10609. },
  10610. "onresize": function () { }
  10611. }, {
  10612. closecallback: function () { }
  10613. }, {
  10614. "style": {
  10615. "height": "36px"
  10616. }
  10617. }).form; //創建窗體
  10618. _taskbar = {
  10619. "id": str + _formdiv.id,
  10620. "style": {
  10621. "backgroundImage": "url(/img/icon/cocopi.png)"
  10622. },
  10623. "name": "CocoPi",
  10624. "forms": _formdiv,
  10625. "click": function () {
  10626. U.MD.D.I.openApplication(str, obj, info);
  10627. }
  10628. }
  10629. break;
  10630. }
  10631. if (_iframe) {
  10632. if (str == 'doc') {
  10633. _iframe = _formdiv.querySelector('iframe')
  10634. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10635. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10636. })
  10637. if (onloadListener) {
  10638. _iframe.contentDocument.location.reload()
  10639. } else {
  10640. _iframe.contentDocument.location.reload()
  10641. }
  10642. } else if (str == 'mind') {
  10643. _iframe = _formdiv.querySelector('iframe')
  10644. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10645. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10646. })
  10647. if (onloadListener) {
  10648. _iframe.contentDocument.location.reload()
  10649. } else {
  10650. _iframe.contentDocument.location.reload()
  10651. }
  10652. } else if (str == 'whiteboard') {
  10653. _iframe = _formdiv.querySelector('iframe')
  10654. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10655. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10656. })
  10657. // if (onloadListener) {
  10658. // try {
  10659. // _iframe.src += "?cocorobo="+new Date().getTime()
  10660. // _iframe.contentWindow.document.location.reload()
  10661. // } catch (error) {
  10662. // }
  10663. // } else {
  10664. // _iframe.contentDocument.location.reload()
  10665. // }
  10666. } else if (str == 'CocoPi') {
  10667. _iframe = _formdiv.querySelector('iframe')
  10668. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10669. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10670. })
  10671. if (onloadListener) {
  10672. _iframe.contentDocument.location.reload()
  10673. } else {
  10674. _iframe.contentDocument.location.reload()
  10675. }
  10676. } else {
  10677. _iframe.onload = () => { };
  10678. }
  10679. _jie.onclick = async () => {
  10680. let text = ''
  10681. let type = '2'
  10682. if (aTool == 1) {
  10683. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10684. type = '3'
  10685. } else if (aTool == 6) {
  10686. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10687. type = '1'
  10688. } else if (aTool == 3) {
  10689. text = await U.MD.D.I.getEditorContent(_iframe);
  10690. type = '2'
  10691. } else if (aTool == 57) {
  10692. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10693. type = '4'
  10694. }
  10695. _loading.style.display = 'flex'
  10696. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10697. }
  10698. }
  10699. //U.MD.D.I.openClick(str);
  10700. //如果有任務欄信息
  10701. // if (_taskbar) {
  10702. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10703. // }
  10704. }
  10705. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10706. var xmlhttp;
  10707. var Mac, Sn, DeviceId
  10708. if (window.XMLHttpRequest) {
  10709. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10710. xmlhttp = new XMLHttpRequest();
  10711. }
  10712. else {
  10713. // IE6, IE5 瀏覽器執行代碼
  10714. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10715. }
  10716. xmlhttp.onreadystatechange = function () {
  10717. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10718. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10719. // resolve(res.value[0][0].text);
  10720. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10721. }
  10722. }
  10723. }
  10724. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10725. xmlhttp.send();
  10726. }
  10727. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10728. var xmlhttp;
  10729. var Mac, Sn, DeviceId
  10730. if (window.XMLHttpRequest) {
  10731. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10732. xmlhttp = new XMLHttpRequest();
  10733. }
  10734. else {
  10735. // IE6, IE5 瀏覽器執行代碼
  10736. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10737. }
  10738. xmlhttp.onreadystatechange = function () {
  10739. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10740. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10741. // resolve(res.value[0][0].text);
  10742. if (type == '2') {
  10743. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10744. } else if (type == '3') {
  10745. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10746. } else if (type == '4') {
  10747. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10748. }
  10749. } else {
  10750. if (type == '2') {
  10751. iframe.contentWindow.editor.minder.importData('json', '')
  10752. } else if (type == '3') {
  10753. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10754. } else if (type == '4') {
  10755. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10756. }
  10757. }
  10758. }
  10759. }
  10760. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10761. xmlhttp.send();
  10762. }
  10763. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10764. var xmlhttp;
  10765. var Mac, Sn, DeviceId
  10766. if (window.XMLHttpRequest) {
  10767. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10768. xmlhttp = new XMLHttpRequest();
  10769. }
  10770. else {
  10771. // IE6, IE5 瀏覽器執行代碼
  10772. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10773. }
  10774. xmlhttp.onreadystatechange = function () {
  10775. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10776. if (xmlhttp.response) {
  10777. // resolve(res.value[0][0].text);
  10778. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10779. // $(fileInput).val('');
  10780. // });
  10781. span.innerHTML = '上傳成功'
  10782. setTimeout(() => {
  10783. loading.style.display = 'none'
  10784. }, 1000);
  10785. }
  10786. }
  10787. }
  10788. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10789. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10790. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10791. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10792. // 設置請求頭,錶示請求體的編碼格式
  10793. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10794. // 設置請求體,使用url-encoded格式的數據
  10795. }
  10796. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10797. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10798. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10799. _userinfo = US.userInfo, //登錄用戶信息
  10800. _userid = US.userInfo.userid //登錄用戶id
  10801. let _iframe;
  10802. let _cid = cid,
  10803. _stage = stage,
  10804. _task = task,
  10805. _tool = tool;
  10806. var _jie = $$("div", {
  10807. "style": {
  10808. "position": "absolute",
  10809. "bottom": "50px",
  10810. "right": "50px",
  10811. "zIndex": "9999",
  10812. "backgroundColor": "#2268bc",
  10813. "color": "#fff",
  10814. "padding": "12px 20px",
  10815. "cursor": "pointer",
  10816. "borderRadius": "4px",
  10817. },
  10818. "innerHTML": "提交作業"
  10819. })
  10820. let aTool = ''
  10821. let _loading = document.createElement('div')
  10822. _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;"
  10823. // _loading.id = "";
  10824. let _lchild = document.createElement('div')
  10825. let _limg = document.createElement('img')
  10826. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10827. _limg.style = "width: 26px;margin-right: 10px;"
  10828. _lchild.appendChild(_limg)
  10829. let _lspan = document.createElement('span')
  10830. _lspan.innerHTML = "上傳中..."
  10831. _lchild.appendChild(_lspan)
  10832. _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%);"
  10833. _loading.appendChild(_lchild)
  10834. var _box = $$('div', {
  10835. "style": {
  10836. "position": "relative",
  10837. "width": "100%",
  10838. "height": "100%",
  10839. },
  10840. })
  10841. _box.appendChild(_loading)
  10842. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10843. switch (str) {
  10844. case "CocoPi":
  10845. aTool = 57;
  10846. _iframe = $$("iframe", {
  10847. "allowpaymentrequest": "allowpaymentrequest",
  10848. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10849. "webkitallowfullscreen": "",
  10850. "mozallowfullscreen": "",
  10851. "frameborder": "no",
  10852. "border": "0",
  10853. "scrolling ": "no",
  10854. "style": {
  10855. "cssText": "border:0;width:100%;height:100%"
  10856. },
  10857. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10858. })
  10859. _box.appendChild(_iframe);
  10860. _box.appendChild(_jie);
  10861. _formdiv = new U.UF.UI.form(
  10862. "CocoPi",
  10863. _box, {
  10864. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10865. "style": {
  10866. "width": "90%",
  10867. "height": "90%",
  10868. "overflow": 'hidden'
  10869. },
  10870. "onresize": function () { }
  10871. }, {
  10872. closecallback: function () { }
  10873. }, {
  10874. "style": {
  10875. "height": "36px"
  10876. }
  10877. }).form; //創建窗體
  10878. _taskbar = {
  10879. "id": str + _formdiv.id,
  10880. "style": {
  10881. "backgroundImage": "url(/img/icon/cocopi.png)"
  10882. },
  10883. "name": "CocoPi",
  10884. "forms": _formdiv,
  10885. "click": function () {
  10886. U.MD.D.I.openApplication(str, obj, info);
  10887. }
  10888. }
  10889. break;
  10890. }
  10891. if (_iframe) {
  10892. if (str == 'CocoPi') {
  10893. _iframe = _formdiv.querySelector('iframe')
  10894. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10895. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10896. })
  10897. if (onloadListener) {
  10898. _iframe.contentDocument.location.reload()
  10899. } else {
  10900. _iframe.contentDocument.location.reload()
  10901. }
  10902. }
  10903. _jie.onclick = async () => {
  10904. let text = ''
  10905. if (aTool == 57) {
  10906. text = _iframe.contentWindow.getLoadXmlStr()
  10907. }
  10908. _loading.style.display = 'flex'
  10909. console.log(_loading);
  10910. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10911. _loading.style.display = 'none'
  10912. let _div = document.createElement('div')
  10913. _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;"
  10914. let _inner = document.createElement('div')
  10915. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10916. _inner.innerHTML = "上傳成功"
  10917. _div.appendChild(_inner)
  10918. _iframe.contentWindow.window.document.body.appendChild(_div)
  10919. _div.onclick = () => {
  10920. _iframe.contentWindow.window.document.body.removeChild(_div)
  10921. }
  10922. setTimeout(() => {
  10923. _iframe.contentWindow.window.document.body.removeChild(_div)
  10924. }, 1000);
  10925. }, [], { "type": "POST", "withCredentials": true });
  10926. }
  10927. }
  10928. }
  10929. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10930. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10931. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10932. _userid = student.userid, //登錄用戶id
  10933. _username = student.student //用戶名字
  10934. let _iframe;
  10935. let _cid = cid,
  10936. _stage = stage,
  10937. _task = task,
  10938. _tool = tool;
  10939. var _jie = $$("div", {
  10940. "style": {
  10941. "position": "absolute",
  10942. "bottom": "50px",
  10943. "right": "50px",
  10944. "zIndex": "9999",
  10945. "backgroundColor": "#2268bc",
  10946. "color": "#fff",
  10947. "padding": "12px 20px",
  10948. "cursor": "pointer",
  10949. "borderRadius": "4px",
  10950. },
  10951. "innerHTML": "提交作業"
  10952. })
  10953. let aTool = ''
  10954. let _loading = document.createElement('div')
  10955. _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;"
  10956. // _loading.id = "";
  10957. let _lchild = document.createElement('div')
  10958. let _limg = document.createElement('img')
  10959. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10960. _limg.style = "width: 26px;margin-right: 10px;"
  10961. _lchild.appendChild(_limg)
  10962. let _lspan = document.createElement('span')
  10963. _lspan.innerHTML = "上傳中..."
  10964. _lchild.appendChild(_lspan)
  10965. _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%);"
  10966. _loading.appendChild(_lchild)
  10967. var _box = $$('div', {
  10968. "style": {
  10969. "position": "relative",
  10970. "width": "100%",
  10971. "height": "100%",
  10972. },
  10973. })
  10974. _box.appendChild(_loading)
  10975. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10976. switch (str) {
  10977. case "CocoPi":
  10978. aTool = 57;
  10979. _iframe = $$("iframe", {
  10980. "allowpaymentrequest": "allowpaymentrequest",
  10981. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10982. "webkitallowfullscreen": "",
  10983. "mozallowfullscreen": "",
  10984. "frameborder": "no",
  10985. "border": "0",
  10986. "scrolling ": "no",
  10987. "style": {
  10988. "cssText": "border:0;width:100%;height:100%"
  10989. },
  10990. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10991. })
  10992. _box.appendChild(_iframe);
  10993. _box.appendChild(_jie);
  10994. _formdiv = new U.UF.UI.form(
  10995. "CocoPi-" + _username,
  10996. _box, {
  10997. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10998. "style": {
  10999. "width": "90%",
  11000. "height": "90%",
  11001. "overflow": 'hidden'
  11002. },
  11003. "onresize": function () { }
  11004. }, {
  11005. closecallback: function () { }
  11006. }, {
  11007. "style": {
  11008. "height": "36px"
  11009. }
  11010. }).form; //創建窗體
  11011. _taskbar = {
  11012. "id": str + _formdiv.id,
  11013. "style": {
  11014. "backgroundImage": "url(/img/icon/cocopi.png)"
  11015. },
  11016. "name": "CocoPi",
  11017. "forms": _formdiv,
  11018. "click": function () {
  11019. U.MD.D.I.openApplication(str, obj, info);
  11020. }
  11021. }
  11022. break;
  11023. }
  11024. if (_iframe) {
  11025. if (str == 'CocoPi') {
  11026. _iframe = _formdiv.querySelector('iframe')
  11027. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11028. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11029. })
  11030. if (onloadListener) {
  11031. _iframe.contentDocument.location.reload()
  11032. } else {
  11033. _iframe.contentDocument.location.reload()
  11034. }
  11035. }
  11036. _jie.onclick = async () => {
  11037. let text = ''
  11038. if (aTool == 57) {
  11039. text = _iframe.contentWindow.getLoadXmlStr()
  11040. }
  11041. _loading.style.display = 'flex'
  11042. console.log(_loading);
  11043. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11044. _loading.style.display = 'none'
  11045. let _div = document.createElement('div')
  11046. _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;"
  11047. let _inner = document.createElement('div')
  11048. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11049. _inner.innerHTML = "上傳成功"
  11050. _div.appendChild(_inner)
  11051. _iframe.contentWindow.window.document.body.appendChild(_div)
  11052. _div.onclick = () => {
  11053. _iframe.contentWindow.window.document.body.removeChild(_div)
  11054. }
  11055. setTimeout(() => {
  11056. _iframe.contentWindow.window.document.body.removeChild(_div)
  11057. }, 1000);
  11058. }, [], { "type": "POST", "withCredentials": true });
  11059. }
  11060. }
  11061. }
  11062. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11063. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11064. if (res.value[0].length > 0) {
  11065. if (atool == 57) {
  11066. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11067. }
  11068. } else {
  11069. if (atool == 57) {
  11070. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11071. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11072. }
  11073. }
  11074. }, [], { "type": "POST", "withCredentials": true });
  11075. }
  11076. U.MD.D.addOp = function(text,type,time){
  11077. var userInfo = US.userInfo;
  11078. if(Object.keys(userInfo).length !== 0){
  11079. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11080. }, [], { "type": "POST", "withCredentials": true });
  11081. }
  11082. }