DeskTop.js 702 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157
  1. /*
  2. 此處為桌面系統啟動應用區域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面應用處理
  5. //判斷圖片是否在拖拽,如果是拖拽圖標的過程是不會打開圖片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教師桌面圖標的全局變量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //極簡模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教師桌面圖標的全局變量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "項目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的項目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "學習資料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  418. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  435. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教師桌面圖標的全局變量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教師桌面圖標的全局變量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龍華中心小學教師桌面圖標的全局變量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院實小教師桌面圖標的全局變量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "評測看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院實小教師桌面圖標的全局變量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小學教師桌面圖標的全局變量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. ];
  627. //中山小學學生桌面圖標的全局變量
  628. U.MD.D.I.guzmsStudentDeskIcon = [
  629. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  630. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  631. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  632. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  633. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  634. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  635. ];
  636. //福田
  637. U.MD.D.I.gdjgTeacherDeskIcon = [
  638. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  639. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  640. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  641. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  642. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  643. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  644. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  645. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  646. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  647. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  650. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  651. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  652. ];
  653. //gdjg
  654. U.MD.D.I.gdjgAdminDeskIcon = [
  655. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  656. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  657. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  658. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  659. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  660. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  661. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  662. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  663. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  666. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  667. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  668. ];
  669. //hk
  670. U.MD.D.I.hkteacherDeskIcon = [
  671. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  674. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  675. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  676. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  677. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  678. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  679. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  680. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  681. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  682. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  684. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  687. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  688. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  690. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  693. ];
  694. //ricoh
  695. U.MD.D.I.ricohteacherDeskIcon = [
  696. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  697. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  698. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  699. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  700. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  701. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  702. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  703. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  704. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  705. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkStudentDeskIcon = [
  709. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  710. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  711. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  712. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. ];
  716. //hk
  717. U.MD.D.I.hkaceteacherDeskIcon = [
  718. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  719. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  720. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  721. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  722. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  723. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  724. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  725. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  726. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  727. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  728. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  729. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  730. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  731. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  735. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  737. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  738. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  739. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  740. ];
  741. //hk
  742. U.MD.D.I.hkaceStudentDeskIcon = [
  743. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  744. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  745. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  746. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  747. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  749. ];
  750. //香海正覺蓮社佛教正覺中學
  751. U.MD.D.I.hkZJLSteacherDeskIcon = [
  752. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  753. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  754. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  755. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  756. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  757. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  758. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  759. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  760. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  761. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  762. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  763. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  764. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  765. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  766. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  767. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  768. ];
  769. //香海正覺蓮社佛教正覺中學
  770. U.MD.D.I.hkZJLSStudentDeskIcon = [
  771. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  772. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  775. ];
  776. //雲海
  777. U.MD.D.I.yunhaiTeacherDeskIcon = [
  778. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  781. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  782. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  783. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  784. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  785. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  786. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  787. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  788. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  789. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  790. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  791. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  792. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  793. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  794. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanTeacherDeskIcon = [
  799. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  807. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  808. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  809. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  810. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  811. ];
  812. //福田
  813. U.MD.D.I.heyuanAdminDeskIcon = [
  814. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  815. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  816. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  817. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  818. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  819. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  820. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  821. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  822. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  823. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  824. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  825. ];
  826. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  827. U.MD.D.I.szherTeacherDeskIcon = [
  828. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  829. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  830. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  831. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  832. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  833. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  834. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  835. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  836. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  837. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  838. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  839. ];
  840. //dsei
  841. U.MD.D.I.dseiTeacherDeskIcon = [
  842. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  843. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  844. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  845. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  846. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  847. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  848. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  849. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  850. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  851. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  852. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  853. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  854. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  855. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  856. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  857. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  858. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  859. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  860. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  861. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  862. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  863. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  864. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  865. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  866. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  867. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  868. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  869. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  870. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  871. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  872. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  873. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  874. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  875. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  876. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  877. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  878. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  879. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  880. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  881. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  882. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  883. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  884. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  885. ];
  886. //dsei
  887. U.MD.D.I.dseiAdminDeskIcon = [
  888. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  889. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  890. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  891. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  892. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  893. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  894. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  895. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  896. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  897. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  898. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  899. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  900. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  901. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  902. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  903. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  904. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  905. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  906. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  907. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  908. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  909. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  910. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  911. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  912. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  913. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  914. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  915. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  916. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  917. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  918. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  919. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  920. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  921. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  922. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  923. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  924. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  925. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  928. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  929. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  930. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  931. ];
  932. //dsei
  933. U.MD.D.I.dseiStudentDeskIcon = [
  934. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  935. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  936. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  937. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  940. ];
  941. //未來教育基地
  942. U.MD.D.I.szjkyTeacherDeskIcon = [
  943. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  944. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  945. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  946. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  947. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  948. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  949. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  950. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  951. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  952. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  953. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  954. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  955. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  956. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  959. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  960. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  961. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  962. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  963. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  964. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  965. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  966. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  967. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  968. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  969. ];
  970. //未來教育基地
  971. U.MD.D.I.szjkyAdminDeskIcon = [
  972. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  973. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  974. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  975. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  976. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  977. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  978. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  979. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  980. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  981. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  982. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  983. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  984. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  985. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  986. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  987. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  989. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  990. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  991. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  992. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  993. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  994. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  995. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  996. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  997. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  998. ];
  999. //未來教育基地
  1000. U.MD.D.I.szjkyStudentDeskIcon = [
  1001. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1005. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1006. ];
  1007. //成華教育局
  1008. U.MD.D.I.chjyjTeacherDeskIcon = [
  1009. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1010. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1011. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1012. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1013. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1014. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1015. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1016. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1017. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1018. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1019. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成華教育局chjyj
  1025. U.MD.D.I.chjyjAdminDeskIcon = [
  1026. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1027. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1031. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1032. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1033. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1034. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1035. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1036. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1037. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1039. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. ];
  1042. //成華教育局chjyj
  1043. U.MD.D.I.chjyjStudentDeskIcon = [
  1044. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. ];
  1049. //tpc
  1050. U.MD.D.I.tpcStudentDeskIcon = [
  1051. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. ];
  1056. //tpc
  1057. U.MD.D.I.tpcTeacherDeskIcon = [
  1058. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1059. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1060. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1061. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1062. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1063. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1064. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1065. ];
  1066. //tpc
  1067. U.MD.D.I.tpcAdminDeskIcon = [
  1068. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1069. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1070. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1071. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1072. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1074. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1075. ];
  1076. //THU-IOE
  1077. U.MD.D.I.thuioeTeacherDeskIcon = [
  1078. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1079. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1080. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1081. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1082. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1083. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1084. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1085. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1086. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1087. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1088. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1089. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1090. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1091. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1092. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1093. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1094. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1095. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1096. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1097. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1098. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1099. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1100. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1101. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1102. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1103. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1104. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1105. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1106. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1107. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1108. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1109. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1110. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1111. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1112. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1115. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1116. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1117. ];
  1118. //THU-IOE
  1119. U.MD.D.I.thuioeStudentDeskIcon = [
  1120. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "項目管理", "Url": "studentCourse", "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. ];
  1125. //jccssyl
  1126. U.MD.D.I.jccssylTeacherDeskIcon = [
  1127. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1128. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1129. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1130. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1131. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1132. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1133. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1134. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1139. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1140. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1141. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1143. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1144. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1145. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1146. ];
  1147. //jccssyl
  1148. U.MD.D.I.jccssylStudentDeskIcon = [
  1149. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1150. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1151. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1152. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1153. ];
  1154. //cale
  1155. U.MD.D.I.caleTeacherDeskIcon = [
  1156. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1157. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1158. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1159. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1160. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1161. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1162. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1163. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1164. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1165. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1166. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1167. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1168. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1169. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1170. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1171. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1172. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1173. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1174. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1175. ];
  1176. //cale
  1177. U.MD.D.I.caleStudentDeskIcon = [
  1178. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1179. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1180. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1181. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1182. ];
  1183. //lqwmsgzs
  1184. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1185. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1186. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1187. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1188. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1189. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1190. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1191. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1192. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1193. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1194. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1195. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1196. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1197. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1198. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1199. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1200. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1201. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1202. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1203. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1204. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1205. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1206. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1207. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1208. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1209. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1210. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1211. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1212. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1213. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1214. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1215. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1216. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1217. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1218. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1220. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1221. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1222. ];
  1223. //lqwmsgzs
  1224. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1225. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1226. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1227. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1228. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1229. ];
  1230. //鹽田區幼兒園
  1231. U.MD.D.I.ytyTeacherDeskIcon = [
  1232. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1233. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1235. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1236. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1237. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1238. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1239. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1240. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1241. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1242. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1243. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1244. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1245. ];
  1246. //鹽田區幼兒園
  1247. U.MD.D.I.ytyStudentDeskIcon = [
  1248. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1249. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1250. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1254. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiAdminDeskIcon = [
  1280. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1281. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1282. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1283. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1284. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1285. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1286. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1287. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1288. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1289. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1290. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1291. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1292. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1294. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1296. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1297. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1298. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1299. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1300. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1301. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1302. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1303. ];
  1304. //scnuai
  1305. U.MD.D.I.scnuaiStudentDeskIcon = [
  1306. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "項目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1310. ];
  1311. //cocobiz
  1312. U.MD.D.I.cocobizteacherDeskIcon = [
  1313. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1314. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1315. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1316. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1317. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1318. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1319. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1320. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1321. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1322. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1323. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1324. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1325. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1326. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1328. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1329. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1330. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1331. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1332. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1333. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1334. ];
  1335. //cocobiz
  1336. U.MD.D.I.cocobizStudentDeskIcon = [
  1337. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1338. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1339. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1340. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1343. ];
  1344. //xxzjky
  1345. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1346. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1347. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1348. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1349. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1350. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1351. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1352. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1353. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1355. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1356. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1357. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1358. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1359. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1361. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1362. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1363. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1364. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1365. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1366. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1367. ];
  1368. //xxzjky
  1369. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1370. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1371. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1372. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1373. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1375. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. ];
  1377. //nsfx
  1378. U.MD.D.I.nsfxTeacherDeskIcon = [
  1379. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1380. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1381. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1382. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1383. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1384. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1385. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1386. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1387. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1388. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1389. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1390. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1391. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1392. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1393. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1394. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1395. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1396. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1397. ];
  1398. //nsfx
  1399. U.MD.D.I.nsfxStudentDeskIcon = [
  1400. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1401. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1402. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1403. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1404. ];
  1405. //stia
  1406. U.MD.D.I.stiaTeacherDeskIcon = [
  1407. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1408. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1409. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1410. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1411. // { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1412. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1413. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1414. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1415. // { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1416. // { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1417. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1418. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1419. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1420. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1421. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1422. ];
  1423. //stia
  1424. U.MD.D.I.stiaStudentDeskIcon = [
  1425. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1426. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1427. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1428. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1429. ];
  1430. //szdjg
  1431. U.MD.D.I.szdjgTeacherDeskIcon = [
  1432. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1433. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1434. ];
  1435. //szdjg
  1436. U.MD.D.I.szdjgStudentDeskIcon = [
  1437. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1438. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1439. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1440. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1441. ];
  1442. //010607
  1443. U.MD.D.I.x010607TeacherDeskIcon = [
  1444. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1445. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1446. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1447. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1448. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1449. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1450. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1451. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1452. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1453. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1454. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1455. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1456. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1457. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1458. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1459. ];
  1460. //010607
  1461. U.MD.D.I.x010607StudentDeskIcon = [
  1462. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1463. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1464. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1465. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. ];
  1467. //010608
  1468. U.MD.D.I.x010608TeacherDeskIcon = [
  1469. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1477. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1479. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1480. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1481. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1482. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1483. ];
  1484. //010608
  1485. U.MD.D.I.x010608StudentDeskIcon = [
  1486. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //xhly
  1492. U.MD.D.I.xhlyTeacherDeskIcon = [
  1493. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. ];
  1495. //010608
  1496. U.MD.D.I.xhlyStudentDeskIcon = [
  1497. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. ];
  1499. //北師大
  1500. U.MD.D.I.BSDNSteacherDeskIcon = [
  1501. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1502. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1504. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1505. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1506. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1507. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1508. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1509. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1510. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1511. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1512. ];
  1513. //北師大
  1514. U.MD.D.I.BSDNSstudentDeskIcon = [
  1515. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1516. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1517. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1518. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1519. ];
  1520. //CUHK_EDU
  1521. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1522. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1523. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1525. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1526. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1527. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1528. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1529. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1530. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1531. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1532. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1533. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1534. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1535. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1536. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1537. ];
  1538. //CUHK_EDU
  1539. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1540. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1543. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. ];
  1545. //010503
  1546. U.MD.D.I.x010503TeacherDeskIcon = [
  1547. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1550. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1551. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1554. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1555. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1556. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1557. ];
  1558. //010503
  1559. U.MD.D.I.x010503StudentDeskIcon = [
  1560. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1561. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1562. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1563. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1564. ];
  1565. //SPROUT Lab
  1566. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1567. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1568. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1570. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1571. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1572. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1574. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1575. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1576. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1577. ];
  1578. //SPROUT Lab
  1579. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1580. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1581. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1582. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1583. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1584. ];
  1585. //010204
  1586. U.MD.D.I.x010204TeacherDeskIcon = [
  1587. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1588. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1589. ];
  1590. //010204
  1591. U.MD.D.I.x010204StudentDeskIcon = [
  1592. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1593. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1594. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1595. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1596. ];
  1597. //trail
  1598. U.MD.D.I.trailTeacherDeskIcon = [
  1599. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1600. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1601. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1602. ];
  1603. //trail
  1604. U.MD.D.I.trailStudentDeskIcon = [
  1605. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1608. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1609. ];
  1610. //010504
  1611. U.MD.D.I.x010504TeacherDeskIcon = [
  1612. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1613. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1615. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1616. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1617. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1618. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1619. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1620. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1621. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1622. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1623. ];
  1624. //010504
  1625. U.MD.D.I.x010504StudentDeskIcon = [
  1626. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1627. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1628. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1629. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1630. ];
  1631. //010505
  1632. U.MD.D.I.x010505TeacherDeskIcon = [
  1633. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1634. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1636. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1637. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1638. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1639. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1640. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1641. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1642. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1643. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1644. ];
  1645. //010505
  1646. U.MD.D.I.x010505StudentDeskIcon = [
  1647. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1648. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1649. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1650. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1651. ];
  1652. //SCNUET
  1653. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1654. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1655. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1656. { "Name": "項目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1659. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1660. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1661. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1662. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1663. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1664. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1665. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1666. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1667. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1668. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1669. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1670. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1671. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1672. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1673. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1674. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1675. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1676. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1677. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1678. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1679. ];
  1680. //SCNUET
  1681. U.MD.D.I.SCNUETAdminDeskIcon = [
  1682. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1683. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1687. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1688. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1689. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1690. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1691. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1692. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1693. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1694. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1695. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1696. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1697. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1698. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1699. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1700. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1701. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1702. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1703. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1704. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1705. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1706. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1707. ];
  1708. //SCNUET
  1709. U.MD.D.I.SCNUETStudentDeskIcon = [
  1710. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1711. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1712. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1713. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. ];
  1715. //x020201
  1716. U.MD.D.I.x020201TeacherDeskIcon = [
  1717. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1718. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1719. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1720. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1721. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1722. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1723. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1724. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1725. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1726. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1727. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1728. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1730. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1731. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1732. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1733. ];
  1734. //x020201
  1735. U.MD.D.I.x020201AdminDeskIcon = [
  1736. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1737. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1738. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1739. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1740. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1741. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1742. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1743. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1744. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1745. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1747. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1748. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1749. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1750. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1751. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1752. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1753. ];
  1754. //020201
  1755. U.MD.D.I.x020201StudentDeskIcon = [
  1756. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1757. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1760. ];
  1761. //010611
  1762. U.MD.D.I.x010611TeacherDeskIcon = [
  1763. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1764. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1765. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1766. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1767. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1768. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1769. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1770. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1771. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1772. ];
  1773. //010611
  1774. U.MD.D.I.x010611StudentDeskIcon = [
  1775. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1776. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1777. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1778. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1779. ];
  1780. //010612
  1781. U.MD.D.I.x010612TeacherDeskIcon = [
  1782. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1783. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1784. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1785. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1786. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1787. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1788. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1789. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1790. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1791. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1792. ];
  1793. //010612
  1794. U.MD.D.I.x010612StudentDeskIcon = [
  1795. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1796. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1797. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1798. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. ];
  1800. //tianyuan
  1801. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1802. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1803. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1804. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1805. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1809. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1810. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1811. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1812. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1813. ];
  1814. //010611
  1815. U.MD.D.I.tianyuanStudentDeskIcon = [
  1816. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1817. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1818. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1819. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1820. ];
  1821. //320101
  1822. U.MD.D.I.x320101TeacherDeskIcon = [
  1823. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1824. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1825. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1826. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1827. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1828. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1830. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1831. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1832. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1834. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1835. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1836. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1837. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1838. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1839. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1840. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1841. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1842. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1843. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1844. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1845. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1847. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1848. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1850. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1851. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1852. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1853. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1855. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1856. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1857. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1858. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1859. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1860. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1861. ];
  1862. //320101
  1863. U.MD.D.I.x320101StudentDeskIcon = [
  1864. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1865. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1866. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1867. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1868. ];
  1869. //szsy
  1870. U.MD.D.I.szsyTeacherDeskIcon = [
  1871. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1872. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1873. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1874. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1875. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1876. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1877. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1878. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1879. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1880. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1881. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1882. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1883. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1884. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1885. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1886. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1887. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1888. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1889. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1890. ];
  1891. //szsy
  1892. U.MD.D.I.szsyStudentDeskIcon = [
  1893. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1894. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1895. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1896. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1897. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1898. ];
  1899. //010404
  1900. U.MD.D.I.x010404TeacherDeskIcon = [
  1901. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1902. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1903. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1904. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1905. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1906. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1907. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1908. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1909. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1910. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1911. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1912. ];
  1913. //010404
  1914. U.MD.D.I.x010404StudentDeskIcon = [
  1915. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1916. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1917. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1918. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1919. ];
  1920. //#region 桌面初始化a
  1921. /**
  1922. * 初始化桌面的起始函數
  1923. *
  1924. */
  1925. U.MD.D.I.init = function () {
  1926. if ($("#U_MD_D_K")[0]) {
  1927. //初始化桌面圖標
  1928. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1929. // var clickUrl = ':12588/requestIp.php';
  1930. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1931. // U.MD.D.I.Ip = data;
  1932. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1933. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1934. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1935. // })
  1936. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1937. // })
  1938. }
  1939. }
  1940. /**
  1941. * 模式切換
  1942. *
  1943. */
  1944. U.MD.D.I.ModeCheck = function (type) {
  1945. if (US.Config.type == type) {
  1946. return
  1947. }
  1948. US.Config.type = type
  1949. $('.U_PBL_Check .active')[0].className = ''
  1950. if (type == 1) {
  1951. $('.U_PBL_Check div')[0].className = 'active'
  1952. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1953. } else {
  1954. $('.U_PBL_Check div')[1].className = 'active'
  1955. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1956. }
  1957. //初始化桌面圖標
  1958. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1959. if (type == 2) {
  1960. U.MD.D.I.openApplication("project")
  1961. }
  1962. }
  1963. /**
  1964. * 隱藏任務欄
  1965. *
  1966. * @param {element} 桌面元素
  1967. */
  1968. U.MD.D.I.hiddenTaskbar = function (el) {
  1969. //任務欄位置變小
  1970. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1971. //桌面的位置變大
  1972. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1973. }
  1974. /**
  1975. * 隱藏任務欄
  1976. *
  1977. * @param {element} 桌面元素
  1978. */
  1979. U.MD.D.I.hiddenTaskbarout = function (el) {
  1980. //任務欄位置變小
  1981. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1982. //任務欄位置變化
  1983. U.selectEl(el).css({ "bottom": "-60px" });
  1984. //桌面的位置變大
  1985. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1986. }
  1987. }
  1988. /**
  1989. * 初始化打印桌面圖標
  1990. *
  1991. * @param {element} 桌面元素
  1992. */
  1993. U.MD.D.I.initDesktopIcons = function (el, type) {
  1994. var i, //用於循環
  1995. _content, //桌面圖標元素
  1996. _iconcontent, //桌面圖標元素
  1997. _frag = $$("frag"), //定義一個碎片元素
  1998. _type = US.userInfo.type,
  1999. _org = US.userInfo.org,
  2000. _oid = US.userInfo.organizeid,
  2001. _role = US.userInfo.role,
  2002. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  2003. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  2004. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  2005. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  2006. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  2007. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  2008. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  2009. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2010. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2011. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2012. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  2013. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  2014. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  2015. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  2016. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  2017. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  2018. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  2019. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  2020. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  2021. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  2022. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  2023. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  2024. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  2025. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  2026. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2027. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2028. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  2029. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  2030. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  2031. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  2032. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  2033. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  2034. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2035. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2036. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2037. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2038. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2039. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2040. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2041. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2042. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2043. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  2044. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2045. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2046. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2047. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2048. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  2049. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2050. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2051. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2052. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2053. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2054. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2055. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2056. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2057. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2058. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2059. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2060. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  2061. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2062. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2063. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2064. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2065. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2066. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2067. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2068. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2069. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2070. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2071. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2072. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  2073. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  2074. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  2075. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  2076. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2077. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2078. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2079. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2080. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2081. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2082. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2083. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2084. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2085. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2086. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2087. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2088. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2089. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2090. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2091. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2092. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2093. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2094. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2095. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2096. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2097. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2098. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2099. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2100. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2101. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2102. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2103. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2104. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2105. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2106. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2107. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2108. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2109. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2110. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2111. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2112. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2113. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2114. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2115. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2116. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2117. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2118. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2119. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2120. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2121. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2122. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2123. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2124. 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'];
  2125. 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'];
  2126. //清楚桌面圖標
  2127. el.innerHTML = "";
  2128. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2129. _teacherDesktopIconInfo.push(
  2130. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2131. { "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)" } },
  2132. )
  2133. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2134. }
  2135. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2136. _teacherDesktopIconInfo.push(
  2137. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2138. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2139. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2140. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2141. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2142. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2143. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2144. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2145. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2146. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2147. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2149. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2150. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2151. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2152. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2153. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2154. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2155. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2156. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2157. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2158. )
  2159. }
  2160. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  2161. _teacherDesktopIconInfo.push(
  2162. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2163. )
  2164. }
  2165. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪學校
  2166. _nsfxTeacherDeskIconInfo.push(
  2167. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2168. )
  2169. }
  2170. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2171. // _teacherDesktopIconInfo.push(
  2172. // )
  2173. // }
  2174. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2175. _teacherDesktopIconInfo.push(
  2176. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2177. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2178. )
  2179. }
  2180. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2181. _teacherDesktopIconInfo.push(
  2182. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2183. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2184. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2185. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2186. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2187. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2188. )
  2189. _studentDesktopIconInfo.push(
  2190. )
  2191. }
  2192. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2193. _teacherDesktopIconInfo.push(
  2194. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2195. )
  2196. _studentDesktopIconInfo.push(
  2197. )
  2198. }
  2199. //010606 組織
  2200. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2201. _teacherDesktopIconInfo.push(
  2202. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2203. )
  2204. _studentDesktopIconInfo.push(
  2205. )
  2206. }
  2207. //麒麟二中 和 民新小學
  2208. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2209. _teacherDesktopIconInfo.push(
  2210. )
  2211. }
  2212. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2213. _teacherDesktopIconInfo.push(
  2214. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2215. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2216. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2217. )
  2218. }
  2219. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2220. _hkTeacherDeskIconInfo.push(
  2221. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2222. )
  2223. }
  2224. //北師大附中(010601)
  2225. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2226. // _teacherDesktopIconInfo.push(
  2227. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2228. // )
  2229. // _studentDesktopIconInfo.push(
  2230. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2231. // )
  2232. // }
  2233. //樂善堂余近卿中學
  2234. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2235. _teacherDesktopIconInfo.push(
  2236. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2237. )
  2238. }
  2239. // Education Artificial Intelligence
  2240. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2241. _teacherDesktopIconInfo.push(
  2242. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2243. )
  2244. }
  2245. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2246. _teacherDesktopIconInfo.push(
  2247. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2248. )
  2249. }
  2250. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2251. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2252. _teacherDesktopIconInfo.push(
  2253. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2254. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2255. )
  2256. }
  2257. //麒麟二中
  2258. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2259. _studentDesktopIconInfo.push(
  2260. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2261. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2262. )
  2263. }
  2264. //萬科雙語
  2265. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2266. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2267. if (el.Name == '項目管理') {
  2268. el.Name = 'PBL項目'
  2269. }
  2270. return el
  2271. })
  2272. _studentDesktopIconInfo3.push(
  2273. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2274. )
  2275. }
  2276. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2277. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2278. return el.Name != '魔盒識字' && el.Name != '24點'
  2279. })
  2280. }
  2281. 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) {
  2282. _studentDesktopIconInfo.push(
  2283. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2284. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2285. )
  2286. }
  2287. //循環創建桌面圖標
  2288. if (type == 1) {
  2289. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2290. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2291. _content = $$("div", {
  2292. className: "U_MD_D_KO",
  2293. "onmousedown": U.UF.C.closure(function (obj) {
  2294. //防止拖動圖標即打開了桌面應用
  2295. U.MD.D.click(this, obj);
  2296. }, [_studentDesktopIconInfo[i]]),
  2297. "onclick": U.UF.C.closure(function (obj) {
  2298. //防止拖動圖標即打開了桌面應用
  2299. U.MD.D.click(this, obj);
  2300. }, [_studentDesktopIconInfo[i]])
  2301. }, _frag); //
  2302. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2303. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2304. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2305. }
  2306. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2307. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2308. _content = $$("div", {
  2309. className: "U_MD_D_KO",
  2310. "onmousedown": U.UF.C.closure(function (obj) {
  2311. //防止拖動圖標即打開了桌面應用
  2312. U.MD.D.click(this, obj);
  2313. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2314. "onclick": U.UF.C.closure(function (obj) {
  2315. //防止拖動圖標即打開了桌面應用
  2316. U.MD.D.click(this, obj);
  2317. }, [_hkZJLSStudentDeskIconInfo[i]])
  2318. }, _frag); //
  2319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2322. } //
  2323. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2324. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2325. _content = $$("div", {
  2326. className: "U_MD_D_KO",
  2327. "onmousedown": U.UF.C.closure(function (obj) {
  2328. //防止拖動圖標即打開了桌面應用
  2329. U.MD.D.click(this, obj);
  2330. }, [_ytyStudentDeskIconInfo[i]]),
  2331. "onclick": U.UF.C.closure(function (obj) {
  2332. //防止拖動圖標即打開了桌面應用
  2333. U.MD.D.click(this, obj);
  2334. }, [_ytyStudentDeskIconInfo[i]])
  2335. }, _frag); //
  2336. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2337. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2338. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2339. } //
  2340. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2341. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2342. _content = $$("div", {
  2343. className: "U_MD_D_KO",
  2344. "onmousedown": U.UF.C.closure(function (obj) {
  2345. //防止拖動圖標即打開了桌面應用
  2346. U.MD.D.click(this, obj);
  2347. }, [_jccssylStudentDeskIconInfo[i]]),
  2348. "onclick": U.UF.C.closure(function (obj) {
  2349. //防止拖動圖標即打開了桌面應用
  2350. U.MD.D.click(this, obj);
  2351. }, [_jccssylStudentDeskIconInfo[i]])
  2352. }, _frag); //
  2353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2356. }
  2357. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2358. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2359. _content = $$("div", {
  2360. className: "U_MD_D_KO",
  2361. "onmousedown": U.UF.C.closure(function (obj) {
  2362. //防止拖動圖標即打開了桌面應用
  2363. U.MD.D.click(this, obj);
  2364. }, [_scnuaiStudentDeskIconInfo[i]]),
  2365. "onclick": U.UF.C.closure(function (obj) {
  2366. //防止拖動圖標即打開了桌面應用
  2367. U.MD.D.click(this, obj);
  2368. }, [_scnuaiStudentDeskIconInfo[i]])
  2369. }, _frag); //
  2370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2373. }
  2374. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2375. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2376. _content = $$("div", {
  2377. className: "U_MD_D_KO",
  2378. "onmousedown": U.UF.C.closure(function (obj) {
  2379. //防止拖動圖標即打開了桌面應用
  2380. U.MD.D.click(this, obj);
  2381. }, [_caleStudentDeskIconInfo[i]]),
  2382. "onclick": U.UF.C.closure(function (obj) {
  2383. //防止拖動圖標即打開了桌面應用
  2384. U.MD.D.click(this, obj);
  2385. }, [_caleStudentDeskIconInfo[i]])
  2386. }, _frag); //
  2387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2390. }
  2391. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2392. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2393. _content = $$("div", {
  2394. className: "U_MD_D_KO",
  2395. "onmousedown": U.UF.C.closure(function (obj) {
  2396. //防止拖動圖標即打開了桌面應用
  2397. U.MD.D.click(this, obj);
  2398. }, [_thuioeStudentDeskIconInfo[i]]),
  2399. "onclick": U.UF.C.closure(function (obj) {
  2400. //防止拖動圖標即打開了桌面應用
  2401. U.MD.D.click(this, obj);
  2402. }, [_thuioeStudentDeskIconInfo[i]])
  2403. }, _frag); //
  2404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2407. }
  2408. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2409. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2410. _content = $$("div", {
  2411. className: "U_MD_D_KO",
  2412. "onmousedown": U.UF.C.closure(function (obj) {
  2413. //防止拖動圖標即打開了桌面應用
  2414. U.MD.D.click(this, obj);
  2415. }, [_tpcStudentDeskIconInfo[i]]),
  2416. "onclick": U.UF.C.closure(function (obj) {
  2417. //防止拖動圖標即打開了桌面應用
  2418. U.MD.D.click(this, obj);
  2419. }, [_tpcStudentDeskIconInfo[i]])
  2420. }, _frag); //
  2421. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2422. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2423. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2424. } //
  2425. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2426. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2427. _content = $$("div", {
  2428. className: "U_MD_D_KO",
  2429. "onmousedown": U.UF.C.closure(function (obj) {
  2430. //防止拖動圖標即打開了桌面應用
  2431. U.MD.D.click(this, obj);
  2432. }, [_chjyjStudentDeskIconInfo[i]]),
  2433. "onclick": U.UF.C.closure(function (obj) {
  2434. //防止拖動圖標即打開了桌面應用
  2435. U.MD.D.click(this, obj);
  2436. }, [_chjyjStudentDeskIconInfo[i]])
  2437. }, _frag); //
  2438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2441. }
  2442. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2443. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2444. _content = $$("div", {
  2445. className: "U_MD_D_KO",
  2446. "onmousedown": U.UF.C.closure(function (obj) {
  2447. //防止拖動圖標即打開了桌面應用
  2448. U.MD.D.click(this, obj);
  2449. }, [_szjkyStudentDeskIconInfo[i]]),
  2450. "onclick": U.UF.C.closure(function (obj) {
  2451. //防止拖動圖標即打開了桌面應用
  2452. U.MD.D.click(this, obj);
  2453. }, [_szjkyStudentDeskIconInfo[i]])
  2454. }, _frag); //
  2455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2458. }
  2459. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2460. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2461. _content = $$("div", {
  2462. className: "U_MD_D_KO",
  2463. "onmousedown": U.UF.C.closure(function (obj) {
  2464. //防止拖動圖標即打開了桌面應用
  2465. U.MD.D.click(this, obj);
  2466. }, [_x020201StudentDeskIconInfo[i]]),
  2467. "onclick": U.UF.C.closure(function (obj) {
  2468. //防止拖動圖標即打開了桌面應用
  2469. U.MD.D.click(this, obj);
  2470. }, [_x020201StudentDeskIconInfo[i]])
  2471. }, _frag); //
  2472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2475. }
  2476. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2477. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2478. _content = $$("div", {
  2479. className: "U_MD_D_KO",
  2480. "onmousedown": U.UF.C.closure(function (obj) {
  2481. //防止拖動圖標即打開了桌面應用
  2482. U.MD.D.click(this, obj);
  2483. }, [_SCNUETStudentDeskIconInfo[i]]),
  2484. "onclick": U.UF.C.closure(function (obj) {
  2485. //防止拖動圖標即打開了桌面應用
  2486. U.MD.D.click(this, obj);
  2487. }, [_SCNUETStudentDeskIconInfo[i]])
  2488. }, _frag); //
  2489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2492. }
  2493. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2494. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2495. _content = $$("div", {
  2496. className: "U_MD_D_KO",
  2497. "onmousedown": U.UF.C.closure(function (obj) {
  2498. //防止拖動圖標即打開了桌面應用
  2499. U.MD.D.click(this, obj);
  2500. }, [_dseiStudentDeskIconInfo[i]]),
  2501. "onclick": U.UF.C.closure(function (obj) {
  2502. //防止拖動圖標即打開了桌面應用
  2503. U.MD.D.click(this, obj);
  2504. }, [_dseiStudentDeskIconInfo[i]])
  2505. }, _frag); //
  2506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2509. }
  2510. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2511. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2512. _content = $$("div", {
  2513. className: "U_MD_D_KO",
  2514. "onmousedown": U.UF.C.closure(function (obj) {
  2515. //防止拖動圖標即打開了桌面應用
  2516. U.MD.D.click(this, obj);
  2517. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2518. "onclick": U.UF.C.closure(function (obj) {
  2519. //防止拖動圖標即打開了桌面應用
  2520. U.MD.D.click(this, obj);
  2521. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2522. }, _frag); //
  2523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2526. }
  2527. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2528. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2529. _content = $$("div", {
  2530. className: "U_MD_D_KO",
  2531. "onmousedown": U.UF.C.closure(function (obj) {
  2532. //防止拖動圖標即打開了桌面應用
  2533. U.MD.D.click(this, obj);
  2534. }, [_nsfxStudentDeskIconInfo[i]]),
  2535. "onclick": U.UF.C.closure(function (obj) {
  2536. //防止拖動圖標即打開了桌面應用
  2537. U.MD.D.click(this, obj);
  2538. }, [_nsfxStudentDeskIconInfo[i]])
  2539. }, _frag); //
  2540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2543. }
  2544. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2545. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2546. _content = $$("div", {
  2547. className: "U_MD_D_KO",
  2548. "onmousedown": U.UF.C.closure(function (obj) {
  2549. //防止拖動圖標即打開了桌面應用
  2550. U.MD.D.click(this, obj);
  2551. }, [_stiaStudentDeskIconInfo[i]]),
  2552. "onclick": U.UF.C.closure(function (obj) {
  2553. //防止拖動圖標即打開了桌面應用
  2554. U.MD.D.click(this, obj);
  2555. }, [_stiaStudentDeskIconInfo[i]])
  2556. }, _frag); //
  2557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2560. }
  2561. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2562. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2563. _content = $$("div", {
  2564. className: "U_MD_D_KO",
  2565. "onmousedown": U.UF.C.closure(function (obj) {
  2566. //防止拖動圖標即打開了桌面應用
  2567. U.MD.D.click(this, obj);
  2568. }, [_szdjgStudentDeskIconInfo[i]]),
  2569. "onclick": U.UF.C.closure(function (obj) {
  2570. //防止拖動圖標即打開了桌面應用
  2571. U.MD.D.click(this, obj);
  2572. }, [_szdjgStudentDeskIconInfo[i]])
  2573. }, _frag); //
  2574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2577. }
  2578. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2579. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2580. _content = $$("div", {
  2581. className: "U_MD_D_KO",
  2582. "onmousedown": U.UF.C.closure(function (obj) {
  2583. //防止拖動圖標即打開了桌面應用
  2584. U.MD.D.click(this, obj);
  2585. }, [_x010607StudentDeskIconInfo[i]]),
  2586. "onclick": U.UF.C.closure(function (obj) {
  2587. //防止拖動圖標即打開了桌面應用
  2588. U.MD.D.click(this, obj);
  2589. }, [_x010607StudentDeskIconInfo[i]])
  2590. }, _frag); //
  2591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2594. }
  2595. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2596. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2597. _content = $$("div", {
  2598. className: "U_MD_D_KO",
  2599. "onmousedown": U.UF.C.closure(function (obj) {
  2600. //防止拖動圖標即打開了桌面應用
  2601. U.MD.D.click(this, obj);
  2602. }, [_xhlyStudentDeskIconInfo[i]]),
  2603. "onclick": U.UF.C.closure(function (obj) {
  2604. //防止拖動圖標即打開了桌面應用
  2605. U.MD.D.click(this, obj);
  2606. }, [_xhlyStudentDeskIconInfo[i]])
  2607. }, _frag); //
  2608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2611. }
  2612. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2613. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2614. _content = $$("div", {
  2615. className: "U_MD_D_KO",
  2616. "onmousedown": U.UF.C.closure(function (obj) {
  2617. //防止拖動圖標即打開了桌面應用
  2618. U.MD.D.click(this, obj);
  2619. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2620. "onclick": U.UF.C.closure(function (obj) {
  2621. //防止拖動圖標即打開了桌面應用
  2622. U.MD.D.click(this, obj);
  2623. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2624. }, _frag); //
  2625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2628. }
  2629. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2630. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2631. _content = $$("div", {
  2632. className: "U_MD_D_KO",
  2633. "onmousedown": U.UF.C.closure(function (obj) {
  2634. //防止拖動圖標即打開了桌面應用
  2635. U.MD.D.click(this, obj);
  2636. }, [_x010503StudentDeskIconInfo[i]]),
  2637. "onclick": U.UF.C.closure(function (obj) {
  2638. //防止拖動圖標即打開了桌面應用
  2639. U.MD.D.click(this, obj);
  2640. }, [_x010503StudentDeskIconInfo[i]])
  2641. }, _frag); //
  2642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2645. }
  2646. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2647. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2648. _content = $$("div", {
  2649. className: "U_MD_D_KO",
  2650. "onmousedown": U.UF.C.closure(function (obj) {
  2651. //防止拖動圖標即打開了桌面應用
  2652. U.MD.D.click(this, obj);
  2653. }, [_x010504StudentDeskIconInfo[i]]),
  2654. "onclick": U.UF.C.closure(function (obj) {
  2655. //防止拖動圖標即打開了桌面應用
  2656. U.MD.D.click(this, obj);
  2657. }, [_x010504StudentDeskIconInfo[i]])
  2658. }, _frag); //
  2659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2662. }
  2663. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2664. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2665. _content = $$("div", {
  2666. className: "U_MD_D_KO",
  2667. "onmousedown": U.UF.C.closure(function (obj) {
  2668. //防止拖動圖標即打開了桌面應用
  2669. U.MD.D.click(this, obj);
  2670. }, [_x010505StudentDeskIconInfo[i]]),
  2671. "onclick": U.UF.C.closure(function (obj) {
  2672. //防止拖動圖標即打開了桌面應用
  2673. U.MD.D.click(this, obj);
  2674. }, [_x010505StudentDeskIconInfo[i]])
  2675. }, _frag); //
  2676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2679. }
  2680. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2681. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2682. _content = $$("div", {
  2683. className: "U_MD_D_KO",
  2684. "onmousedown": U.UF.C.closure(function (obj) {
  2685. //防止拖動圖標即打開了桌面應用
  2686. U.MD.D.click(this, obj);
  2687. }, [_x010404StudentDeskIconInfo[i]]),
  2688. "onclick": U.UF.C.closure(function (obj) {
  2689. //防止拖動圖標即打開了桌面應用
  2690. U.MD.D.click(this, obj);
  2691. }, [_x010404StudentDeskIconInfo[i]])
  2692. }, _frag); //
  2693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2696. }
  2697. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2698. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2699. _content = $$("div", {
  2700. className: "U_MD_D_KO",
  2701. "onmousedown": U.UF.C.closure(function (obj) {
  2702. //防止拖動圖標即打開了桌面應用
  2703. U.MD.D.click(this, obj);
  2704. }, [_x010204StudentDeskIconInfo[i]]),
  2705. "onclick": U.UF.C.closure(function (obj) {
  2706. //防止拖動圖標即打開了桌面應用
  2707. U.MD.D.click(this, obj);
  2708. }, [_x010204StudentDeskIconInfo[i]])
  2709. }, _frag); //
  2710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2713. }
  2714. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2715. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2716. _content = $$("div", {
  2717. className: "U_MD_D_KO",
  2718. "onmousedown": U.UF.C.closure(function (obj) {
  2719. //防止拖動圖標即打開了桌面應用
  2720. U.MD.D.click(this, obj);
  2721. }, [_x320101StudentDeskIconInfo[i]]),
  2722. "onclick": U.UF.C.closure(function (obj) {
  2723. //防止拖動圖標即打開了桌面應用
  2724. U.MD.D.click(this, obj);
  2725. }, [_x320101StudentDeskIconInfo[i]])
  2726. }, _frag); //
  2727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2730. }
  2731. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2732. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2733. _content = $$("div", {
  2734. className: "U_MD_D_KO",
  2735. "onmousedown": U.UF.C.closure(function (obj) {
  2736. //防止拖動圖標即打開了桌面應用
  2737. U.MD.D.click(this, obj);
  2738. }, [_trailStudentDeskIconInfo[i]]),
  2739. "onclick": U.UF.C.closure(function (obj) {
  2740. //防止拖動圖標即打開了桌面應用
  2741. U.MD.D.click(this, obj);
  2742. }, [_trailStudentDeskIconInfo[i]])
  2743. }, _frag); //
  2744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2747. }
  2748. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2749. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2750. _content = $$("div", {
  2751. className: "U_MD_D_KO",
  2752. "onmousedown": U.UF.C.closure(function (obj) {
  2753. //防止拖動圖標即打開了桌面應用
  2754. U.MD.D.click(this, obj);
  2755. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2756. "onclick": U.UF.C.closure(function (obj) {
  2757. //防止拖動圖標即打開了桌面應用
  2758. U.MD.D.click(this, obj);
  2759. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2760. }, _frag); //
  2761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2764. }
  2765. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2766. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2767. _content = $$("div", {
  2768. className: "U_MD_D_KO",
  2769. "onmousedown": U.UF.C.closure(function (obj) {
  2770. //防止拖動圖標即打開了桌面應用
  2771. U.MD.D.click(this, obj);
  2772. }, [_szsyStudentDeskIconInfo[i]]),
  2773. "onclick": U.UF.C.closure(function (obj) {
  2774. //防止拖動圖標即打開了桌面應用
  2775. U.MD.D.click(this, obj);
  2776. }, [_szsyStudentDeskIconInfo[i]])
  2777. }, _frag); //
  2778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2781. }
  2782. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2783. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2784. _content = $$("div", {
  2785. className: "U_MD_D_KO",
  2786. "onmousedown": U.UF.C.closure(function (obj) {
  2787. //防止拖動圖標即打開了桌面應用
  2788. U.MD.D.click(this, obj);
  2789. }, [_x010608StudentDeskIconInfo[i]]),
  2790. "onclick": U.UF.C.closure(function (obj) {
  2791. //防止拖動圖標即打開了桌面應用
  2792. U.MD.D.click(this, obj);
  2793. }, [_x010608StudentDeskIconInfo[i]])
  2794. }, _frag); //
  2795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2798. }
  2799. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2800. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2801. _content = $$("div", {
  2802. className: "U_MD_D_KO",
  2803. "onmousedown": U.UF.C.closure(function (obj) {
  2804. //防止拖動圖標即打開了桌面應用
  2805. U.MD.D.click(this, obj);
  2806. }, [_x010611StudentDeskIconInfo[i]]),
  2807. "onclick": U.UF.C.closure(function (obj) {
  2808. //防止拖動圖標即打開了桌面應用
  2809. U.MD.D.click(this, obj);
  2810. }, [_x010611StudentDeskIconInfo[i]])
  2811. }, _frag); //
  2812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2815. }
  2816. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2817. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2818. _content = $$("div", {
  2819. className: "U_MD_D_KO",
  2820. "onmousedown": U.UF.C.closure(function (obj) {
  2821. //防止拖動圖標即打開了桌面應用
  2822. U.MD.D.click(this, obj);
  2823. }, [_x010612StudentDeskIconInfo[i]]),
  2824. "onclick": U.UF.C.closure(function (obj) {
  2825. //防止拖動圖標即打開了桌面應用
  2826. U.MD.D.click(this, obj);
  2827. }, [_x010612StudentDeskIconInfo[i]])
  2828. }, _frag); //
  2829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2832. }
  2833. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2834. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2835. _content = $$("div", {
  2836. className: "U_MD_D_KO",
  2837. "onmousedown": U.UF.C.closure(function (obj) {
  2838. //防止拖動圖標即打開了桌面應用
  2839. U.MD.D.click(this, obj);
  2840. }, [_tianyuantudentDeskIconInfo[i]]),
  2841. "onclick": U.UF.C.closure(function (obj) {
  2842. //防止拖動圖標即打開了桌面應用
  2843. U.MD.D.click(this, obj);
  2844. }, [_tianyuantudentDeskIconInfo[i]])
  2845. }, _frag); //
  2846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2849. }
  2850. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2851. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2852. _content = $$("div", {
  2853. className: "U_MD_D_KO",
  2854. "onmousedown": U.UF.C.closure(function (obj) {
  2855. //防止拖動圖標即打開了桌面應用
  2856. U.MD.D.click(this, obj);
  2857. }, [_siesStudentDeskIconInfo[i]]),
  2858. "onclick": U.UF.C.closure(function (obj) {
  2859. //防止拖動圖標即打開了桌面應用
  2860. U.MD.D.click(this, obj);
  2861. }, [_siesStudentDeskIconInfo[i]])
  2862. }, _frag); //
  2863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2866. }
  2867. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2868. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2869. _content = $$("div", {
  2870. className: "U_MD_D_KO",
  2871. "onmousedown": U.UF.C.closure(function (obj) {
  2872. //防止拖動圖標即打開了桌面應用
  2873. U.MD.D.click(this, obj);
  2874. }, [_guzmsStudentDeskIconInfo[i]]),
  2875. "onclick": U.UF.C.closure(function (obj) {
  2876. //防止拖動圖標即打開了桌面應用
  2877. U.MD.D.click(this, obj);
  2878. }, [_guzmsStudentDeskIconInfo[i]])
  2879. }, _frag); //
  2880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2883. }
  2884. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2885. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2886. _content = $$("div", {
  2887. className: "U_MD_D_KO",
  2888. "onmousedown": U.UF.C.closure(function (obj) {
  2889. //防止拖動圖標即打開了桌面應用
  2890. U.MD.D.click(this, obj);
  2891. }, [_hkStudentDeskIconInfo[i]]),
  2892. "onclick": U.UF.C.closure(function (obj) {
  2893. //防止拖動圖標即打開了桌面應用
  2894. U.MD.D.click(this, obj);
  2895. }, [_hkStudentDeskIconInfo[i]])
  2896. }, _frag); //
  2897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2900. }
  2901. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2902. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2903. _content = $$("div", {
  2904. className: "U_MD_D_KO",
  2905. "onmousedown": U.UF.C.closure(function (obj) {
  2906. //防止拖動圖標即打開了桌面應用
  2907. U.MD.D.click(this, obj);
  2908. }, [_hkaceStudentDeskIconInfo[i]]),
  2909. "onclick": U.UF.C.closure(function (obj) {
  2910. //防止拖動圖標即打開了桌面應用
  2911. U.MD.D.click(this, obj);
  2912. }, [_hkaceStudentDeskIconInfo[i]])
  2913. }, _frag); //
  2914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2917. }
  2918. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2919. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2920. _content = $$("div", {
  2921. className: "U_MD_D_KO",
  2922. "onmousedown": U.UF.C.closure(function (obj) {
  2923. //防止拖動圖標即打開了桌面應用
  2924. U.MD.D.click(this, obj);
  2925. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2926. "onclick": U.UF.C.closure(function (obj) {
  2927. //防止拖動圖標即打開了桌面應用
  2928. U.MD.D.click(this, obj);
  2929. }, [_BSDNSstudentDesktopIconInfo[i]])
  2930. }, _frag); //
  2931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2934. }
  2935. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2936. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2937. _content = $$("div", {
  2938. className: "U_MD_D_KO",
  2939. "onmousedown": U.UF.C.closure(function (obj) {
  2940. //防止拖動圖標即打開了桌面應用
  2941. U.MD.D.click(this, obj);
  2942. }, [_cocobizStudentDeskIconInfo[i]]),
  2943. "onclick": U.UF.C.closure(function (obj) {
  2944. //防止拖動圖標即打開了桌面應用
  2945. U.MD.D.click(this, obj);
  2946. }, [_cocobizStudentDeskIconInfo[i]])
  2947. }, _frag); //
  2948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2951. }
  2952. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2953. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2954. _content = $$("div", {
  2955. className: "U_MD_D_KO",
  2956. "onmousedown": U.UF.C.closure(function (obj) {
  2957. //防止拖動圖標即打開了桌面應用
  2958. U.MD.D.click(this, obj);
  2959. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2960. "onclick": U.UF.C.closure(function (obj) {
  2961. //防止拖動圖標即打開了桌面應用
  2962. U.MD.D.click(this, obj);
  2963. }, [_xxzjkyStudentDeskIconInfo[i]])
  2964. }, _frag); //
  2965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2968. }
  2969. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2970. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2971. _content = $$("div", {
  2972. className: "U_MD_D_KO",
  2973. "onmousedown": U.UF.C.closure(function (obj) {
  2974. //防止拖動圖標即打開了桌面應用
  2975. U.MD.D.click(this, obj);
  2976. }, [_studentDesktopIconInfo[i]]),
  2977. "onclick": U.UF.C.closure(function (obj) {
  2978. //防止拖動圖標即打開了桌面應用
  2979. U.MD.D.click(this, obj);
  2980. }, [_studentDesktopIconInfo[i]])
  2981. }, _frag); //
  2982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2985. }
  2986. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2987. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2988. _content = $$("div", {
  2989. className: "U_MD_D_KO",
  2990. "onmousedown": U.UF.C.closure(function (obj) {
  2991. //防止拖動圖標即打開了桌面應用
  2992. U.MD.D.click(this, obj);
  2993. }, [_tcStudentDeskIconInfo[i]]),
  2994. "onclick": U.UF.C.closure(function (obj) {
  2995. //防止拖動圖標即打開了桌面應用
  2996. U.MD.D.click(this, obj);
  2997. }, [_tcStudentDeskIconInfo[i]])
  2998. }, _frag); //
  2999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3002. }
  3003. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3004. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3005. _content = $$("div", {
  3006. className: "U_MD_D_KO",
  3007. "onmousedown": U.UF.C.closure(function (obj) {
  3008. //防止拖動圖標即打開了桌面應用
  3009. U.MD.D.click(this, obj);
  3010. }, [_szscStudentDeskIconInfo[i]]),
  3011. "onclick": U.UF.C.closure(function (obj) {
  3012. //防止拖動圖標即打開了桌面應用
  3013. U.MD.D.click(this, obj);
  3014. }, [_szscStudentDeskIconInfo[i]])
  3015. }, _frag); //
  3016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3019. }
  3020. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3021. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3022. _content = $$("div", {
  3023. className: "U_MD_D_KO",
  3024. "onmousedown": U.UF.C.closure(function (obj) {
  3025. //防止拖動圖標即打開了桌面應用
  3026. U.MD.D.click(this, obj);
  3027. }, [_studentDesktopIconInfo3[i]]),
  3028. "onclick": U.UF.C.closure(function (obj) {
  3029. //防止拖動圖標即打開了桌面應用
  3030. U.MD.D.click(this, obj);
  3031. }, [_studentDesktopIconInfo3[i]])
  3032. }, _frag); //
  3033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3036. }
  3037. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3038. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3039. _content = $$("div", {
  3040. className: "U_MD_D_KO",
  3041. "onmousedown": U.UF.C.closure(function (obj) {
  3042. //防止拖動圖標即打開了桌面應用
  3043. U.MD.D.click(this, obj);
  3044. }, [_studentDesktopIconInfo2[i]]),
  3045. "onclick": U.UF.C.closure(function (obj) {
  3046. //防止拖動圖標即打開了桌面應用
  3047. U.MD.D.click(this, obj);
  3048. }, [_studentDesktopIconInfo2[i]])
  3049. }, _frag); //
  3050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3053. }
  3054. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3055. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3056. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3057. continue
  3058. }
  3059. _content = $$("div", {
  3060. className: "U_MD_D_KO",
  3061. "onmousedown": U.UF.C.closure(function (obj) {
  3062. //防止拖動圖標即打開了桌面應用
  3063. U.MD.D.click(this, obj);
  3064. }, [_wanketeacherDesktopIconInfo[i]]),
  3065. "onclick": U.UF.C.closure(function (obj) {
  3066. //防止拖動圖標即打開了桌面應用
  3067. U.MD.D.click(this, obj);
  3068. }, [_wanketeacherDesktopIconInfo[i]])
  3069. }, _frag); //
  3070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3073. }
  3074. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3075. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3076. _content = $$("div", {
  3077. className: "U_MD_D_KO",
  3078. "onmousedown": U.UF.C.closure(function (obj) {
  3079. //防止拖動圖標即打開了桌面應用
  3080. U.MD.D.click(this, obj);
  3081. }, [_wankeAdminDesktopIconInfo[i]]),
  3082. "onclick": U.UF.C.closure(function (obj) {
  3083. //防止拖動圖標即打開了桌面應用
  3084. U.MD.D.click(this, obj);
  3085. }, [_wankeAdminDesktopIconInfo[i]])
  3086. }, _frag); //
  3087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3090. }
  3091. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3092. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3093. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3094. continue
  3095. }
  3096. _content = $$("div", {
  3097. className: "U_MD_D_KO",
  3098. "onmousedown": U.UF.C.closure(function (obj) {
  3099. //防止拖動圖標即打開了桌面應用
  3100. U.MD.D.click(this, obj);
  3101. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3102. "onclick": U.UF.C.closure(function (obj) {
  3103. //防止拖動圖標即打開了桌面應用
  3104. U.MD.D.click(this, obj);
  3105. }, [_scnuaiTeacherDeskIconInfo[i]])
  3106. }, _frag); //
  3107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3110. }
  3111. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3112. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3113. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3114. continue
  3115. }
  3116. _content = $$("div", {
  3117. className: "U_MD_D_KO",
  3118. "onmousedown": U.UF.C.closure(function (obj) {
  3119. //防止拖動圖標即打開了桌面應用
  3120. U.MD.D.click(this, obj);
  3121. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3122. "onclick": U.UF.C.closure(function (obj) {
  3123. //防止拖動圖標即打開了桌面應用
  3124. U.MD.D.click(this, obj);
  3125. }, [_BSDNSteacherDesktopIconInfo[i]])
  3126. }, _frag); //
  3127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3130. }
  3131. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3132. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖動圖標即打開了桌面應用
  3137. U.MD.D.click(this, obj);
  3138. }, [_scnuaiAdminDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖動圖標即打開了桌面應用
  3141. U.MD.D.click(this, obj);
  3142. }, [_scnuaiAdminDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3149. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3150. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3151. continue
  3152. }
  3153. _content = $$("div", {
  3154. className: "U_MD_D_KO",
  3155. "onmousedown": U.UF.C.closure(function (obj) {
  3156. //防止拖動圖標即打開了桌面應用
  3157. U.MD.D.click(this, obj);
  3158. }, [_jccssylTeacherDeskIconInfo[i]]),
  3159. "onclick": U.UF.C.closure(function (obj) {
  3160. //防止拖動圖標即打開了桌面應用
  3161. U.MD.D.click(this, obj);
  3162. }, [_jccssylTeacherDeskIconInfo[i]])
  3163. }, _frag); //
  3164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3167. }
  3168. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3169. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3170. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3171. continue
  3172. }
  3173. _content = $$("div", {
  3174. className: "U_MD_D_KO",
  3175. "onmousedown": U.UF.C.closure(function (obj) {
  3176. //防止拖動圖標即打開了桌面應用
  3177. U.MD.D.click(this, obj);
  3178. }, [_caleTeacherDeskIconInfo[i]]),
  3179. "onclick": U.UF.C.closure(function (obj) {
  3180. //防止拖動圖標即打開了桌面應用
  3181. U.MD.D.click(this, obj);
  3182. }, [_caleTeacherDeskIconInfo[i]])
  3183. }, _frag); //
  3184. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3187. }
  3188. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3189. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3190. _content = $$("div", {
  3191. className: "U_MD_D_KO",
  3192. "onmousedown": U.UF.C.closure(function (obj) {
  3193. //防止拖動圖標即打開了桌面應用
  3194. U.MD.D.click(this, obj);
  3195. }, [_tpcOrganizerDeskIconInfo[i]]),
  3196. "onclick": U.UF.C.closure(function (obj) {
  3197. //防止拖動圖標即打開了桌面應用
  3198. U.MD.D.click(this, obj);
  3199. }, [_tpcOrganizerDeskIconInfo[i]])
  3200. }, _frag); //
  3201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3204. }
  3205. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3206. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3207. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3208. continue
  3209. }
  3210. _content = $$("div", {
  3211. className: "U_MD_D_KO",
  3212. "onmousedown": U.UF.C.closure(function (obj) {
  3213. //防止拖動圖標即打開了桌面應用
  3214. U.MD.D.click(this, obj);
  3215. }, [_tpcTeacherDeskIconInfo[i]]),
  3216. "onclick": U.UF.C.closure(function (obj) {
  3217. //防止拖動圖標即打開了桌面應用
  3218. U.MD.D.click(this, obj);
  3219. }, [_tpcTeacherDeskIconInfo[i]])
  3220. }, _frag); //
  3221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3224. }
  3225. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3226. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3227. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3228. continue
  3229. }
  3230. _content = $$("div", {
  3231. className: "U_MD_D_KO",
  3232. "onmousedown": U.UF.C.closure(function (obj) {
  3233. //防止拖動圖標即打開了桌面應用
  3234. U.MD.D.click(this, obj);
  3235. }, [_teacherDesktopIconInfo2[i]]),
  3236. "onclick": U.UF.C.closure(function (obj) {
  3237. //防止拖動圖標即打開了桌面應用
  3238. U.MD.D.click(this, obj);
  3239. }, [_teacherDesktopIconInfo2[i]])
  3240. }, _frag); //
  3241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3244. }
  3245. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3246. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3247. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3248. continue
  3249. }
  3250. _content = $$("div", {
  3251. className: "U_MD_D_KO",
  3252. "onmousedown": U.UF.C.closure(function (obj) {
  3253. //防止拖動圖標即打開了桌面應用
  3254. U.MD.D.click(this, obj);
  3255. }, [_thuioeTeacherDeskIconInfo[i]]),
  3256. "onclick": U.UF.C.closure(function (obj) {
  3257. //防止拖動圖標即打開了桌面應用
  3258. U.MD.D.click(this, obj);
  3259. }, [_thuioeTeacherDeskIconInfo[i]])
  3260. }, _frag); //
  3261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3264. }
  3265. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3266. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3267. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3268. continue
  3269. }
  3270. _content = $$("div", {
  3271. className: "U_MD_D_KO",
  3272. "onmousedown": U.UF.C.closure(function (obj) {
  3273. //防止拖動圖標即打開了桌面應用
  3274. U.MD.D.click(this, obj);
  3275. }, [_lotechTeacherDeskIconInfo[i]]),
  3276. "onclick": U.UF.C.closure(function (obj) {
  3277. //防止拖動圖標即打開了桌面應用
  3278. U.MD.D.click(this, obj);
  3279. }, [_lotechTeacherDeskIconInfo[i]])
  3280. }, _frag); //
  3281. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3282. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3283. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3284. }//
  3285. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3286. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3287. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3288. continue
  3289. }
  3290. _content = $$("div", {
  3291. className: "U_MD_D_KO",
  3292. "onmousedown": U.UF.C.closure(function (obj) {
  3293. //防止拖動圖標即打開了桌面應用
  3294. U.MD.D.click(this, obj);
  3295. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3296. "onclick": U.UF.C.closure(function (obj) {
  3297. //防止拖動圖標即打開了桌面應用
  3298. U.MD.D.click(this, obj);
  3299. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3300. }, _frag); //
  3301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3304. }
  3305. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3306. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3307. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3308. continue
  3309. }
  3310. _content = $$("div", {
  3311. className: "U_MD_D_KO",
  3312. "onmousedown": U.UF.C.closure(function (obj) {
  3313. //防止拖動圖標即打開了桌面應用
  3314. U.MD.D.click(this, obj);
  3315. }, [_siesTeacherDeskIconInfo[i]]),
  3316. "onclick": U.UF.C.closure(function (obj) {
  3317. //防止拖動圖標即打開了桌面應用
  3318. U.MD.D.click(this, obj);
  3319. }, [_siesTeacherDeskIconInfo[i]])
  3320. }, _frag); //
  3321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3324. }
  3325. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3326. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3327. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3328. continue
  3329. }
  3330. _content = $$("div", {
  3331. className: "U_MD_D_KO",
  3332. "onmousedown": U.UF.C.closure(function (obj) {
  3333. //防止拖動圖標即打開了桌面應用
  3334. U.MD.D.click(this, obj);
  3335. }, [_guzmsTeacherDeskIconInfo[i]]),
  3336. "onclick": U.UF.C.closure(function (obj) {
  3337. //防止拖動圖標即打開了桌面應用
  3338. U.MD.D.click(this, obj);
  3339. }, [_guzmsTeacherDeskIconInfo[i]])
  3340. }, _frag); //
  3341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3344. }
  3345. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3346. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3347. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3348. continue
  3349. }
  3350. _content = $$("div", {
  3351. className: "U_MD_D_KO",
  3352. "onmousedown": U.UF.C.closure(function (obj) {
  3353. //防止拖動圖標即打開了桌面應用
  3354. U.MD.D.click(this, obj);
  3355. }, [_longhuaTeacherDeskIconInfo[i]]),
  3356. "onclick": U.UF.C.closure(function (obj) {
  3357. //防止拖動圖標即打開了桌面應用
  3358. U.MD.D.click(this, obj);
  3359. }, [_longhuaTeacherDeskIconInfo[i]])
  3360. }, _frag); //
  3361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3364. }
  3365. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3366. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3367. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3368. continue
  3369. }
  3370. _content = $$("div", {
  3371. className: "U_MD_D_KO",
  3372. "onmousedown": U.UF.C.closure(function (obj) {
  3373. //防止拖動圖標即打開了桌面應用
  3374. U.MD.D.click(this, obj);
  3375. }, [_ytyTeacherDeskIconInfo[i]]),
  3376. "onclick": U.UF.C.closure(function (obj) {
  3377. //防止拖動圖標即打開了桌面應用
  3378. U.MD.D.click(this, obj);
  3379. }, [_ytyTeacherDeskIconInfo[i]])
  3380. }, _frag); //
  3381. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3382. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3383. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3384. }
  3385. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3386. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3387. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3388. continue
  3389. }
  3390. _content = $$("div", {
  3391. className: "U_MD_D_KO",
  3392. "onmousedown": U.UF.C.closure(function (obj) {
  3393. //防止拖動圖標即打開了桌面應用
  3394. U.MD.D.click(this, obj);
  3395. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3396. "onclick": U.UF.C.closure(function (obj) {
  3397. //防止拖動圖標即打開了桌面應用
  3398. U.MD.D.click(this, obj);
  3399. }, [_yunhaiTeacherDeskIconInfo[i]])
  3400. }, _frag); //
  3401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3404. } //_hkStudentDeskIconInfo
  3405. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3406. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3407. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3408. continue
  3409. }
  3410. _content = $$("div", {
  3411. className: "U_MD_D_KO",
  3412. "onmousedown": U.UF.C.closure(function (obj) {
  3413. //防止拖動圖標即打開了桌面應用
  3414. U.MD.D.click(this, obj);
  3415. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3416. "onclick": U.UF.C.closure(function (obj) {
  3417. //防止拖動圖標即打開了桌面應用
  3418. U.MD.D.click(this, obj);
  3419. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3420. }, _frag); //
  3421. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3422. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3423. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3424. }
  3425. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3426. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3427. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3428. continue
  3429. }
  3430. _content = $$("div", {
  3431. className: "U_MD_D_KO",
  3432. "onmousedown": U.UF.C.closure(function (obj) {
  3433. //防止拖動圖標即打開了桌面應用
  3434. U.MD.D.click(this, obj);
  3435. }, [_ricohTeacherDeskIconInfo[i]]),
  3436. "onclick": U.UF.C.closure(function (obj) {
  3437. //防止拖動圖標即打開了桌面應用
  3438. U.MD.D.click(this, obj);
  3439. }, [_ricohTeacherDeskIconInfo[i]])
  3440. }, _frag); //
  3441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3444. }
  3445. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3446. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3447. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3448. continue
  3449. }
  3450. _content = $$("div", {
  3451. className: "U_MD_D_KO",
  3452. "onmousedown": U.UF.C.closure(function (obj) {
  3453. //防止拖動圖標即打開了桌面應用
  3454. U.MD.D.click(this, obj);
  3455. }, [_hkTeacherDeskIconInfo[i]]),
  3456. "onclick": U.UF.C.closure(function (obj) {
  3457. //防止拖動圖標即打開了桌面應用
  3458. U.MD.D.click(this, obj);
  3459. }, [_hkTeacherDeskIconInfo[i]])
  3460. }, _frag); //
  3461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3464. }
  3465. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3466. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3467. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3468. continue
  3469. }
  3470. _content = $$("div", {
  3471. className: "U_MD_D_KO",
  3472. "onmousedown": U.UF.C.closure(function (obj) {
  3473. //防止拖動圖標即打開了桌面應用
  3474. U.MD.D.click(this, obj);
  3475. }, [_hkaceTeacherDeskIconInfo[i]]),
  3476. "onclick": U.UF.C.closure(function (obj) {
  3477. //防止拖動圖標即打開了桌面應用
  3478. U.MD.D.click(this, obj);
  3479. }, [_hkaceTeacherDeskIconInfo[i]])
  3480. }, _frag); //
  3481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3484. }
  3485. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3486. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3487. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3488. continue
  3489. }
  3490. _content = $$("div", {
  3491. className: "U_MD_D_KO",
  3492. "onmousedown": U.UF.C.closure(function (obj) {
  3493. //防止拖動圖標即打開了桌面應用
  3494. U.MD.D.click(this, obj);
  3495. }, [_cocobizTeacherDeskIconInfo[i]]),
  3496. "onclick": U.UF.C.closure(function (obj) {
  3497. //防止拖動圖標即打開了桌面應用
  3498. U.MD.D.click(this, obj);
  3499. }, [_cocobizTeacherDeskIconInfo[i]])
  3500. }, _frag); //
  3501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3504. }
  3505. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3506. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3507. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3508. continue
  3509. }
  3510. _content = $$("div", {
  3511. className: "U_MD_D_KO",
  3512. "onmousedown": U.UF.C.closure(function (obj) {
  3513. //防止拖動圖標即打開了桌面應用
  3514. U.MD.D.click(this, obj);
  3515. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3516. "onclick": U.UF.C.closure(function (obj) {
  3517. //防止拖動圖標即打開了桌面應用
  3518. U.MD.D.click(this, obj);
  3519. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3520. }, _frag); //
  3521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3524. }
  3525. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3526. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3527. _content = $$("div", {
  3528. className: "U_MD_D_KO",
  3529. "onmousedown": U.UF.C.closure(function (obj) {
  3530. //防止拖動圖標即打開了桌面應用
  3531. U.MD.D.click(this, obj);
  3532. }, [_gdjgAdminDeskIconInfo[i]]),
  3533. "onclick": U.UF.C.closure(function (obj) {
  3534. //防止拖動圖標即打開了桌面應用
  3535. U.MD.D.click(this, obj);
  3536. }, [_gdjgAdminDeskIconInfo[i]])
  3537. }, _frag); //
  3538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3541. }
  3542. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3543. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3544. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3545. continue
  3546. }
  3547. _content = $$("div", {
  3548. className: "U_MD_D_KO",
  3549. "onmousedown": U.UF.C.closure(function (obj) {
  3550. //防止拖動圖標即打開了桌面應用
  3551. U.MD.D.click(this, obj);
  3552. }, [_gdjgTeacherDeskIconInfo[i]]),
  3553. "onclick": U.UF.C.closure(function (obj) {
  3554. //防止拖動圖標即打開了桌面應用
  3555. U.MD.D.click(this, obj);
  3556. }, [_gdjgTeacherDeskIconInfo[i]])
  3557. }, _frag); //
  3558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3561. }
  3562. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3563. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3564. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3565. continue
  3566. }
  3567. _content = $$("div", {
  3568. className: "U_MD_D_KO",
  3569. "onmousedown": U.UF.C.closure(function (obj) {
  3570. //防止拖動圖標即打開了桌面應用
  3571. U.MD.D.click(this, obj);
  3572. }, [_szherTeacherDeskIconInfo[i]]),
  3573. "onclick": U.UF.C.closure(function (obj) {
  3574. //防止拖動圖標即打開了桌面應用
  3575. U.MD.D.click(this, obj);
  3576. }, [_szherTeacherDeskIconInfo[i]])
  3577. }, _frag); //
  3578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3581. }
  3582. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3583. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3584. _content = $$("div", {
  3585. className: "U_MD_D_KO",
  3586. "onmousedown": U.UF.C.closure(function (obj) {
  3587. //防止拖動圖標即打開了桌面應用
  3588. U.MD.D.click(this, obj);
  3589. }, [_heyuannAdminDeskIconInfo[i]]),
  3590. "onclick": U.UF.C.closure(function (obj) {
  3591. //防止拖動圖標即打開了桌面應用
  3592. U.MD.D.click(this, obj);
  3593. }, [_heyuannAdminDeskIconInfo[i]])
  3594. }, _frag); //
  3595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3598. }
  3599. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3600. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3601. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3602. continue
  3603. }
  3604. _content = $$("div", {
  3605. className: "U_MD_D_KO",
  3606. "onmousedown": U.UF.C.closure(function (obj) {
  3607. //防止拖動圖標即打開了桌面應用
  3608. U.MD.D.click(this, obj);
  3609. }, [_heyuanTeacherDeskIconInfo[i]]),
  3610. "onclick": U.UF.C.closure(function (obj) {
  3611. //防止拖動圖標即打開了桌面應用
  3612. U.MD.D.click(this, obj);
  3613. }, [_heyuanTeacherDeskIconInfo[i]])
  3614. }, _frag); //
  3615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3618. } //
  3619. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3620. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3621. _content = $$("div", {
  3622. className: "U_MD_D_KO",
  3623. "onmousedown": U.UF.C.closure(function (obj) {
  3624. //防止拖動圖標即打開了桌面應用
  3625. U.MD.D.click(this, obj);
  3626. }, [_dseiAdminDeskIconInfo[i]]),
  3627. "onclick": U.UF.C.closure(function (obj) {
  3628. //防止拖動圖標即打開了桌面應用
  3629. U.MD.D.click(this, obj);
  3630. }, [_dseiAdminDeskIconInfo[i]])
  3631. }, _frag); //
  3632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3635. }
  3636. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3637. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3638. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3639. continue
  3640. }
  3641. _content = $$("div", {
  3642. className: "U_MD_D_KO",
  3643. "onmousedown": U.UF.C.closure(function (obj) {
  3644. //防止拖動圖標即打開了桌面應用
  3645. U.MD.D.click(this, obj);
  3646. }, [_dseiTeacherDeskIconInfo[i]]),
  3647. "onclick": U.UF.C.closure(function (obj) {
  3648. //防止拖動圖標即打開了桌面應用
  3649. U.MD.D.click(this, obj);
  3650. }, [_dseiTeacherDeskIconInfo[i]])
  3651. }, _frag); //
  3652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3655. } //
  3656. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3657. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3658. _content = $$("div", {
  3659. className: "U_MD_D_KO",
  3660. "onmousedown": U.UF.C.closure(function (obj) {
  3661. //防止拖動圖標即打開了桌面應用
  3662. U.MD.D.click(this, obj);
  3663. }, [_chjyjAdminDeskIconInfo[i]]),
  3664. "onclick": U.UF.C.closure(function (obj) {
  3665. //防止拖動圖標即打開了桌面應用
  3666. U.MD.D.click(this, obj);
  3667. }, [_chjyjAdminDeskIconInfo[i]])
  3668. }, _frag); //
  3669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3672. }//
  3673. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3674. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3675. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3676. continue
  3677. }
  3678. _content = $$("div", {
  3679. className: "U_MD_D_KO",
  3680. "onmousedown": U.UF.C.closure(function (obj) {
  3681. //防止拖動圖標即打開了桌面應用
  3682. U.MD.D.click(this, obj);
  3683. }, [_chjyjTeacherDeskIconInfo[i]]),
  3684. "onclick": U.UF.C.closure(function (obj) {
  3685. //防止拖動圖標即打開了桌面應用
  3686. U.MD.D.click(this, obj);
  3687. }, [_chjyjTeacherDeskIconInfo[i]])
  3688. }, _frag); //
  3689. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3690. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3691. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3692. }
  3693. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3694. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3695. _content = $$("div", {
  3696. className: "U_MD_D_KO",
  3697. "onmousedown": U.UF.C.closure(function (obj) {
  3698. //防止拖動圖標即打開了桌面應用
  3699. U.MD.D.click(this, obj);
  3700. }, [_szjkyAdminDeskIconInfo[i]]),
  3701. "onclick": U.UF.C.closure(function (obj) {
  3702. //防止拖動圖標即打開了桌面應用
  3703. U.MD.D.click(this, obj);
  3704. }, [_szjkyAdminDeskIconInfo[i]])
  3705. }, _frag); //
  3706. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3707. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3708. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3709. }//
  3710. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3711. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3712. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3713. continue
  3714. }
  3715. _content = $$("div", {
  3716. className: "U_MD_D_KO",
  3717. "onmousedown": U.UF.C.closure(function (obj) {
  3718. //防止拖動圖標即打開了桌面應用
  3719. U.MD.D.click(this, obj);
  3720. }, [_szjkyTeacherDeskIconInfo[i]]),
  3721. "onclick": U.UF.C.closure(function (obj) {
  3722. //防止拖動圖標即打開了桌面應用
  3723. U.MD.D.click(this, obj);
  3724. }, [_szjkyTeacherDeskIconInfo[i]])
  3725. }, _frag); //
  3726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3729. }
  3730. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3731. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3732. _content = $$("div", {
  3733. className: "U_MD_D_KO",
  3734. "onmousedown": U.UF.C.closure(function (obj) {
  3735. //防止拖動圖標即打開了桌面應用
  3736. U.MD.D.click(this, obj);
  3737. }, [_x020201AdminDeskIconInfo[i]]),
  3738. "onclick": U.UF.C.closure(function (obj) {
  3739. //防止拖動圖標即打開了桌面應用
  3740. U.MD.D.click(this, obj);
  3741. }, [_x020201AdminDeskIconInfo[i]])
  3742. }, _frag); //
  3743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3746. }//
  3747. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3748. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3749. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3750. continue
  3751. }
  3752. _content = $$("div", {
  3753. className: "U_MD_D_KO",
  3754. "onmousedown": U.UF.C.closure(function (obj) {
  3755. //防止拖動圖標即打開了桌面應用
  3756. U.MD.D.click(this, obj);
  3757. }, [_x020201TeacherDeskIconInfo[i]]),
  3758. "onclick": U.UF.C.closure(function (obj) {
  3759. //防止拖動圖標即打開了桌面應用
  3760. U.MD.D.click(this, obj);
  3761. }, [_x020201TeacherDeskIconInfo[i]])
  3762. }, _frag); //
  3763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3766. }
  3767. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3768. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖動圖標即打開了桌面應用
  3773. U.MD.D.click(this, obj);
  3774. }, [_SCNUETAdminDeskIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖動圖標即打開了桌面應用
  3777. U.MD.D.click(this, obj);
  3778. }, [_SCNUETAdminDeskIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3783. }//
  3784. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3785. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3786. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖動圖標即打開了桌面應用
  3793. U.MD.D.click(this, obj);
  3794. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖動圖標即打開了桌面應用
  3797. U.MD.D.click(this, obj);
  3798. }, [_SCNUETTeacherDeskIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3805. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3806. _content = $$("div", {
  3807. className: "U_MD_D_KO",
  3808. "onmousedown": U.UF.C.closure(function (obj) {
  3809. //防止拖動圖標即打開了桌面應用
  3810. U.MD.D.click(this, obj);
  3811. }, [_futianAdminDeskIconInfo[i]]),
  3812. "onclick": U.UF.C.closure(function (obj) {
  3813. //防止拖動圖標即打開了桌面應用
  3814. U.MD.D.click(this, obj);
  3815. }, [_futianAdminDeskIconInfo[i]])
  3816. }, _frag); //
  3817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3820. }
  3821. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3822. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3823. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3824. continue
  3825. }
  3826. _content = $$("div", {
  3827. className: "U_MD_D_KO",
  3828. "onmousedown": U.UF.C.closure(function (obj) {
  3829. //防止拖動圖標即打開了桌面應用
  3830. U.MD.D.click(this, obj);
  3831. }, [_futianTeacherDeskIconInfo[i]]),
  3832. "onclick": U.UF.C.closure(function (obj) {
  3833. //防止拖動圖標即打開了桌面應用
  3834. U.MD.D.click(this, obj);
  3835. }, [_futianTeacherDeskIconInfo[i]])
  3836. }, _frag); //
  3837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3840. }
  3841. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3842. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3843. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3844. continue
  3845. }
  3846. _content = $$("div", {
  3847. className: "U_MD_D_KO",
  3848. "onmousedown": U.UF.C.closure(function (obj) {
  3849. //防止拖動圖標即打開了桌面應用
  3850. U.MD.D.click(this, obj);
  3851. }, [_MingdeTeacherDeskIcon[i]]),
  3852. "onclick": U.UF.C.closure(function (obj) {
  3853. //防止拖動圖標即打開了桌面應用
  3854. U.MD.D.click(this, obj);
  3855. }, [_MingdeTeacherDeskIcon[i]])
  3856. }, _frag); //
  3857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3860. }
  3861. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3862. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3863. _content = $$("div", {
  3864. className: "U_MD_D_KO",
  3865. "onmousedown": U.UF.C.closure(function (obj) {
  3866. //防止拖動圖標即打開了桌面應用
  3867. U.MD.D.click(this, obj);
  3868. }, [_lhsAdminDesktopIconInfo[i]]),
  3869. "onclick": U.UF.C.closure(function (obj) {
  3870. //防止拖動圖標即打開了桌面應用
  3871. U.MD.D.click(this, obj);
  3872. }, [_lhsAdminDesktopIconInfo[i]])
  3873. }, _frag); //
  3874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3877. }
  3878. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3879. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3880. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3881. continue
  3882. }
  3883. _content = $$("div", {
  3884. className: "U_MD_D_KO",
  3885. "onmousedown": U.UF.C.closure(function (obj) {
  3886. //防止拖動圖標即打開了桌面應用
  3887. U.MD.D.click(this, obj);
  3888. }, [_lhsteacherDesktopIconInfo[i]]),
  3889. "onclick": U.UF.C.closure(function (obj) {
  3890. //防止拖動圖標即打開了桌面應用
  3891. U.MD.D.click(this, obj);
  3892. }, [_lhsteacherDesktopIconInfo[i]])
  3893. }, _frag); //
  3894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3897. }
  3898. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3899. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3900. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3901. continue
  3902. }
  3903. _content = $$("div", {
  3904. className: "U_MD_D_KO",
  3905. "onmousedown": U.UF.C.closure(function (obj) {
  3906. //防止拖動圖標即打開了桌面應用
  3907. U.MD.D.click(this, obj);
  3908. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3909. "onclick": U.UF.C.closure(function (obj) {
  3910. //防止拖動圖標即打開了桌面應用
  3911. U.MD.D.click(this, obj);
  3912. }, [_zhoujiateacherDesktopIconInfo[i]])
  3913. }, _frag); //
  3914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3917. }
  3918. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3919. for (i = 0; i < _hanDeskIcon.length; i++) {
  3920. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3921. continue
  3922. }
  3923. _content = $$("div", {
  3924. className: "U_MD_D_KO",
  3925. "onmousedown": U.UF.C.closure(function (obj) {
  3926. //防止拖動圖標即打開了桌面應用
  3927. U.MD.D.click(this, obj);
  3928. }, [_hanDeskIcon[i]]),
  3929. "onclick": U.UF.C.closure(function (obj) {
  3930. //防止拖動圖標即打開了桌面應用
  3931. U.MD.D.click(this, obj);
  3932. }, [_hanDeskIcon[i]])
  3933. }, _frag); //
  3934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3937. }
  3938. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3939. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3940. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3941. continue
  3942. }
  3943. _content = $$("div", {
  3944. className: "U_MD_D_KO",
  3945. "onmousedown": U.UF.C.closure(function (obj) {
  3946. //防止拖動圖標即打開了桌面應用
  3947. U.MD.D.click(this, obj);
  3948. }, [_orgStemDeskIcon[i]]),
  3949. "onclick": U.UF.C.closure(function (obj) {
  3950. //防止拖動圖標即打開了桌面應用
  3951. U.MD.D.click(this, obj);
  3952. }, [_orgStemDeskIcon[i]])
  3953. }, _frag); //
  3954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3957. }
  3958. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3959. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3960. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3961. continue
  3962. }
  3963. _content = $$("div", {
  3964. className: "U_MD_D_KO",
  3965. "onmousedown": U.UF.C.closure(function (obj) {
  3966. //防止拖動圖標即打開了桌面應用
  3967. U.MD.D.click(this, obj);
  3968. }, [_szulsDeskIcon[i]]),
  3969. "onclick": U.UF.C.closure(function (obj) {
  3970. //防止拖動圖標即打開了桌面應用
  3971. U.MD.D.click(this, obj);
  3972. }, [_szulsDeskIcon[i]])
  3973. }, _frag); //
  3974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3977. }
  3978. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3979. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3980. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3981. continue
  3982. }
  3983. _content = $$("div", {
  3984. className: "U_MD_D_KO",
  3985. "onmousedown": U.UF.C.closure(function (obj) {
  3986. //防止拖動圖標即打開了桌面應用
  3987. U.MD.D.click(this, obj);
  3988. }, [_orgDesktopIconInfo[i]]),
  3989. "onclick": U.UF.C.closure(function (obj) {
  3990. //防止拖動圖標即打開了桌面應用
  3991. U.MD.D.click(this, obj);
  3992. }, [_orgDesktopIconInfo[i]])
  3993. }, _frag); //
  3994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3997. }
  3998. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3999. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4000. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4001. continue
  4002. }
  4003. _content = $$("div", {
  4004. className: "U_MD_D_KO",
  4005. "onmousedown": U.UF.C.closure(function (obj) {
  4006. //防止拖動圖標即打開了桌面應用
  4007. U.MD.D.click(this, obj);
  4008. }, [_schoolDesktopIconInfo[i]]),
  4009. "onclick": U.UF.C.closure(function (obj) {
  4010. //防止拖動圖標即打開了桌面應用
  4011. U.MD.D.click(this, obj);
  4012. }, [_schoolDesktopIconInfo[i]])
  4013. }, _frag); //
  4014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4017. }
  4018. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4019. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4020. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4021. continue
  4022. }
  4023. _content = $$("div", {
  4024. className: "U_MD_D_KO",
  4025. "onmousedown": U.UF.C.closure(function (obj) {
  4026. //防止拖動圖標即打開了桌面應用
  4027. U.MD.D.click(this, obj);
  4028. }, [_GMteacherDesktopIconInfo[i]]),
  4029. "onclick": U.UF.C.closure(function (obj) {
  4030. //防止拖動圖標即打開了桌面應用
  4031. U.MD.D.click(this, obj);
  4032. }, [_GMteacherDesktopIconInfo[i]])
  4033. }, _frag); //
  4034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4037. }
  4038. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4039. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4040. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4041. continue
  4042. }
  4043. _content = $$("div", {
  4044. className: "U_MD_D_KO",
  4045. "onmousedown": U.UF.C.closure(function (obj) {
  4046. //防止拖動圖標即打開了桌面應用
  4047. U.MD.D.click(this, obj);
  4048. }, [_SONGteacherDesktopIconInfo[i]]),
  4049. "onclick": U.UF.C.closure(function (obj) {
  4050. //防止拖動圖標即打開了桌面應用
  4051. U.MD.D.click(this, obj);
  4052. }, [_SONGteacherDesktopIconInfo[i]])
  4053. }, _frag); //
  4054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4057. }
  4058. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4059. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4060. _content = $$("div", {
  4061. className: "U_MD_D_KO",
  4062. "onmousedown": U.UF.C.closure(function (obj) {
  4063. //防止拖動圖標即打開了桌面應用
  4064. U.MD.D.click(this, obj);
  4065. }, [_GMstudentDesktopIconInfo[i]]),
  4066. "onclick": U.UF.C.closure(function (obj) {
  4067. //防止拖動圖標即打開了桌面應用
  4068. U.MD.D.click(this, obj);
  4069. }, [_GMstudentDesktopIconInfo[i]])
  4070. }, _frag); //
  4071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4074. }
  4075. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4076. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4077. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4078. continue
  4079. }
  4080. _content = $$("div", {
  4081. className: "U_MD_D_KO",
  4082. "onmousedown": U.UF.C.closure(function (obj) {
  4083. //防止拖動圖標即打開了桌面應用
  4084. U.MD.D.click(this, obj);
  4085. }, [_tcTeacherDeskIconInfo[i]]),
  4086. "onclick": U.UF.C.closure(function (obj) {
  4087. //防止拖動圖標即打開了桌面應用
  4088. U.MD.D.click(this, obj);
  4089. }, [_tcTeacherDeskIconInfo[i]])
  4090. }, _frag); //
  4091. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4092. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4093. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4094. }
  4095. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4096. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4097. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4098. continue
  4099. }
  4100. _content = $$("div", {
  4101. className: "U_MD_D_KO",
  4102. "onmousedown": U.UF.C.closure(function (obj) {
  4103. //防止拖動圖標即打開了桌面應用
  4104. U.MD.D.click(this, obj);
  4105. }, [_tcOrganizerDeskIconInfo[i]]),
  4106. "onclick": U.UF.C.closure(function (obj) {
  4107. //防止拖動圖標即打開了桌面應用
  4108. U.MD.D.click(this, obj);
  4109. }, [_tcOrganizerDeskIconInfo[i]])
  4110. }, _frag); //
  4111. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4112. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4113. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4114. }
  4115. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4116. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4117. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4118. continue
  4119. }
  4120. _content = $$("div", {
  4121. className: "U_MD_D_KO",
  4122. "onmousedown": U.UF.C.closure(function (obj) {
  4123. //防止拖動圖標即打開了桌面應用
  4124. U.MD.D.click(this, obj);
  4125. }, [_szscTeacherDeskIconInfo[i]]),
  4126. "onclick": U.UF.C.closure(function (obj) {
  4127. //防止拖動圖標即打開了桌面應用
  4128. U.MD.D.click(this, obj);
  4129. }, [_szscTeacherDeskIconInfo[i]])
  4130. }, _frag); //
  4131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4134. }
  4135. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4136. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4137. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4138. continue
  4139. }
  4140. _content = $$("div", {
  4141. className: "U_MD_D_KO",
  4142. "onmousedown": U.UF.C.closure(function (obj) {
  4143. //防止拖動圖標即打開了桌面應用
  4144. U.MD.D.click(this, obj);
  4145. }, [_szscOrganizerDeskIconInfo[i]]),
  4146. "onclick": U.UF.C.closure(function (obj) {
  4147. //防止拖動圖標即打開了桌面應用
  4148. U.MD.D.click(this, obj);
  4149. }, [_szscOrganizerDeskIconInfo[i]])
  4150. }, _frag); //
  4151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4154. }
  4155. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4156. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4157. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4158. continue
  4159. }
  4160. _content = $$("div", {
  4161. className: "U_MD_D_KO",
  4162. "onmousedown": U.UF.C.closure(function (obj) {
  4163. //防止拖動圖標即打開了桌面應用
  4164. U.MD.D.click(this, obj);
  4165. }, [_nsfxTeacherDeskIconInfo[i]]),
  4166. "onclick": U.UF.C.closure(function (obj) {
  4167. //防止拖動圖標即打開了桌面應用
  4168. U.MD.D.click(this, obj);
  4169. }, [_nsfxTeacherDeskIconInfo[i]])
  4170. }, _frag); //
  4171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4174. }
  4175. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4176. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4177. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4178. continue
  4179. }
  4180. _content = $$("div", {
  4181. className: "U_MD_D_KO",
  4182. "onmousedown": U.UF.C.closure(function (obj) {
  4183. //防止拖動圖標即打開了桌面應用
  4184. U.MD.D.click(this, obj);
  4185. }, [_stiaTeacherDeskIconInfo[i]]),
  4186. "onclick": U.UF.C.closure(function (obj) {
  4187. //防止拖動圖標即打開了桌面應用
  4188. U.MD.D.click(this, obj);
  4189. }, [_stiaTeacherDeskIconInfo[i]])
  4190. }, _frag); //
  4191. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4192. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4193. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4194. }
  4195. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4196. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4197. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4198. continue
  4199. }
  4200. _content = $$("div", {
  4201. className: "U_MD_D_KO",
  4202. "onmousedown": U.UF.C.closure(function (obj) {
  4203. //防止拖動圖標即打開了桌面應用
  4204. U.MD.D.click(this, obj);
  4205. }, [_szdjgTeacherDeskIconInfo[i]]),
  4206. "onclick": U.UF.C.closure(function (obj) {
  4207. //防止拖動圖標即打開了桌面應用
  4208. U.MD.D.click(this, obj);
  4209. }, [_szdjgTeacherDeskIconInfo[i]])
  4210. }, _frag); //
  4211. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4212. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4213. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4214. }
  4215. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4216. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4217. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4218. continue
  4219. }
  4220. _content = $$("div", {
  4221. className: "U_MD_D_KO",
  4222. "onmousedown": U.UF.C.closure(function (obj) {
  4223. //防止拖動圖標即打開了桌面應用
  4224. U.MD.D.click(this, obj);
  4225. }, [_x010607TeacherDeskIconInfo[i]]),
  4226. "onclick": U.UF.C.closure(function (obj) {
  4227. //防止拖動圖標即打開了桌面應用
  4228. U.MD.D.click(this, obj);
  4229. }, [_x010607TeacherDeskIconInfo[i]])
  4230. }, _frag); //
  4231. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4232. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4233. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4234. }
  4235. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4236. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4237. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4238. continue
  4239. }
  4240. _content = $$("div", {
  4241. className: "U_MD_D_KO",
  4242. "onmousedown": U.UF.C.closure(function (obj) {
  4243. //防止拖動圖標即打開了桌面應用
  4244. U.MD.D.click(this, obj);
  4245. }, [_xhlyTeacherDeskIconInfo[i]]),
  4246. "onclick": U.UF.C.closure(function (obj) {
  4247. //防止拖動圖標即打開了桌面應用
  4248. U.MD.D.click(this, obj);
  4249. }, [_xhlyTeacherDeskIconInfo[i]])
  4250. }, _frag); //
  4251. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4252. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4253. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4254. }
  4255. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4256. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4257. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4258. continue
  4259. }
  4260. _content = $$("div", {
  4261. className: "U_MD_D_KO",
  4262. "onmousedown": U.UF.C.closure(function (obj) {
  4263. //防止拖動圖標即打開了桌面應用
  4264. U.MD.D.click(this, obj);
  4265. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4266. "onclick": U.UF.C.closure(function (obj) {
  4267. //防止拖動圖標即打開了桌面應用
  4268. U.MD.D.click(this, obj);
  4269. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4270. }, _frag); //
  4271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4274. }
  4275. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4276. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4277. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4278. continue
  4279. }
  4280. _content = $$("div", {
  4281. className: "U_MD_D_KO",
  4282. "onmousedown": U.UF.C.closure(function (obj) {
  4283. //防止拖動圖標即打開了桌面應用
  4284. U.MD.D.click(this, obj);
  4285. }, [_x010503TeacherDeskIconInfo[i]]),
  4286. "onclick": U.UF.C.closure(function (obj) {
  4287. //防止拖動圖標即打開了桌面應用
  4288. U.MD.D.click(this, obj);
  4289. }, [_x010503TeacherDeskIconInfo[i]])
  4290. }, _frag); //
  4291. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4292. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4293. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4294. }
  4295. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4296. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4297. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4298. continue
  4299. }
  4300. _content = $$("div", {
  4301. className: "U_MD_D_KO",
  4302. "onmousedown": U.UF.C.closure(function (obj) {
  4303. //防止拖動圖標即打開了桌面應用
  4304. U.MD.D.click(this, obj);
  4305. }, [_x010504TeacherDeskIconInfo[i]]),
  4306. "onclick": U.UF.C.closure(function (obj) {
  4307. //防止拖動圖標即打開了桌面應用
  4308. U.MD.D.click(this, obj);
  4309. }, [_x010504TeacherDeskIconInfo[i]])
  4310. }, _frag); //
  4311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4314. }
  4315. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4316. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4317. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4318. continue
  4319. }
  4320. _content = $$("div", {
  4321. className: "U_MD_D_KO",
  4322. "onmousedown": U.UF.C.closure(function (obj) {
  4323. //防止拖動圖標即打開了桌面應用
  4324. U.MD.D.click(this, obj);
  4325. }, [_x010505TeacherDeskIconInfo[i]]),
  4326. "onclick": U.UF.C.closure(function (obj) {
  4327. //防止拖動圖標即打開了桌面應用
  4328. U.MD.D.click(this, obj);
  4329. }, [_x010505TeacherDeskIconInfo[i]])
  4330. }, _frag); //
  4331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4334. }
  4335. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4336. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4337. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4338. continue
  4339. }
  4340. _content = $$("div", {
  4341. className: "U_MD_D_KO",
  4342. "onmousedown": U.UF.C.closure(function (obj) {
  4343. //防止拖動圖標即打開了桌面應用
  4344. U.MD.D.click(this, obj);
  4345. }, [_x010404TeacherDeskIconInfo[i]]),
  4346. "onclick": U.UF.C.closure(function (obj) {
  4347. //防止拖動圖標即打開了桌面應用
  4348. U.MD.D.click(this, obj);
  4349. }, [_x010404TeacherDeskIconInfo[i]])
  4350. }, _frag); //
  4351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4354. }
  4355. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4356. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4357. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4358. continue
  4359. }
  4360. _content = $$("div", {
  4361. className: "U_MD_D_KO",
  4362. "onmousedown": U.UF.C.closure(function (obj) {
  4363. //防止拖動圖標即打開了桌面應用
  4364. U.MD.D.click(this, obj);
  4365. }, [_x010204TeacherDeskIconInfo[i]]),
  4366. "onclick": U.UF.C.closure(function (obj) {
  4367. //防止拖動圖標即打開了桌面應用
  4368. U.MD.D.click(this, obj);
  4369. }, [_x010204TeacherDeskIconInfo[i]])
  4370. }, _frag); //
  4371. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4372. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4373. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4374. }
  4375. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4376. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4377. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4378. continue
  4379. }
  4380. _content = $$("div", {
  4381. className: "U_MD_D_KO",
  4382. "onmousedown": U.UF.C.closure(function (obj) {
  4383. //防止拖動圖標即打開了桌面應用
  4384. U.MD.D.click(this, obj);
  4385. }, [_x320101TeacherDeskIconInfo[i]]),
  4386. "onclick": U.UF.C.closure(function (obj) {
  4387. //防止拖動圖標即打開了桌面應用
  4388. U.MD.D.click(this, obj);
  4389. }, [_x320101TeacherDeskIconInfo[i]])
  4390. }, _frag); //
  4391. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4392. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4393. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4394. }
  4395. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4396. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4397. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4398. continue
  4399. }
  4400. _content = $$("div", {
  4401. className: "U_MD_D_KO",
  4402. "onmousedown": U.UF.C.closure(function (obj) {
  4403. //防止拖動圖標即打開了桌面應用
  4404. U.MD.D.click(this, obj);
  4405. }, [_trailTeacherDeskIconInfo[i]]),
  4406. "onclick": U.UF.C.closure(function (obj) {
  4407. //防止拖動圖標即打開了桌面應用
  4408. U.MD.D.click(this, obj);
  4409. }, [_trailTeacherDeskIconInfo[i]])
  4410. }, _frag); //
  4411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4414. }
  4415. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4416. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4417. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4418. continue
  4419. }
  4420. _content = $$("div", {
  4421. className: "U_MD_D_KO",
  4422. "onmousedown": U.UF.C.closure(function (obj) {
  4423. //防止拖動圖標即打開了桌面應用
  4424. U.MD.D.click(this, obj);
  4425. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4426. "onclick": U.UF.C.closure(function (obj) {
  4427. //防止拖動圖標即打開了桌面應用
  4428. U.MD.D.click(this, obj);
  4429. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4430. }, _frag); //
  4431. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4432. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4433. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4434. }
  4435. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4436. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4437. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4438. continue
  4439. }
  4440. _content = $$("div", {
  4441. className: "U_MD_D_KO",
  4442. "onmousedown": U.UF.C.closure(function (obj) {
  4443. //防止拖動圖標即打開了桌面應用
  4444. U.MD.D.click(this, obj);
  4445. }, [_szsyTeacherDeskIconInfo[i]]),
  4446. "onclick": U.UF.C.closure(function (obj) {
  4447. //防止拖動圖標即打開了桌面應用
  4448. U.MD.D.click(this, obj);
  4449. }, [_szsyTeacherDeskIconInfo[i]])
  4450. }, _frag); //
  4451. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4452. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4453. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4454. }
  4455. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4456. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4457. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4458. continue
  4459. }
  4460. _content = $$("div", {
  4461. className: "U_MD_D_KO",
  4462. "onmousedown": U.UF.C.closure(function (obj) {
  4463. //防止拖動圖標即打開了桌面應用
  4464. U.MD.D.click(this, obj);
  4465. }, [_x010608TeacherDeskIconInfo[i]]),
  4466. "onclick": U.UF.C.closure(function (obj) {
  4467. //防止拖動圖標即打開了桌面應用
  4468. U.MD.D.click(this, obj);
  4469. }, [_x010608TeacherDeskIconInfo[i]])
  4470. }, _frag); //
  4471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4474. }
  4475. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4476. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4477. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4478. continue
  4479. }
  4480. _content = $$("div", {
  4481. className: "U_MD_D_KO",
  4482. "onmousedown": U.UF.C.closure(function (obj) {
  4483. //防止拖動圖標即打開了桌面應用
  4484. U.MD.D.click(this, obj);
  4485. }, [_x010611TeacherDeskIconInfo[i]]),
  4486. "onclick": U.UF.C.closure(function (obj) {
  4487. //防止拖動圖標即打開了桌面應用
  4488. U.MD.D.click(this, obj);
  4489. }, [_x010611TeacherDeskIconInfo[i]])
  4490. }, _frag); //
  4491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4494. }
  4495. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4496. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4497. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4498. continue
  4499. }
  4500. _content = $$("div", {
  4501. className: "U_MD_D_KO",
  4502. "onmousedown": U.UF.C.closure(function (obj) {
  4503. //防止拖動圖標即打開了桌面應用
  4504. U.MD.D.click(this, obj);
  4505. }, [_x010612TeacherDeskIconInfo[i]]),
  4506. "onclick": U.UF.C.closure(function (obj) {
  4507. //防止拖動圖標即打開了桌面應用
  4508. U.MD.D.click(this, obj);
  4509. }, [_x010612TeacherDeskIconInfo[i]])
  4510. }, _frag); //
  4511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4514. }
  4515. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4516. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4517. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4518. continue
  4519. }
  4520. _content = $$("div", {
  4521. className: "U_MD_D_KO",
  4522. "onmousedown": U.UF.C.closure(function (obj) {
  4523. //防止拖動圖標即打開了桌面應用
  4524. U.MD.D.click(this, obj);
  4525. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4526. "onclick": U.UF.C.closure(function (obj) {
  4527. //防止拖動圖標即打開了桌面應用
  4528. U.MD.D.click(this, obj);
  4529. }, [_tianyuanTeacherDeskIconInfo[i]])
  4530. }, _frag); //
  4531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4534. }
  4535. } else {
  4536. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4537. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4538. continue
  4539. }
  4540. _content = $$("div", {
  4541. className: "U_MD_D_KO",
  4542. "onmousedown": U.UF.C.closure(function (obj) {
  4543. //防止拖動圖標即打開了桌面應用
  4544. U.MD.D.click(this, obj);
  4545. }, [_teacherDesktopIconInfo[i]]),
  4546. "onclick": U.UF.C.closure(function (obj) {
  4547. //防止拖動圖標即打開了桌面應用
  4548. U.MD.D.click(this, obj);
  4549. }, [_teacherDesktopIconInfo[i]])
  4550. }, _frag); //
  4551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4554. }
  4555. }
  4556. } else {
  4557. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4558. _content = $$("div", {
  4559. className: "U_MD_D_KO",
  4560. style: { 'width': '124px', 'height': '145px' },
  4561. "onmousedown": U.UF.C.closure(function (obj) {
  4562. //防止拖動圖標即打開了桌面應用
  4563. U.MD.D.click(this, obj);
  4564. }, [_easyDesktopIconInfo[i]]),
  4565. "onclick": U.UF.C.closure(function (obj) {
  4566. //防止拖動圖標即打開了桌面應用
  4567. U.MD.D.click(this, obj);
  4568. }, [_easyDesktopIconInfo[i]])
  4569. }, _frag); //
  4570. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4573. }
  4574. }
  4575. if (type == 1) {
  4576. //加載好後給圖標定位
  4577. U.MD.D.iconPostion($(_frag).Child());
  4578. } else {
  4579. //加載好後給圖標定位
  4580. U.MD.D.iconPostion2($(_frag).Child());
  4581. }
  4582. //把圖標加載到頁面
  4583. el.appendChild(_frag);
  4584. }
  4585. /**
  4586. * 顯示任務欄
  4587. *
  4588. * @param {element} 桌面元素
  4589. */
  4590. U.MD.D.I.displayTaskbar = function (el) {
  4591. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4592. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4593. //任務欄位置變化
  4594. U.selectEl(el).css({ "bottom": "0px" });
  4595. //桌面位置變話
  4596. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4597. }
  4598. }
  4599. //#region 桌面圖標拖動邏輯
  4600. /**
  4601. * 桌面排列圖標
  4602. *
  4603. * @param {element} 桌面元素
  4604. * @param {object} 上下相距的距離
  4605. * @param {object} 左右相距的距離
  4606. * @return {object} 命名空間
  4607. */
  4608. U.MD.D.iconPostion = function (childs, top, left) {
  4609. var i; //用於循環處理
  4610. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4611. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4612. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4613. for (i = 0; i < childs.length; i++) {
  4614. //如果豎排top超過了範圍處理
  4615. if (top + 95 > US.height - 10) {
  4616. //left超過了頁面範圍處理,則向上重疊打印處理
  4617. if ((left + 180) > US.width) {
  4618. top -= 110;
  4619. left -= 90;
  4620. }
  4621. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4622. else {
  4623. left += 90;
  4624. top = 15;
  4625. };
  4626. }
  4627. //給圖標的位置賦值
  4628. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4629. if (i < childs.length - 1) {
  4630. //頁面圖標每次向下加95
  4631. top += 95;
  4632. }
  4633. }
  4634. //返回最後調用的圖標的位置
  4635. return [top, left];
  4636. }
  4637. /**
  4638. * 桌面排列圖標
  4639. *
  4640. * @param {element} 桌面元素
  4641. * @param {object} 上下相距的距離
  4642. * @param {object} 左右相距的距離
  4643. * @return {object} 命名空間
  4644. */
  4645. U.MD.D.iconPostion2 = function (childs, top, left) {
  4646. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4647. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4648. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4649. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4650. for (i = 0; i < childs.length; i++) {
  4651. //如果豎排top超過了範圍處理
  4652. if (left + 150 > US.width - 10) {
  4653. //left超過了頁面範圍處理,則向上重疊打印處理
  4654. if ((top + 180) > US.Height) {
  4655. top -= 150;
  4656. left -= 150;
  4657. }
  4658. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4659. else {
  4660. top += 150;
  4661. left = ol;
  4662. };
  4663. }
  4664. //給圖標的位置賦值
  4665. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4666. if (i < childs.length - 1) {
  4667. //頁面圖標每次向下加95
  4668. left += 150;
  4669. }
  4670. }
  4671. //返回最後調用的圖標的位置
  4672. return [top, left];
  4673. }
  4674. /**
  4675. * 桌面點擊事件邏輯
  4676. *
  4677. * @param {element} 桌面元素
  4678. * @param {object} 上下相距的距離
  4679. * @param {object} 左右相距的距離
  4680. * @return {object} 命名空間
  4681. */
  4682. U.MD.D.click = function (el, obj) {
  4683. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4684. var _userinfo = US.userInfo;
  4685. U.UF.EV.stopBubble(); //阻止向上冒泡
  4686. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4687. if (_buttonnumber < 2) {
  4688. //如果是click事件的處理
  4689. if (event.type == "click") {
  4690. //如果元素在mousemove事件中沒有移動則出發click事件
  4691. if (!U.MD.D.I.IsDrag) {
  4692. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4693. U.alert("請先登錄您的賬號!");
  4694. setTimeout(() => {
  4695. U.MD.U.L.login();
  4696. }, 2000);
  4697. } else {
  4698. //打開應用處理
  4699. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4700. }
  4701. }
  4702. }
  4703. //如果是mouse事件的處理
  4704. else {
  4705. if (US.Config.type == '1') {
  4706. //拖動處理,添加拖動和拖動結束事件
  4707. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4708. }
  4709. }
  4710. U.MD.D.I.IsDrag = false;
  4711. }
  4712. }
  4713. /**
  4714. * 拖動的處理
  4715. *
  4716. */
  4717. U.MD.D.iconMove = function () {
  4718. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4719. U.MD.D.I.IsDrag = true;
  4720. }
  4721. /**
  4722. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4723. *
  4724. * @param {element} 拖動的元素
  4725. * @return {object} 命名空間
  4726. */
  4727. U.MD.D.iconUp = function (el) {
  4728. var _top = 15,
  4729. _left = 20,
  4730. _margin,
  4731. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4732. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4733. if (_positioninfo["OT"] > 15) {
  4734. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4735. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4736. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4737. }
  4738. if (_positioninfo["OL"] > 20) {
  4739. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4740. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4741. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4742. }
  4743. //while循環判斷麼一個重疊的元素
  4744. do {
  4745. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4746. _top = _positioninfo[0] + 95; //得到定位後的top
  4747. _left = _positioninfo[1]; //得到定位後的left
  4748. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4749. }
  4750. /**
  4751. * 判斷拖動後圖標是否重疊
  4752. *
  4753. * @param {element} 拖動的元素
  4754. * @param {element} 桌面所有的元素
  4755. * @param {array} 拖動元素的位置
  4756. ----------[0] 上 top
  4757. ----------[1] 左 left
  4758. * @return {object} 命名空間
  4759. */
  4760. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4761. //循環所有的圖標
  4762. for (var i = 0; i < childs.length; i++) {
  4763. //判斷有沒有和該圖標誒子重疊的元素
  4764. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4765. return childs[i]; //如果有返回
  4766. }
  4767. }
  4768. }
  4769. //#endregion
  4770. //#endregion
  4771. //#region 桌面應用
  4772. /**
  4773. * 打開應用
  4774. *
  4775. * @param {string} 類型
  4776. -----------------Disk 網盤系統
  4777. -----------------PDisk 學習系統網盤
  4778. -----------------Poto 圖片
  4779. -----------------Video 視頻
  4780. -----------------Music 音樂
  4781. -----------------Word word
  4782. -----------------Excel excel
  4783. -----------------Txt 記事本
  4784. -----------------PB 學習系統
  4785. -----------------Blog 朋友圈系統
  4786. -----------------FTP ftp系統
  4787. -----------------Group 好友群
  4788. -----------------SY 首頁系統
  4789. -----------------Set 個人設置
  4790. -----------------XSet 系統設置
  4791. -----------------App 我們所有的app
  4792. -----------------BC c.1473.cn 平臺
  4793. -----------------CWeb d.1473.cn 變成平臺
  4794. -----------------其他的外聯系統 我們統一用iframe打開
  4795. * @param {array} 類型
  4796. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4797. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4798. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4799. 如果第一個參數為其他,則無第二個參數
  4800. * @returns {array}
  4801. */
  4802. window.addEventListener('message', function (e) { // 監聽 message 事件
  4803. // alert(e.data.type);
  4804. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4805. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4806. //3是展示全部階段 2學生 1老師 4專家
  4807. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4808. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4809. //3是展示全部階段 2學生 1老師 4專家
  4810. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4811. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4812. //3是展示全部階段 2學生 1老師 4專家
  4813. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4814. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4815. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4816. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4817. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4818. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4819. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4820. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4821. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4822. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4823. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4824. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4825. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4826. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4827. //3是展示全部階段 2學生 1老師 4專家
  4828. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4829. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4830. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4831. U.MD.D.I.selectUser();
  4832. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4833. var _formel = document.getElementById("study");
  4834. U.UF.F.windowZooming(_formel);
  4835. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4836. var _formel = document.getElementById("studyDetail");
  4837. U.UF.F.windowZooming(_formel);
  4838. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4839. var _formel = document.getElementById("studyDetail");
  4840. U.UF.F.windowZooming(_formel);
  4841. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4842. var _formel = document.getElementById("studentStudy");
  4843. U.UF.F.windowZooming(_formel);
  4844. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4845. // var _formel = document.getElementById("study");
  4846. //如果最大化了,那麼就把他縮小
  4847. // if (_formel.ismaximize) {
  4848. // return;
  4849. // }
  4850. // U.UF.F.windowZooming(_formel);
  4851. // U.UF.F.topWindow(_formel);
  4852. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4853. // var _formel = document.getElementById("studyDetail");
  4854. //如果最大化了,那麼就把他縮小
  4855. // if (_formel.ismaximize) {
  4856. // return;
  4857. // }
  4858. // U.UF.F.windowZooming(_formel);
  4859. // U.UF.F.topWindow(_formel);
  4860. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4861. // var _formel = document.getElementById("studentStudy");
  4862. // if (_formel.ismaximize) {
  4863. // return;
  4864. // }
  4865. // U.UF.F.windowZooming(_formel);
  4866. // U.UF.F.topWindow(_formel);
  4867. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4868. var _formel = document.getElementById("study");
  4869. // if (_formel.ismaximize) {
  4870. // return;
  4871. // }
  4872. // U.UF.F.windowZooming(_formel);
  4873. U.UF.F.topWindow(_formel);
  4874. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4875. var _formel = document.getElementById("studentIndex");
  4876. U.UF.F.windowZooming(_formel);
  4877. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4878. var _formel = document.getElementById("studyDetailS");
  4879. U.UF.F.windowZooming(_formel);
  4880. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4881. var _formel = document.getElementById("studioIndex");
  4882. U.UF.F.windowZooming(_formel);
  4883. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4884. var _formel = document.getElementById("studyDetailStudio");
  4885. U.UF.F.windowZooming(_formel);
  4886. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4887. var _formel = document.getElementById("studyDetailStudio");
  4888. U.UF.F.windowZooming(_formel);
  4889. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4890. var _formel = document.getElementById("studyDetailNT");
  4891. U.UF.F.windowZooming(_formel);
  4892. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4893. var _formel = document.getElementById("studyDetailS");
  4894. U.UF.F.windowZooming(_formel);
  4895. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4896. var _formel = document.getElementById("studyDetailS");
  4897. U.UF.F.topWindow(_formel);
  4898. } else if (e.data.tools && e.data.tools == "1") {
  4899. // U.MD.D.I.openApplication("whiteboard")
  4900. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4901. } else if (e.data.tools && e.data.tools == "2") {
  4902. U.MD.D.I.openApplication("note")
  4903. } else if (e.data.tools && e.data.tools == "3") {
  4904. // U.MD.D.I.openApplication("mind")
  4905. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4906. } else if (e.data.tools && e.data.tools == "4") {
  4907. U.MD.D.I.openApplication("investigation")
  4908. } else if (e.data.tools && e.data.tools == "6") {
  4909. // U.MD.D.I.openApplication("doc")
  4910. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4911. } else if (e.data.tools && e.data.tools == "7") {
  4912. // U.MD.D.I.openApplication("mindNetwork")
  4913. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4914. } else if (e.data.tools && e.data.tools == "8") {
  4915. U.MD.D.I.openApplication("library")
  4916. } else if (e.data.tools && e.data.tools == "17") {
  4917. U.MD.D.I.openApplication("stuLibrary")
  4918. } else if (e.data.tools && e.data.tools == "18") {
  4919. U.MD.D.I.openApplication("train")
  4920. } else if (e.data.tools && e.data.tools == "21") {
  4921. U.MD.D.I.openApplication("program")
  4922. } else if (e.data.tools && e.data.tools == "22") {
  4923. U.MD.D.I.openApplication("AIprogram2")
  4924. } else if (e.data.tools && e.data.tools == "23") {
  4925. U.MD.D.I.openApplication("Pythonprogram")
  4926. } else if (e.data.tools && e.data.tools == "24") {
  4927. U.MD.D.I.openApplication("AIprogram")
  4928. } else if (e.data.tools && e.data.tools == "25") {
  4929. U.MD.D.I.openApplication("sys")
  4930. } else if (e.data.tools && e.data.tools == "26") {
  4931. // U.MD.D.I.openApplication("courseDesign")
  4932. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4933. } else if (e.data.tools && e.data.tools == "31") {
  4934. U.MD.D.I.openApplication("netWorkPanel")
  4935. } else if (e.data.tools && e.data.tools == "32") {
  4936. U.MD.D.I.openApplication("codeEdit")
  4937. } else if (e.data.tools && e.data.tools == "57") {
  4938. U.MD.D.I.openApplication("CocoPi")
  4939. } else if (e.data.tools && e.data.tools == "63") {
  4940. U.MD.D.I.openApplication("Wood")
  4941. } else if (e.data.tools && e.data.tools == "58") {
  4942. U.MD.D.I.openApplication("car")
  4943. } else if (e.data.tools && e.data.tools == "59") {
  4944. U.MD.D.I.openApplication("lineSearch")
  4945. } else if (e.data.tools && e.data.tools == "60") {
  4946. U.MD.D.I.openApplication("deepLearning")
  4947. } else if (e.data.tools && e.data.tools == "61") {
  4948. U.MD.D.I.openApplication("allHistory")
  4949. } else if (e.data.tools && e.data.tools == "28") {
  4950. U.MD.D.I.openApplication("translation")
  4951. } else if (e.data.tools && e.data.tools == "37") {
  4952. U.MD.D.I.openApplication("mohe")
  4953. } else if (e.data.tools && e.data.tools == "38") {
  4954. U.MD.D.I.openApplication("24game")
  4955. } else if (e.data.tools && e.data.tools == "39") {
  4956. U.MD.D.I.openApplication("GeoGebra")
  4957. } else if (e.data.tools && e.data.tools == "43") {
  4958. U.MD.D.I.openApplication("studentEvaluate")
  4959. } else if (e.data.tools && e.data.tools == "44") {
  4960. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4961. } else if (e.data.tools && e.data.tools == "46") {
  4962. U.MD.D.I.openApplication("project")
  4963. } else if (e.data.tools && e.data.tools == "71") {
  4964. U.MD.D.I.openApplication("aigptCourse")
  4965. } else if (e.data.tools && e.data.tools == "72") {
  4966. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  4967. } else if (e.data.tools && e.data.tools == "1s") {
  4968. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4969. } else if (e.data.tools && e.data.tools == "3s") {
  4970. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4971. } else if (e.data.tools && e.data.tools == "6s") {
  4972. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4973. } else if (e.data.tools && e.data.tools == "1studio") {
  4974. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4975. } else if (e.data.tools && e.data.tools == "3studio") {
  4976. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4977. } else if (e.data.tools && e.data.tools == "6studio") {
  4978. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4979. } else if (e.data.tools && e.data.tools == "3y") {
  4980. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4981. } else if (e.data.tools && e.data.tools == "1y") {
  4982. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4983. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4984. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4985. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4986. U.MD.D.I.openApplication("AIAnalyse")
  4987. } else if (e.data.tools && e.data.tools == "1teacher") {
  4988. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4989. } else if (e.data.tools && e.data.tools == "3teacher") {
  4990. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4991. } else if (e.data.tools && e.data.tools == "7teacher") {
  4992. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4993. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4994. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4995. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4996. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4997. } else if (e.data.tools && e.data.tools == "1E") {
  4998. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4999. } else if (e.data.tools && e.data.tools == "3E") {
  5000. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5001. } else if (e.data.tools && e.data.tools == "57y") {
  5002. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5003. } else if (e.data.tools && e.data.tools == "57u") {
  5004. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5005. } else if (e.data.tools && e.data.tools == "57teacher") {
  5006. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5007. } else if (e.data.tools && e.data.tools == "64") {
  5008. U.MD.D.I.openApplication("AIChat")
  5009. } else if (e.data.tools && e.data.tools == "66") {
  5010. U.MD.D.I.openApplication("formulaEdi")
  5011. } else if (e.data.tools && e.data.tools == "67") {
  5012. U.MD.D.I.openApplication("molStr")
  5013. } else if (e.data.tools && e.data.tools == "68") {
  5014. U.MD.D.I.openApplication("timeAxis")
  5015. } else if (e.data.tools && e.data.tools == "openCourse") {
  5016. let _data = {
  5017. typea: e.data.typea || '',
  5018. typeb: e.data.typeb || '',
  5019. typed: e.data.typed || '',
  5020. }
  5021. U.MD.D.I.openInApplication("index", _data)
  5022. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5023. let _data = {
  5024. classid: e.data.classid || '',
  5025. }
  5026. U.MD.D.I.openInApplication("dataClass", _data)
  5027. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5028. let _data = {
  5029. cid: e.data.cid || '',
  5030. gid: e.data.gid || '',
  5031. }
  5032. U.MD.D.I.openInApplication("opencCscl", _data)
  5033. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5034. U.MD.D.I.openApplication("dataBoardTest")
  5035. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5036. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5037. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5038. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5039. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5040. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5041. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5042. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5043. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5044. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5045. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5046. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5047. }else if (e.data.tools && e.data.tools == "loginSz") {
  5048. U.MD.D.I.openInApplication("loginSz")
  5049. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5050. if($('#classroom_observation_board')[0]){
  5051. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5052. }
  5053. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5054. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5055. if($('#classroom_observation_ob_comment')[0]){
  5056. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5057. }
  5058. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5059. }else if (e.data.tools && e.data.tools == "logout"){
  5060. U.MD.U.LO.logoutSystem()
  5061. }else if (e.data.tools && e.data.tools == "getLogin"){
  5062. let _iframe = $('#UI_Login')[0];
  5063. if (_iframe) {
  5064. var userInfo = US.userInfo;
  5065. var type = 2
  5066. if(userInfo && userInfo.userid){
  5067. type = 1
  5068. }
  5069. _contentWindow = _iframe.contentWindow;
  5070. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5071. }
  5072. }
  5073. });
  5074. U.MD.D.I.selectUser = function () {
  5075. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5076. if (res.value[0].length > 0) {
  5077. US.userInfo = res.value[0][0];
  5078. $(".userName")[0].innerHTML = US.userInfo.username;
  5079. }
  5080. }, [], { "type": "GET", "withCredentials": true });
  5081. }
  5082. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5083. var _userinfo = US.userInfo, //登錄用戶信息
  5084. _userid = US.userInfo.userid, //登錄用戶id
  5085. _oid = _userinfo.organizeid,
  5086. _type = US.userInfo.type,
  5087. _org = US.userInfo.org,
  5088. _role = US.userInfo.role,
  5089. _classId = US.userInfo.classid;
  5090. if (_type == 4) {
  5091. tType = 4
  5092. }
  5093. switch (str) {
  5094. case "studyDetailNT": //無終端模式
  5095. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5096. setTimeout(() => {
  5097. U.MD.U.L.login();
  5098. }, 2000);
  5099. } else {
  5100. _formdiv = new U.UF.UI.form(
  5101. "課程詳情",
  5102. $$("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 }), {
  5103. "id": "studyDetailNT",
  5104. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5105. "onresize": function () { }
  5106. }, {
  5107. closecallback: function () { }
  5108. }, { "style": { "height": "36px" } }).form; //創建窗體
  5109. _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); } }
  5110. break;
  5111. }
  5112. case "studyDetail":
  5113. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5114. setTimeout(() => {
  5115. U.MD.U.L.login();
  5116. }, 2000);
  5117. } else {
  5118. _formdiv = new U.UF.UI.form(
  5119. "課程詳情",
  5120. $$("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 }), {
  5121. "id": "studyDetail",
  5122. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5123. "onresize": function () { }
  5124. }, {
  5125. closecallback: function () { }
  5126. }, { "style": { "height": "36px" } }).form; //創建窗體
  5127. _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); } }
  5128. break;
  5129. }
  5130. case "studyDetailTrain":
  5131. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5132. setTimeout(() => {
  5133. U.MD.U.L.login();
  5134. }, 2000);
  5135. } else {
  5136. _formdiv = new U.UF.UI.form(
  5137. "培訓詳情",
  5138. $$("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 }), {
  5139. "id": "studyDetailTrain",
  5140. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5141. "onresize": function () { }
  5142. }, {
  5143. closecallback: function () { }
  5144. }, { "style": { "height": "36px" } }).form; //創建窗體
  5145. _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); } }
  5146. break;
  5147. }
  5148. case "studyDetailS":
  5149. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5150. setTimeout(() => {
  5151. U.MD.U.L.login();
  5152. }, 2000);
  5153. } else {
  5154. _formdiv = new U.UF.UI.form(
  5155. "項目詳情",
  5156. $$("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 }), {
  5157. "id": "studyDetailS",
  5158. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5159. "onresize": function () { }
  5160. }, {
  5161. closecallback: function () { }
  5162. }, { "style": { "height": "36px" } }).form; //創建窗體
  5163. _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); } }
  5164. break;
  5165. }
  5166. case "studyDetailStudio":
  5167. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5168. setTimeout(() => {
  5169. U.MD.U.L.login();
  5170. }, 2000);
  5171. } else {
  5172. _formdiv = new U.UF.UI.form(
  5173. "工作詳情",
  5174. $$("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 }), {
  5175. "id": "studyDetailStudio",
  5176. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5177. "onresize": function () { }
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //創建窗體
  5181. _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); } }
  5182. break;
  5183. }
  5184. case "studyDetailS5":
  5185. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5186. setTimeout(() => {
  5187. U.MD.U.L.login();
  5188. }, 2000);
  5189. } else {
  5190. _formdiv = new U.UF.UI.form(
  5191. "項目詳情",
  5192. $$("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 }), {
  5193. "id": "studyDetailS",
  5194. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //創建窗體
  5199. _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); } }
  5200. break;
  5201. }
  5202. case "studyDetailGM":
  5203. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5204. setTimeout(() => {
  5205. U.MD.U.L.login();
  5206. }, 2000);
  5207. } else {
  5208. _formdiv = new U.UF.UI.form(
  5209. "課程詳情",
  5210. $$("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 }), {
  5211. "id": "studyDetail",
  5212. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //創建窗體
  5217. _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); } }
  5218. break;
  5219. }
  5220. case "hanUrl":
  5221. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5222. setTimeout(() => {
  5223. U.MD.U.L.login();
  5224. }, 2000);
  5225. } else {
  5226. _formdiv = new U.UF.UI.form(
  5227. "漢字宮",
  5228. $$("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" }), {
  5229. "id": "hanUrl",
  5230. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5231. "onresize": function () { }
  5232. }, {
  5233. closecallback: function () { }
  5234. }, { "style": { "height": "36px" } }).form; //創建窗體
  5235. _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); } }
  5236. break;
  5237. }
  5238. case "index":
  5239. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5240. setTimeout(() => {
  5241. U.MD.U.L.login();
  5242. }, 2000);
  5243. } else {
  5244. _formdiv = new U.UF.UI.form(
  5245. "課程中心",
  5246. $$("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 }), {
  5247. "id": "study",
  5248. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5249. "onresize": function () { }
  5250. }, {
  5251. closecallback: function () { }
  5252. }, { "style": { "height": "36px" } }).form; //創建窗體
  5253. _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); } }
  5254. break;
  5255. }
  5256. case "dataClass":
  5257. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5258. setTimeout(() => {
  5259. U.MD.U.L.login();
  5260. }, 2000);
  5261. } else {
  5262. _formdiv = new U.UF.UI.form(
  5263. "數據報告",
  5264. $$("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 }), {
  5265. "id": "dataClass",
  5266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5267. "onresize": function () { }
  5268. }, {
  5269. closecallback: function () { }
  5270. }, { "style": { "height": "36px" } }).form; //創建窗體
  5271. _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); } }
  5272. break;
  5273. }
  5274. case "opencCscl":
  5275. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5276. setTimeout(() => {
  5277. U.MD.U.L.login();
  5278. }, 2000);
  5279. } else {
  5280. _formdiv = new U.UF.UI.form(
  5281. "協同建構",
  5282. $$("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 }), {
  5283. "id": "futureClass",
  5284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5285. "onresize": function () { }
  5286. }, {
  5287. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5288. }, { "style": { "height": "36px" } }).form; //創建窗體
  5289. _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); } }
  5290. break;
  5291. }
  5292. case "openCourseUpdate":
  5293. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5294. setTimeout(() => {
  5295. U.MD.U.L.login();
  5296. }, 2000);
  5297. } else {
  5298. _formdiv = new U.UF.UI.form(
  5299. "課程管理",
  5300. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5301. "id": "openCourseUpdate",
  5302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //創建窗體
  5307. break;
  5308. }
  5309. case "openNewCourseUpdate":
  5310. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5311. setTimeout(() => {
  5312. U.MD.U.L.login();
  5313. }, 2000);
  5314. } else {
  5315. _formdiv = new U.UF.UI.form(
  5316. "課程管理",
  5317. $$("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 }), {
  5318. "id": "openCourseUpdate",
  5319. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5320. "onresize": function () { }
  5321. }, {
  5322. closecallback: function () { }
  5323. }, { "style": { "height": "36px" } }).form; //創建窗體
  5324. break;
  5325. }
  5326. case "openCourseEUpdate":
  5327. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5328. setTimeout(() => {
  5329. U.MD.U.L.login();
  5330. }, 2000);
  5331. } else {
  5332. _formdiv = new U.UF.UI.form(
  5333. "課程管理",
  5334. $$("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 }), {
  5335. "id": "openCourseUpdate",
  5336. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5337. "onresize": function () { }
  5338. }, {
  5339. closecallback: function () { }
  5340. }, { "style": { "height": "36px" } }).form; //創建窗體
  5341. break;
  5342. }
  5343. case "openCourseAiUpdate":
  5344. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5345. setTimeout(() => {
  5346. U.MD.U.L.login();
  5347. }, 2000);
  5348. } else {
  5349. _formdiv = new U.UF.UI.form(
  5350. "課程管理",
  5351. $$("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 }), {
  5352. "id": "openCourseUpdate",
  5353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //創建窗體
  5358. break;
  5359. }
  5360. case "openCourseAiUpdate2":
  5361. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5362. setTimeout(() => {
  5363. U.MD.U.L.login();
  5364. }, 2000);
  5365. } else {
  5366. _formdiv = new U.UF.UI.form(
  5367. "課程管理",
  5368. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5369. "id": "openCourseUpdate",
  5370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5371. "onresize": function () { }
  5372. }, {
  5373. closecallback: function () { }
  5374. }, { "style": { "height": "36px" } }).form; //創建窗體
  5375. break;
  5376. }
  5377. case "openCourseNewUpdate":
  5378. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5379. setTimeout(() => {
  5380. U.MD.U.L.login();
  5381. }, 2000);
  5382. } else {
  5383. _formdiv = new U.UF.UI.form(
  5384. "課程管理",
  5385. $$("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 }), {
  5386. "id": "openCourseUpdate",
  5387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5388. "onresize": function () { }
  5389. }, {
  5390. closecallback: function () { }
  5391. }, { "style": { "height": "36px" } }).form; //創建窗體
  5392. break;
  5393. }
  5394. case "inviteLoginSz":
  5395. _formdiv = new U.UF.UI.form(
  5396. "隨機碼登錄",
  5397. $$("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 }), {
  5398. "id": "loginSz",
  5399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5400. "onresize": function () { }
  5401. }, {
  5402. closecallback: function () { }
  5403. }, { "style": { "height": "36px" } }).form; //創建窗體
  5404. break;
  5405. case "loginSz":
  5406. _formdiv = new U.UF.UI.form(
  5407. "教師登錄",
  5408. $$("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" }), {
  5409. "id": "loginSz",
  5410. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5411. "onresize": function () { }
  5412. }, {
  5413. closecallback: function () { }
  5414. }, { "style": { "height": "36px" } }).form; //創建窗體
  5415. break;
  5416. case "teacher":
  5417. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5418. setTimeout(() => {
  5419. U.MD.U.L.login();
  5420. }, 2000);
  5421. } else {
  5422. _formdiv = new U.UF.UI.form(
  5423. "教師管理",
  5424. $$("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 }), {
  5425. "id": "teacher",
  5426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5427. "onresize": function () { }
  5428. }, {
  5429. closecallback: function () { }
  5430. }, { "style": { "height": "36px" } }).form; //創建窗體
  5431. break;
  5432. }
  5433. case "dataBoardSZArea":
  5434. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5435. setTimeout(() => {
  5436. U.MD.U.L.login();
  5437. }, 2000);
  5438. } else {
  5439. _formdiv = new U.UF.UI.form(
  5440. "綜合數據看板",
  5441. $$("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 }), {
  5442. "id": "dataBoardSZArea",
  5443. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5444. "onresize": function () { }
  5445. }, {
  5446. closecallback: function () { }
  5447. }, { "style": { "height": "36px" } }).form; //創建窗體
  5448. break;
  5449. }
  5450. case "dataBoardSZCity":
  5451. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5452. setTimeout(() => {
  5453. U.MD.U.L.login();
  5454. }, 2000);
  5455. } else {
  5456. _formdiv = new U.UF.UI.form(
  5457. "綜合數據看板",
  5458. $$("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 }), {
  5459. "id": "dataBoardSZCity",
  5460. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5461. "onresize": function () { }
  5462. }, {
  5463. closecallback: function () { }
  5464. }, { "style": { "height": "36px" } }).form; //創建窗體
  5465. break;
  5466. }
  5467. case "classroom_observation_board":
  5468. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5469. setTimeout(() => {
  5470. U.MD.U.L.login();
  5471. }, 2000);
  5472. } else {
  5473. _formdiv = new U.UF.UI.form(
  5474. "課堂觀察",
  5475. $$("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 }), {
  5476. "id": "classroom_observation_board",
  5477. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5478. "onresize": function () { }
  5479. }, {
  5480. closecallback: function () { }
  5481. }, { "style": { "height": "36px" } }).form; //創建窗體
  5482. break;
  5483. }
  5484. case "classroom_observation_ob_comment":
  5485. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5486. setTimeout(() => {
  5487. U.MD.U.L.login();
  5488. }, 2000);
  5489. } else {
  5490. _formdiv = new U.UF.UI.form(
  5491. "課堂審核",
  5492. $$("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 }), {
  5493. "id": "classroom_observation_ob_comment",
  5494. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5495. "onresize": function () { }
  5496. }, {
  5497. closecallback: function () { }
  5498. }, { "style": { "height": "36px" } }).form; //創建窗體
  5499. break;
  5500. }
  5501. case "gptConfig":
  5502. _formdiv = new U.UF.UI.form(
  5503. data.name ? data.name : "應用中心",
  5504. $$("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 }), {
  5505. "id": "gptConfig" + data.id,
  5506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //創建窗體
  5511. break;
  5512. }
  5513. }
  5514. U.MD.D.I.openApplication = function (str, obj, info) {
  5515. obj = obj || {};
  5516. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5517. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5518. _userinfo = US.userInfo, //登錄用戶信息
  5519. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5520. _oid = obj.organizeid || _userinfo.organizeid,
  5521. _type = US.userInfo.type,
  5522. _org = US.userInfo.org,
  5523. _role = US.userInfo.role,
  5524. _classId = US.userInfo.classid,
  5525. _TscreenType = 1
  5526. _screenType = 2,
  5527. _SscreenType = 3;
  5528. let iframeBool = true
  5529. if(U.UF.UI.form.allForm[str]){
  5530. iframeBool = false
  5531. }
  5532. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5533. return;
  5534. }
  5535. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5536. switch (str) {
  5537. case "studnetProject": //好友打開
  5538. _formdiv = new U.UF.UI.form(
  5539. "我的項目",
  5540. $$("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 }), {
  5541. "id": "studnetProject",
  5542. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //創建窗體
  5547. _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); } }
  5548. break;
  5549. case "studentEvaluate": //好友打開
  5550. _formdiv = new U.UF.UI.form(
  5551. "我的評價",
  5552. $$("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 }), {
  5553. "id": "studentEvaluate",
  5554. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5555. "onresize": function () { }
  5556. }, {
  5557. closecallback: function () { }
  5558. }, { "style": { "height": "36px" } }).form; //創建窗體
  5559. _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); } }
  5560. break;
  5561. case "my":
  5562. _formdiv = new U.UF.UI.form(
  5563. "我的資料",
  5564. $$("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 }), {
  5565. "id": "my",
  5566. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5567. "onresize": function () { }
  5568. }, {
  5569. closecallback: function () { }
  5570. }, { "style": { "height": "36px" } }).form; //創建窗體
  5571. _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); } }
  5572. break;
  5573. case "program":
  5574. _formdiv = new U.UF.UI.form(
  5575. "編程平臺",
  5576. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5577. "id": "program",
  5578. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5579. "onresize": function () { }
  5580. }, {
  5581. closecallback: function () { }
  5582. }, { "style": { "height": "36px" } }).form; //創建窗體
  5583. _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); } }
  5584. break;
  5585. case "library":
  5586. _formdiv = new U.UF.UI.form(
  5587. "素材庫",
  5588. $$("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 }), {
  5589. "id": "library",
  5590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5591. "onresize": function () { }
  5592. }, {
  5593. closecallback: function () { }
  5594. }, { "style": { "height": "36px" } }).form; //創建窗體
  5595. _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); } }
  5596. break;
  5597. case "whiteboard":
  5598. _formdiv = new U.UF.UI.form(
  5599. "電子白板",
  5600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5601. "id": "whiteboard",
  5602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5603. "onresize": function () { }
  5604. }, {
  5605. closecallback: function () { }
  5606. }, { "style": { "height": "36px" } }).form; //創建窗體
  5607. _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); } }
  5608. break;
  5609. case "investigation":
  5610. _formdiv = new U.UF.UI.form(
  5611. "問卷調查",
  5612. $$("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 }), {
  5613. "id": "investigation",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //創建窗體
  5619. _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); } }
  5620. break;
  5621. case "note":
  5622. _formdiv = new U.UF.UI.form(
  5623. "便簽分類",
  5624. $$("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 }), {
  5625. "id": "note",
  5626. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5627. "onresize": function () { }
  5628. }, {
  5629. closecallback: function () { }
  5630. }, { "style": { "height": "36px" } }).form; //創建窗體
  5631. _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); } }
  5632. break;
  5633. // case "score":
  5634. // _formdiv = new U.UF.UI.form(
  5635. // "量規評分",
  5636. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5637. // "id": "score",
  5638. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5639. // "onresize": function() {}
  5640. // }, {
  5641. // closecallback: function() {}
  5642. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5643. // _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); } }
  5644. // break;
  5645. case "mind":
  5646. _formdiv = new U.UF.UI.form(
  5647. "思維導圖",
  5648. $$("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"
  5649. "id": "mind",
  5650. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5651. "onresize": function () { }
  5652. }, {
  5653. closecallback: function () { }
  5654. }, { "style": { "height": "36px" } }).form; //創建窗體
  5655. _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); } }
  5656. break;
  5657. case "doc":
  5658. // U.MD.D.I.isRoom();
  5659. _formdiv = new U.UF.UI.form(
  5660. "協同文檔",
  5661. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5662. "id": "doc",
  5663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5664. "onresize": function () { }
  5665. }, {
  5666. closecallback: function () { }
  5667. }, { "style": { "height": "36px" } }).form; //創建窗體
  5668. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5669. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5670. // })
  5671. _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); } }
  5672. break;
  5673. case "studentStudy":
  5674. _formdiv = new U.UF.UI.form(
  5675. "課程中心",
  5676. $$("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
  5677. "id": "studentStudy",
  5678. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //創建窗體
  5683. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5684. break;
  5685. case "train": //好友打開
  5686. _formdiv = new U.UF.UI.form(
  5687. "訓練平臺",
  5688. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5689. "id": "train",
  5690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //創建窗體
  5695. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5696. break;
  5697. case "mindNetwork": //好友打開
  5698. _formdiv = new U.UF.UI.form(
  5699. "思維網格",
  5700. $$("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 }), {
  5701. "id": "mindNetwork",
  5702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //創建窗體
  5707. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5708. break;
  5709. case "studentClassRoom": //好友打開
  5710. _formdiv = new U.UF.UI.form(
  5711. "實時課堂",
  5712. $$("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 }), {
  5713. "id": "studentClassRoom",
  5714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //創建窗體
  5719. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5720. setTimeout(() => {
  5721. U.UF.F.windowZooming(_formdiv)
  5722. }, 0);
  5723. break;
  5724. }
  5725. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5726. switch (str) {
  5727. case "studnetProject": //好友打開
  5728. _formdiv = new U.UF.UI.form(
  5729. "我的項目",
  5730. $$("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 }), {
  5731. "id": "studnetProject",
  5732. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { }
  5736. }, { "style": { "height": "36px" } }).form; //創建窗體
  5737. _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); } }
  5738. break;
  5739. case "studentEvaluate": //好友打開
  5740. _formdiv = new U.UF.UI.form(
  5741. "我的評價",
  5742. $$("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 }), {
  5743. "id": "studentEvaluate",
  5744. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5745. "onresize": function () { }
  5746. }, {
  5747. closecallback: function () { }
  5748. }, { "style": { "height": "36px" } }).form; //創建窗體
  5749. _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); } }
  5750. break;
  5751. case "my":
  5752. _formdiv = new U.UF.UI.form(
  5753. "我的資料",
  5754. $$("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 }), {
  5755. "id": "my",
  5756. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //創建窗體
  5761. _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); } }
  5762. break;
  5763. case "program":
  5764. _formdiv = new U.UF.UI.form(
  5765. "編程平臺",
  5766. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5767. "id": "program",
  5768. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //創建窗體
  5773. _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); } }
  5774. break;
  5775. case "library":
  5776. _formdiv = new U.UF.UI.form(
  5777. "素材庫",
  5778. $$("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 }), {
  5779. "id": "library",
  5780. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5781. "onresize": function () { }
  5782. }, {
  5783. closecallback: function () { }
  5784. }, { "style": { "height": "36px" } }).form; //創建窗體
  5785. _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); } }
  5786. break;
  5787. case "whiteboard":
  5788. _formdiv = new U.UF.UI.form(
  5789. "電子白板",
  5790. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5791. "id": "whiteboard",
  5792. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //創建窗體
  5797. _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); } }
  5798. break;
  5799. case "investigation":
  5800. _formdiv = new U.UF.UI.form(
  5801. "問卷調查",
  5802. $$("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 }), {
  5803. "id": "investigation",
  5804. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //創建窗體
  5809. _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); } }
  5810. break;
  5811. case "note":
  5812. _formdiv = new U.UF.UI.form(
  5813. "便簽分類",
  5814. $$("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 }), {
  5815. "id": "note",
  5816. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //創建窗體
  5821. _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); } }
  5822. break;
  5823. // case "score":
  5824. // _formdiv = new U.UF.UI.form(
  5825. // "量規評分",
  5826. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5827. // "id": "score",
  5828. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5829. // "onresize": function() {}
  5830. // }, {
  5831. // closecallback: function() {}
  5832. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5833. // _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); } }
  5834. // break;
  5835. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5839. "id": "mind",
  5840. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5846. break;
  5847. case "doc":
  5848. // U.MD.D.I.isRoom();
  5849. _formdiv = new U.UF.UI.form(
  5850. "協同文檔",
  5851. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5852. "id": "doc",
  5853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5854. "onresize": function () { }
  5855. }, {
  5856. closecallback: function () { }
  5857. }, { "style": { "height": "36px" } }).form; //創建窗體
  5858. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5859. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5860. })
  5861. _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); } }
  5862. break;
  5863. case "train": //好友打開
  5864. _formdiv = new U.UF.UI.form(
  5865. "訓練平臺",
  5866. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5867. "id": "train",
  5868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5869. "onresize": function () { }
  5870. }, {
  5871. closecallback: function () { }
  5872. }, { "style": { "height": "36px" } }).form; //創建窗體
  5873. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5874. break;
  5875. case "studentStudy":
  5876. _formdiv = new U.UF.UI.form(
  5877. "課程中心",
  5878. $$("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
  5879. "id": "studentStudy",
  5880. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5881. "onresize": function () { }
  5882. }, {
  5883. closecallback: function () { }
  5884. }, { "style": { "height": "36px" } }).form; //創建窗體
  5885. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5886. break;
  5887. case "mindNetwork": //好友打開
  5888. _formdiv = new U.UF.UI.form(
  5889. "思維網格",
  5890. $$("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 }), {
  5891. "id": "mindNetwork",
  5892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5893. "onresize": function () { }
  5894. }, {
  5895. closecallback: function () { }
  5896. }, { "style": { "height": "36px" } }).form; //創建窗體
  5897. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5898. break;
  5899. case "studentClassRoom": //好友打開
  5900. _formdiv = new U.UF.UI.form(
  5901. "實時課堂",
  5902. $$("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 }), {
  5903. "id": "studentClassRoom",
  5904. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5905. "onresize": function () { }
  5906. }, {
  5907. closecallback: function () { }
  5908. }, { "style": { "height": "36px" } }).form; //創建窗體
  5909. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5910. setTimeout(() => {
  5911. U.UF.F.windowZooming(_formdiv)
  5912. }, 0);
  5913. break;
  5914. }
  5915. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5916. //選擇應用處理
  5917. switch (str) {
  5918. case "project": //好友打開
  5919. _formdiv = new U.UF.UI.form(
  5920. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5921. $$("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 }), {
  5922. "id": "project",
  5923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5924. "onresize": function () { }
  5925. }, {
  5926. closecallback: function () { }
  5927. }, { "style": { "height": "36px" } }).form; //創建窗體
  5928. _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); } }
  5929. break;
  5930. case "student":
  5931. _formdiv = new U.UF.UI.form(
  5932. "學生管理",
  5933. $$("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 }), {
  5934. "id": "student",
  5935. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5936. "onresize": function () { }
  5937. }, {
  5938. closecallback: function () { }
  5939. }, { "style": { "height": "36px" } }).form; //創建窗體
  5940. _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); } }
  5941. break;
  5942. case "evaluate":
  5943. _formdiv = new U.UF.UI.form(
  5944. "學生評價",
  5945. $$("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 }), {
  5946. "id": "evaluate",
  5947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5948. "onresize": function () { }
  5949. }, {
  5950. closecallback: function () { }
  5951. }, { "style": { "height": "36px" } }).form; //創建窗體
  5952. _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); } }
  5953. break;
  5954. case "sys":
  5955. _formdiv = new U.UF.UI.form(
  5956. "目標管理",
  5957. $$("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 }), {
  5958. "id": "sys",
  5959. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5960. "onresize": function () { }
  5961. }, {
  5962. closecallback: function () { }
  5963. }, { "style": { "height": "36px" } }).form; //創建窗體
  5964. _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); } }
  5965. break;
  5966. case "courseDesign":
  5967. _formdiv = new U.UF.UI.form(
  5968. "項目設計",
  5969. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5970. "id": "courseDesign",
  5971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5972. "onresize": function () { }
  5973. }, {
  5974. closecallback: function () { }
  5975. }, { "style": { "height": "36px" } }).form; //創建窗體
  5976. _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); } }
  5977. break;
  5978. case "program":
  5979. _formdiv = new U.UF.UI.form(
  5980. "編程平臺",
  5981. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5982. "id": "program",
  5983. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5984. "onresize": function () { }
  5985. }, {
  5986. closecallback: function () { }
  5987. }, { "style": { "height": "36px" } }).form; //創建窗體
  5988. _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); } }
  5989. break;
  5990. case "class":
  5991. _formdiv = new U.UF.UI.form(
  5992. "班級管理",
  5993. $$("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 }), {
  5994. "id": "class",
  5995. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5996. "onresize": function () { }
  5997. }, {
  5998. closecallback: function () { }
  5999. }, { "style": { "height": "36px" } }).form; //創建窗體
  6000. _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); } }
  6001. break;
  6002. case "Grade":
  6003. _formdiv = new U.UF.UI.form(
  6004. "年級管理",
  6005. $$("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 }), {
  6006. "id": "Grade",
  6007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, { "style": { "height": "36px" } }).form; //創建窗體
  6012. _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); } }
  6013. break;
  6014. case "teacherOffice":
  6015. _formdiv = new U.UF.UI.form(
  6016. "教研室",
  6017. $$("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 }), {
  6018. "id": "teacherOffice",
  6019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6020. "onresize": function () { }
  6021. }, {
  6022. closecallback: function () { }
  6023. }, { "style": { "height": "36px" } }).form; //創建窗體
  6024. _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); } }
  6025. break;
  6026. case "my":
  6027. _formdiv = new U.UF.UI.form(
  6028. "我的資料",
  6029. $$("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 }), {
  6030. "id": "my",
  6031. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6032. "onresize": function () { }
  6033. }, {
  6034. closecallback: function () { }
  6035. }, { "style": { "height": "36px" } }).form; //創建窗體
  6036. _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); } }
  6037. break;
  6038. case "notice":
  6039. _formdiv = new U.UF.UI.form(
  6040. "通知公告",
  6041. $$("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 }), {
  6042. "id": "notice",
  6043. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6044. "onresize": function () { }
  6045. }, {
  6046. closecallback: function () { }
  6047. }, { "style": { "height": "36px" } }).form; //創建窗體
  6048. _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); } }
  6049. break;
  6050. case "library":
  6051. _formdiv = new U.UF.UI.form(
  6052. "素材庫",
  6053. $$("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 }), {
  6054. "id": "library",
  6055. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6056. "onresize": function () { }
  6057. }, {
  6058. closecallback: function () { }
  6059. }, { "style": { "height": "36px" } }).form; //創建窗體
  6060. _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); } }
  6061. break;
  6062. case "whiteboard":
  6063. _formdiv = new U.UF.UI.form(
  6064. "電子白板",
  6065. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6066. "id": "whiteboard",
  6067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //創建窗體
  6072. _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); } }
  6073. break;
  6074. case "investigation":
  6075. _formdiv = new U.UF.UI.form(
  6076. "問卷調查",
  6077. $$("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 }), {
  6078. "id": "investigation",
  6079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, { "style": { "height": "36px" } }).form; //創建窗體
  6084. _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); } }
  6085. break;
  6086. case "note":
  6087. _formdiv = new U.UF.UI.form(
  6088. "便簽分類",
  6089. $$("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 }), {
  6090. "id": "note",
  6091. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, { "style": { "height": "36px" } }).form; //創建窗體
  6096. _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); } }
  6097. break;
  6098. // case "score":
  6099. // _formdiv = new U.UF.UI.form(
  6100. // "量規評分",
  6101. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6102. // "id": "score",
  6103. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6104. // "onresize": function() {}
  6105. // }, {
  6106. // closecallback: function() {}
  6107. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6108. // _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); } }
  6109. // break;
  6110. case "mind":
  6111. _formdiv = new U.UF.UI.form(
  6112. "思維導圖",
  6113. $$("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"
  6114. "id": "mind",
  6115. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6116. "onresize": function () { }
  6117. }, {
  6118. closecallback: function () { }
  6119. }, { "style": { "height": "36px" } }).form; //創建窗體
  6120. _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); } }
  6121. break;
  6122. case "doc":
  6123. // U.MD.D.I.isRoom();
  6124. _formdiv = new U.UF.UI.form(
  6125. "協同文檔",
  6126. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6127. "id": "doc",
  6128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6129. "onresize": function () { }
  6130. }, {
  6131. closecallback: function () { }
  6132. }, { "style": { "height": "36px" } }).form; //創建窗體
  6133. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6134. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6135. })
  6136. _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); } }
  6137. break;
  6138. case "study":
  6139. _formdiv = new U.UF.UI.form(
  6140. "課程中心",
  6141. $$("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
  6142. "id": "study",
  6143. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6144. "onresize": function () { }
  6145. }, {
  6146. closecallback: function () { }
  6147. }, { "style": { "height": "36px" } }).form; //創建窗體
  6148. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6149. break;
  6150. case "mindNetwork": //好友打開
  6151. _formdiv = new U.UF.UI.form(
  6152. "思維網格",
  6153. $$("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 }), {
  6154. "id": "mindNetwork",
  6155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6156. "onresize": function () { }
  6157. }, {
  6158. closecallback: function () { }
  6159. }, { "style": { "height": "36px" } }).form; //創建窗體
  6160. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6161. break;
  6162. case "train": //好友打開
  6163. _formdiv = new U.UF.UI.form(
  6164. "訓練平臺",
  6165. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6166. "id": "mindNetwork",
  6167. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6168. "onresize": function () { }
  6169. }, {
  6170. closecallback: function () { }
  6171. }, { "style": { "height": "36px" } }).form; //創建窗體
  6172. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6173. break;
  6174. case "teacherClassRoom": //好友打開
  6175. _formdiv = new U.UF.UI.form(
  6176. "實時課堂",
  6177. $$("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 }), {
  6178. "id": "teacherClassRoom",
  6179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6180. "onresize": function () { }
  6181. }, {
  6182. closecallback: function () { }
  6183. }, { "style": { "height": "36px" } }).form; //創建窗體
  6184. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6185. setTimeout(() => {
  6186. U.UF.F.windowZooming(_formdiv)
  6187. }, 0);
  6188. break;
  6189. }
  6190. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6191. switch (str) {
  6192. case "project": //好友打開
  6193. _formdiv = new U.UF.UI.form(
  6194. "課程管理",
  6195. $$("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 }), {
  6196. "id": "project",
  6197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6198. "onresize": function () { }
  6199. }, {
  6200. closecallback: function () { }
  6201. }, { "style": { "height": "36px" } }).form; //創建窗體
  6202. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6203. break;
  6204. case "evaluate":
  6205. _formdiv = new U.UF.UI.form(
  6206. "學生評價",
  6207. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6208. "id": "evaluate",
  6209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6210. "onresize": function () { }
  6211. }, {
  6212. closecallback: function () { }
  6213. }, { "style": { "height": "36px" } }).form; //創建窗體
  6214. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "學生評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6215. break;
  6216. case "notice":
  6217. _formdiv = new U.UF.UI.form(
  6218. "通知公告",
  6219. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6220. "id": "notice",
  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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6227. break;
  6228. case "stuLibrary":
  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/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6232. "id": "stuLibrary",
  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/stuLibrary.png)" }, "name": "學習資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6239. break;
  6240. case "program":
  6241. _formdiv = new U.UF.UI.form(
  6242. "編程平臺",
  6243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6244. "id": "program",
  6245. "style": { "width": "70%", "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/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6251. break;
  6252. case "whiteboard":
  6253. _formdiv = new U.UF.UI.form(
  6254. "電子白板",
  6255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6256. "id": "whiteboard",
  6257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //創建窗體
  6262. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "電子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6263. break;
  6264. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6268. "id": "investigation",
  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/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6275. break;
  6276. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6280. "id": "mind",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //創建窗體
  6286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6287. break;
  6288. case "doc":
  6289. // U.MD.D.I.isRoom();
  6290. _formdiv = new U.UF.UI.form(
  6291. "協同文檔",
  6292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6293. "id": "doc",
  6294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //創建窗體
  6299. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6300. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6301. })
  6302. _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); } }
  6303. break;
  6304. case "study":
  6305. _formdiv = new U.UF.UI.form(
  6306. "課程中心",
  6307. $$("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
  6308. "id": "study",
  6309. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6310. "onresize": function () { }
  6311. }, {
  6312. closecallback: function () { }
  6313. }, { "style": { "height": "36px" } }).form; //創建窗體
  6314. _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); } }
  6315. break;
  6316. case "mindNetwork": //好友打開
  6317. _formdiv = new U.UF.UI.form(
  6318. "思維網格",
  6319. $$("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 }), {
  6320. "id": "mindNetwork",
  6321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, { "style": { "height": "36px" } }).form; //創建窗體
  6326. _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); } }
  6327. break;
  6328. case "train": //好友打開
  6329. _formdiv = new U.UF.UI.form(
  6330. "訓練平臺",
  6331. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6332. "id": "train",
  6333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //創建窗體
  6338. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6339. break;
  6340. case "sys":
  6341. _formdiv = new U.UF.UI.form(
  6342. "目標管理",
  6343. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6344. "id": "sys",
  6345. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //創建窗體
  6350. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目標管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6351. break;
  6352. case "courseDesign":
  6353. _formdiv = new U.UF.UI.form(
  6354. "項目設計",
  6355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6356. "id": "courseDesign",
  6357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //創建窗體
  6362. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "項目設計", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6363. break;
  6364. }
  6365. } else if (!_type) {
  6366. switch (str) {
  6367. case "my":
  6368. _formdiv = new U.UF.UI.form(
  6369. "我的資料",
  6370. $$("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 }), {
  6371. "id": "my",
  6372. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //創建窗體
  6377. _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); } }
  6378. break;
  6379. }
  6380. }
  6381. switch (str) {
  6382. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6383. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6384. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6385. case "formulaEdi": //公式編輯
  6386. _formdiv = new U.UF.UI.form(
  6387. "公式編輯",
  6388. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6389. "id": "formulaEdi",
  6390. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //創建窗體
  6395. _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); } }
  6396. break;
  6397. case "molStr": //分子結構
  6398. _formdiv = new U.UF.UI.form(
  6399. "分子結構",
  6400. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6401. "id": "molStr",
  6402. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6403. "onresize": function () { }
  6404. }, {
  6405. closecallback: function () { }
  6406. }, { "style": { "height": "36px" } }).form; //創建窗體
  6407. _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); } }
  6408. break;
  6409. case "timeAxis": //時間軸
  6410. _formdiv = new U.UF.UI.form(
  6411. "時間軸",
  6412. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6413. "id": "timeAxis",
  6414. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6415. "onresize": function () { }
  6416. }, {
  6417. closecallback: function () { }
  6418. }, { "style": { "height": "36px" } }).form; //創建窗體
  6419. _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); } }
  6420. break;
  6421. case "AIprogram2": //AI體驗
  6422. _formdiv = new U.UF.UI.form(
  6423. "AI體驗",
  6424. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6425. "id": "AIprogram2",
  6426. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6427. "onresize": function () { }
  6428. }, {
  6429. closecallback: function () { }
  6430. }, { "style": { "height": "36px" } }).form; //創建窗體
  6431. _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); } }
  6432. break;
  6433. case "Pythonprogram": //python編程
  6434. _formdiv = new U.UF.UI.form(
  6435. "Python編程",
  6436. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6437. "id": "Pythonprogram",
  6438. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6439. "onresize": function () { }
  6440. }, {
  6441. closecallback: function () { }
  6442. }, { "style": { "height": "36px" } }).form; //創建窗體
  6443. _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); } }
  6444. break;
  6445. case "AIprogram": //ai編程
  6446. _formdiv = new U.UF.UI.form(
  6447. "AI編程平臺",
  6448. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6449. "id": "AIprogram",
  6450. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6451. "onresize": function () { }
  6452. }, {
  6453. closecallback: function () { }
  6454. }, { "style": { "height": "36px" } }).form; //創建窗體
  6455. _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); } }
  6456. break;
  6457. case "CocoPi": //CocoPi
  6458. _formdiv = new U.UF.UI.form(
  6459. "CocoPi",
  6460. $$("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" }), {
  6461. "id": "CocoPi",
  6462. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6463. "onresize": function () { }
  6464. }, {
  6465. closecallback: function () { }
  6466. }, { "style": { "height": "36px" } }).form; //創建窗體
  6467. _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); } }
  6468. break;
  6469. case "Wood": //Wood
  6470. _formdiv = new U.UF.UI.form(
  6471. "海龜編程",
  6472. $$("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/" }), {
  6473. "id": "Wood",
  6474. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //創建窗體
  6479. _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); } }
  6480. break;
  6481. case "car": //模擬駕駛
  6482. _formdiv = new U.UF.UI.form(
  6483. "模擬駕駛",
  6484. $$("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/" }), {
  6485. "id": "car",
  6486. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6487. "onresize": function () { }
  6488. }, {
  6489. closecallback: function () { }
  6490. }, { "style": { "height": "36px" } }).form; //創建窗體
  6491. _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); } }
  6492. break;
  6493. case "lineSearch": //路徑搜索
  6494. _formdiv = new U.UF.UI.form(
  6495. "路徑搜索",
  6496. $$("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/" }), {
  6497. "id": "lineSearch",
  6498. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6499. "onresize": function () { }
  6500. }, {
  6501. closecallback: function () { }
  6502. }, { "style": { "height": "36px" } }).form; //創建窗體
  6503. _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); } }
  6504. break;
  6505. case "deepLearning": //深度學習
  6506. _formdiv = new U.UF.UI.form(
  6507. "深度學習",
  6508. $$("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/#" }), {
  6509. "id": "deepLearning",
  6510. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6511. "onresize": function () { }
  6512. }, {
  6513. closecallback: function () { }
  6514. }, { "style": { "height": "36px" } }).form; //創建窗體
  6515. _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); } }
  6516. break;
  6517. case "allHistory": //深度學習
  6518. _formdiv = new U.UF.UI.form(
  6519. "全歷史",
  6520. $$("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/" }), {
  6521. "id": "allHistory",
  6522. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6523. "onresize": function () { }
  6524. }, {
  6525. closecallback: function () { }
  6526. }, { "style": { "height": "36px" } }).form; //創建窗體
  6527. _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); } }
  6528. break;
  6529. case "chatPDF": //ai編程
  6530. _formdiv = new U.UF.UI.form(
  6531. "chatPDF",
  6532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6533. "id": "chatPDF",
  6534. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6535. "onresize": function () { }
  6536. }, {
  6537. closecallback: function () { }
  6538. }, { "style": { "height": "36px" } }).form; //創建窗體
  6539. _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); } }
  6540. break;
  6541. case "resources": //國家教育
  6542. _formdiv = new U.UF.UI.form(
  6543. "國家教育",
  6544. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6545. "id": "resources",
  6546. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6547. "onresize": function () { }
  6548. }, {
  6549. closecallback: function () { }
  6550. }, { "style": { "height": "36px" } }).form; //創建窗體
  6551. _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); } }
  6552. break;
  6553. case "codeEdit": //源碼編輯
  6554. _formdiv = new U.UF.UI.form(
  6555. "源碼編輯",
  6556. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6557. "id": "codeEdit",
  6558. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6559. "onresize": function () { }
  6560. }, {
  6561. closecallback: function () { }
  6562. }, { "style": { "height": "36px" } }).form; //創建窗體
  6563. _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); } }
  6564. break; //
  6565. case "MindMap": //MindMap
  6566. _formdiv = new U.UF.UI.form(
  6567. "MindMap",
  6568. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6569. "id": "MindMap",
  6570. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6571. "onresize": function () { }
  6572. }, {
  6573. closecallback: function () { }
  6574. }, { "style": { "height": "36px" } }).form; //創建窗體
  6575. _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); } }
  6576. break;
  6577. case "netWorkPanel": //netWorkPanel
  6578. _formdiv = new U.UF.UI.form(
  6579. "netWorkPanel",
  6580. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6581. "id": "netWorkPanel",
  6582. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6583. "onresize": function () { }
  6584. }, {
  6585. closecallback: function () { }
  6586. }, { "style": { "height": "36px" } }).form; //創建窗體
  6587. _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); } }
  6588. break;
  6589. case "GeoGebra": //GeoGebra
  6590. _formdiv = new U.UF.UI.form(
  6591. "GeoGebra",
  6592. $$("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" }), {
  6593. "id": "GeoGebra",
  6594. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6595. "onresize": function () { }
  6596. }, {
  6597. closecallback: function () { }
  6598. }, { "style": { "height": "36px" } }).form; //創建窗體
  6599. _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); } }
  6600. break;
  6601. case "translation": //翻譯
  6602. _formdiv = new U.UF.UI.form(
  6603. "翻譯",
  6604. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6605. "id": "translation",
  6606. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6607. "onresize": function () { }
  6608. }, {
  6609. closecallback: function () { }
  6610. }, { "style": { "height": "36px" } }).form; //創建窗體
  6611. _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); } }
  6612. break;
  6613. case "mohe": //魔盒
  6614. _formdiv = new U.UF.UI.form(
  6615. "魔盒識字",
  6616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6617. "id": "mohe",
  6618. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //創建窗體
  6623. _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); } }
  6624. break;
  6625. case "24game": //24點
  6626. _formdiv = new U.UF.UI.form(
  6627. "24點",
  6628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6629. "id": "24game",
  6630. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, { "style": { "height": "36px" } }).form; //創建窗體
  6635. _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); } }
  6636. break;
  6637. case "case":
  6638. _formdiv = new U.UF.UI.form(
  6639. "課程進展",
  6640. $$("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 }), {
  6641. "id": "case",
  6642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () { }
  6646. }, { "style": { "height": "36px" } }).form; //創建窗體
  6647. _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); } }
  6648. break;
  6649. case "snf":
  6650. _formdiv = new U.UF.UI.form(
  6651. "賽諾梵",
  6652. $$("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" }), {
  6653. "id": "snf",
  6654. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6655. "onresize": function () { }
  6656. }, {
  6657. closecallback: function () { }
  6658. }, { "style": { "height": "36px" } }).form; //創建窗體
  6659. _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); } }
  6660. break;
  6661. case "hanFamily":
  6662. _formdiv = new U.UF.UI.form(
  6663. "漢字家族",
  6664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6665. "id": "hanFamily",
  6666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6667. "onresize": function () { }
  6668. }, {
  6669. closecallback: function () { }
  6670. }, { "style": { "height": "36px" } }).form; //創建窗體
  6671. _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); } }
  6672. break;
  6673. case "hanClassics":
  6674. _formdiv = new U.UF.UI.form(
  6675. "國學經典",
  6676. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6677. "id": "hanClassics",
  6678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6679. "onresize": function () { }
  6680. }, {
  6681. closecallback: function () { }
  6682. }, { "style": { "height": "36px" } }).form; //創建窗體
  6683. _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); } }
  6684. break;
  6685. case "hanTraining":
  6686. _formdiv = new U.UF.UI.form(
  6687. "筆畫訓練",
  6688. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6689. "id": "hanTraining",
  6690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6691. "onresize": function () { }
  6692. }, {
  6693. closecallback: function () { }
  6694. }, { "style": { "height": "36px" } }).form; //創建窗體
  6695. _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); } }
  6696. break;
  6697. case "hanClass":
  6698. _formdiv = new U.UF.UI.form(
  6699. "書法課堂",
  6700. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6701. "id": "hanClass",
  6702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6703. "onresize": function () { }
  6704. }, {
  6705. closecallback: function () { }
  6706. }, { "style": { "height": "36px" } }).form; //創建窗體
  6707. _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); } }
  6708. break;
  6709. case "han":
  6710. _formdiv = new U.UF.UI.form(
  6711. "漢字宮",
  6712. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6713. "id": "han",
  6714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //創建窗體
  6719. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "漢字宮", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6720. break;
  6721. case "projectGM": //課程管理
  6722. _formdiv = new U.UF.UI.form(
  6723. "課程管理",
  6724. $$("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 }), {
  6725. "id": "projectGM",
  6726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //創建窗體
  6731. _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); } }
  6732. break;
  6733. case "studyGM": //課程中心
  6734. _formdiv = new U.UF.UI.form(
  6735. "課程中心",
  6736. $$("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
  6737. "id": "study",
  6738. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () { }
  6742. }, { "style": { "height": "36px" } }).form; //創建窗體
  6743. _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); } }
  6744. break;
  6745. // studentGM
  6746. case "studentGM": //學生管理
  6747. _formdiv = new U.UF.UI.form(
  6748. "學生管理",
  6749. $$("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 }), {
  6750. "id": "studentGM",
  6751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6752. "onresize": function () { }
  6753. }, {
  6754. closecallback: function () { }
  6755. }, { "style": { "height": "36px" } }).form; //創建窗體
  6756. _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); } }
  6757. break;
  6758. case "evaluateGM": //學生評價
  6759. _formdiv = new U.UF.UI.form(
  6760. "學生評價",
  6761. $$("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 }), {
  6762. "id": "evaluateGM",
  6763. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6764. "onresize": function () { }
  6765. }, {
  6766. closecallback: function () { }
  6767. }, { "style": { "height": "36px" } }).form; //創建窗體
  6768. _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); } }
  6769. break;
  6770. // classGM
  6771. case "classGM": //班級管理
  6772. _formdiv = new U.UF.UI.form(
  6773. "班級管理",
  6774. $$("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 }), {
  6775. "id": "classGM",
  6776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6777. "onresize": function () { }
  6778. }, {
  6779. closecallback: function () { }
  6780. }, { "style": { "height": "36px" } }).form; //創建窗體
  6781. _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); } }
  6782. break;
  6783. // dataGM
  6784. case "dataGM":
  6785. _formdiv = new U.UF.UI.form(
  6786. "我的資料",
  6787. $$("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 }), {
  6788. "id": "dataGM",
  6789. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6790. "onresize": function () { }
  6791. }, {
  6792. closecallback: function () { }
  6793. }, { "style": { "height": "36px" } }).form; //創建窗體
  6794. _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); } }
  6795. break;
  6796. // caseGM
  6797. case "caseGM": //課程進展
  6798. _formdiv = new U.UF.UI.form(
  6799. "課程進展",
  6800. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6801. "id": "caseGM",
  6802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //創建窗體
  6807. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "課程進展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6808. break;
  6809. // meterialGM
  6810. case "meterialGM": //素材庫
  6811. _formdiv = new U.UF.UI.form(
  6812. "素材庫",
  6813. $$("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 }), {
  6814. "id": "meterialGM",
  6815. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6816. "onresize": function () { }
  6817. }, {
  6818. closecallback: function () { }
  6819. }, { "style": { "height": "36px" } }).form; //創建窗體
  6820. _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); } }
  6821. break;
  6822. // evaluateSGM
  6823. case "evaluateSGM": //我的評價
  6824. _formdiv = new U.UF.UI.form(
  6825. "我的評價",
  6826. $$("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 }), {
  6827. "id": "evaluateSGM",
  6828. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6829. "onresize": function () { }
  6830. }, {
  6831. closecallback: function () { }
  6832. }, { "style": { "height": "36px" } }).form; //創建窗體
  6833. _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); } }
  6834. break;
  6835. case "jupyter": //jupyter
  6836. _formdiv = new U.UF.UI.form(
  6837. "jupyter",
  6838. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6839. "id": "jupyter",
  6840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6841. "onresize": function () { }
  6842. }, {
  6843. closecallback: function () { }
  6844. }, { "style": { "height": "36px" } }).form; //創建窗體
  6845. _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); } }
  6846. break;
  6847. case "number": //數字實驗室
  6848. _formdiv = new U.UF.UI.form(
  6849. "數字實驗室",
  6850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6851. "id": "number",
  6852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6853. "onresize": function () { }
  6854. }, {
  6855. closecallback: function () { }
  6856. }, { "style": { "height": "36px" } }).form; //創建窗體
  6857. _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); } }
  6858. break;
  6859. case "studentCourse": //項目管理 學生
  6860. _formdiv = new U.UF.UI.form(
  6861. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6862. $$("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 }), {
  6863. "id": "studentCourse",
  6864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6865. "onresize": function () { }
  6866. }, {
  6867. closecallback: function () { }
  6868. }, { "style": { "height": "36px" } }).form; //創建窗體
  6869. _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); } }
  6870. break;
  6871. case "studentCourseS": //項目管理 老師
  6872. _formdiv = new U.UF.UI.form(
  6873. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6874. $$("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 }), {
  6875. "id": "studentCourseS",
  6876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6877. "onresize": function () { }
  6878. }, {
  6879. closecallback: function () { }
  6880. }, { "style": { "height": "36px" } }).form; //創建窗體
  6881. _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); } }
  6882. break;
  6883. case "studentIndex": //項目中心
  6884. _formdiv = new U.UF.UI.form(
  6885. "項目中心",
  6886. $$("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 }), {
  6887. "id": "studentIndex",
  6888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6889. "onresize": function () { }
  6890. }, {
  6891. closecallback: function () { }
  6892. }, { "style": { "height": "36px" } }).form; //創建窗體
  6893. _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); } }
  6894. break;
  6895. case "CaseDesignS":
  6896. _formdiv = new U.UF.UI.form(
  6897. "項目進展",
  6898. $$("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 }), {
  6899. "id": "case",
  6900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6901. "onresize": function () { }
  6902. }, {
  6903. closecallback: function () { }
  6904. }, { "style": { "height": "36px" } }).form; //創建窗體
  6905. _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); } }
  6906. break;
  6907. case "tcStudent": //騰訊學生管理
  6908. _formdiv = new U.UF.UI.form(
  6909. "學生管理",
  6910. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6911. "id": "tcStudent",
  6912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, { "style": { "height": "36px" } }).form; //創建窗體
  6917. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "學生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6918. break;
  6919. case "tcSchool": //騰訊學校管理
  6920. _formdiv = new U.UF.UI.form(
  6921. "學校管理",
  6922. $$("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 }), {
  6923. "id": "tcSchool",
  6924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6925. "onresize": function () { }
  6926. }, {
  6927. closecallback: function () { }
  6928. }, { "style": { "height": "36px" } }).form; //創建窗體
  6929. _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); } }
  6930. break;
  6931. case "tcTeacher": //騰訊學校管理
  6932. _formdiv = new U.UF.UI.form(
  6933. "教師管理",
  6934. $$("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 }), {
  6935. "id": "tcTeacher",
  6936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6937. "onresize": function () { }
  6938. }, {
  6939. closecallback: function () { }
  6940. }, { "style": { "height": "36px" } }).form; //創建窗體
  6941. _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); } }
  6942. break;
  6943. case "teacher":
  6944. _formdiv = new U.UF.UI.form(
  6945. "教師管理",
  6946. $$("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 }), {
  6947. "id": "teacher",
  6948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6949. "onresize": function () { }
  6950. }, {
  6951. closecallback: function () { }
  6952. }, { "style": { "height": "36px" } }).form; //創建窗體
  6953. _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); } }
  6954. break;
  6955. case "tcData": //騰訊我的資料
  6956. _formdiv = new U.UF.UI.form(
  6957. "我的資料",
  6958. $$("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 }), {
  6959. "id": "tcData",
  6960. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6961. "onresize": function () { }
  6962. }, {
  6963. closecallback: function () { }
  6964. }, { "style": { "height": "36px" } }).form; //創建窗體
  6965. _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); } }
  6966. break;
  6967. case "tcNotice": //騰訊消息通知
  6968. _formdiv = new U.UF.UI.form(
  6969. "消息通知",
  6970. $$("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 }), {
  6971. "id": "tcNotice",
  6972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6973. "onresize": function () { }
  6974. }, {
  6975. closecallback: function () { }
  6976. }, { "style": { "height": "36px" } }).form; //創建窗體
  6977. _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); } }
  6978. break;
  6979. case "myReport": //好友打開
  6980. _formdiv = new U.UF.UI.form(
  6981. "我的評價",
  6982. $$("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 }), {
  6983. "id": "myReport",
  6984. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6985. "onresize": function () { }
  6986. }, {
  6987. closecallback: function () { }
  6988. }, { "style": { "height": "36px" } }).form; //創建窗體
  6989. _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); } }
  6990. break;
  6991. case "learnAna": //好友打開
  6992. _formdiv = new U.UF.UI.form(
  6993. "學習分析",
  6994. $$("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 }), {
  6995. "id": "learnAna",
  6996. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6997. "onresize": function () { }
  6998. }, {
  6999. closecallback: function () { }
  7000. }, { "style": { "height": "36px" } }).form; //創建窗體
  7001. _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); } }
  7002. break;
  7003. case "AIChat": //AI共創
  7004. _formdiv = new U.UF.UI.form(
  7005. "AI共創",
  7006. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  7007. "id": "AIChat",
  7008. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7009. "onresize": function () { }
  7010. }, {
  7011. istop: true,
  7012. closecallback: function () { $("#aichat_icon").remove(); },
  7013. narrowcallback: function () {
  7014. if (!$("#aichat_icon")[0]) {
  7015. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7016. }
  7017. },
  7018. }, { "style": { "height": "36px" } }).form; //創建窗體
  7019. _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); } }
  7020. break;
  7021. case "ainew": //AI共創
  7022. _formdiv = new U.UF.UI.form(
  7023. "AI協同",
  7024. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  7025. "id": "ainew",
  7026. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7027. "onresize": function () { }
  7028. }, {
  7029. closecallback: function () { }
  7030. }, { "style": { "height": "36px" } }).form; //創建窗體
  7031. _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); } }
  7032. break;
  7033. case "gpt4": //gpt4
  7034. _formdiv = new U.UF.UI.form(
  7035. "AI助手",
  7036. $$("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 }), {
  7037. "id": "gpt4",
  7038. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7039. "onresize": function () { }
  7040. }, {
  7041. closecallback: function () { }
  7042. }, { "style": { "height": "36px" } }).form; //創建窗體
  7043. _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); } }
  7044. break;
  7045. case "aigpt": //gpt4
  7046. _formdiv = new U.UF.UI.form(
  7047. "AI助手+",
  7048. $$("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 }), {
  7049. "id": "aigpt",
  7050. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7051. "onresize": function () { }
  7052. }, {
  7053. closecallback: function () {
  7054. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7055. }
  7056. }, { "style": { "height": "36px" } }).form; //創建窗體
  7057. _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); } }
  7058. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7059. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7060. })
  7061. break;
  7062. case "aiKnowledge": //aiKnowledge
  7063. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  7064. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7065. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7066. }
  7067. _formdiv = new U.UF.UI.form(
  7068. "知識建構",
  7069. $$("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 }), {
  7070. "id": "aiKnowledge",
  7071. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7072. "onresize": function () { }
  7073. }, {
  7074. closecallback: function () { }
  7075. }, { "style": { "height": "36px" } }).form; //創建窗體
  7076. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知識建構", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7077. break;
  7078. case "futureClass": //AI共創
  7079. _formdiv = new U.UF.UI.form(
  7080. "協同建構",
  7081. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  7082. "id": "synergyCourse",
  7083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7084. "onresize": function () { }
  7085. }, {
  7086. closecallback: function () {
  7087. $("iframe", _formdiv)[0].contentWindow.loginout();
  7088. }
  7089. }, { "style": { "height": "36px" } }).form; //創建窗體
  7090. _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); } }
  7091. break;
  7092. case "aiagent": //ai agent
  7093. _formdiv = new U.UF.UI.form(
  7094. "AI Agent",
  7095. $$("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" }), {
  7096. "id": "AIAgent",
  7097. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7098. "onresize": function () { }
  7099. }, {
  7100. closecallback: function () { }
  7101. }, { "style": { "height": "36px" } }).form; //創建窗體
  7102. _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); } }
  7103. break;
  7104. case "dataBoard": //數據看板
  7105. _formdiv = new U.UF.UI.form(
  7106. "數據看板",
  7107. $$("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 }), {
  7108. "id": "dataBoard",
  7109. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7110. "onresize": function () { }
  7111. }, {
  7112. closecallback: function () { }
  7113. }, { "style": { "height": "36px" } }).form; //創建窗體
  7114. _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); } }
  7115. break;
  7116. case "dataBoardSies": //數據融合
  7117. _formdiv = new U.UF.UI.form(
  7118. "數據融合",
  7119. $$("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 }), {
  7120. "id": "dataBoardSies",
  7121. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7122. "onresize": function () { }
  7123. }, {
  7124. closecallback: function () { }
  7125. }, { "style": { "height": "36px" } }).form; //創建窗體
  7126. _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); } }
  7127. break;
  7128. case "dataBoardNew": //數據看板
  7129. _formdiv = new U.UF.UI.form(
  7130. "綜合看板",
  7131. $$("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 }), {
  7132. "id": "dataBoardNew",
  7133. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7134. "onresize": function () { }
  7135. }, {
  7136. closecallback: function () { }
  7137. }, { "style": { "height": "36px" } }).form; //創建窗體
  7138. _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); } }
  7139. break;
  7140. case "dataBoardTest": //數據看板
  7141. _formdiv = new U.UF.UI.form(
  7142. "評測看板",
  7143. $$("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 }), {
  7144. "id": "dataBoardTest",
  7145. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7146. "onresize": function () { }
  7147. }, {
  7148. closecallback: function () { }
  7149. }, { "style": { "height": "36px" } }).form; //創建窗體
  7150. _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); } }
  7151. break;
  7152. case "AIAnalyse": //AI共創
  7153. _formdiv = new U.UF.UI.form(
  7154. "AI分析",
  7155. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  7156. "id": "AIAnalyse",
  7157. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7158. "onresize": function () { }
  7159. }, {
  7160. closecallback: function () { }
  7161. }, { "style": { "height": "36px" } }).form; //創建窗體
  7162. _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); } }
  7163. break;
  7164. case "studioCourse": //AI共創
  7165. _formdiv = new U.UF.UI.form(
  7166. "工作管理",
  7167. $$("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 }), {
  7168. "id": "studioCourse",
  7169. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7170. "onresize": function () { }
  7171. }, {
  7172. closecallback: function () { }
  7173. }, { "style": { "height": "36px" } }).form; //創建窗體
  7174. _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); } }
  7175. break;
  7176. case "studioIndex": //AI共創
  7177. _formdiv = new U.UF.UI.form(
  7178. "工作中心",
  7179. $$("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 }), {
  7180. "id": "studioIndex",
  7181. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7182. "onresize": function () { }
  7183. }, {
  7184. closecallback: function () { }
  7185. }, { "style": { "height": "36px" } }).form; //創建窗體
  7186. _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); } }
  7187. break;
  7188. case "source":
  7189. _formdiv = new U.UF.UI.form(
  7190. "教學資源",
  7191. $$("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 }), {
  7192. "id": "source",
  7193. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7194. "onresize": function () { }
  7195. }, {
  7196. closecallback: function () { }
  7197. }, { "style": { "height": "36px" } }).form; //創建窗體
  7198. _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); } }
  7199. break;
  7200. case "testTeacher":
  7201. _formdiv = new U.UF.UI.form(
  7202. "智能表單",
  7203. $$("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 }), {
  7204. "id": "testTeacher",
  7205. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7206. "onresize": function () { }
  7207. }, {
  7208. closecallback: function () { }
  7209. }, { "style": { "height": "36px" } }).form; //創建窗體
  7210. _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); } }
  7211. break;
  7212. case "testStudent":
  7213. _formdiv = new U.UF.UI.form(
  7214. "教師中心",
  7215. $$("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 }), {
  7216. "id": "testStudent",
  7217. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7218. "onresize": function () { }
  7219. }, {
  7220. closecallback: function () { }
  7221. }, { "style": { "height": "36px" } }).form; //創建窗體
  7222. _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); } }
  7223. break;
  7224. case "testTeacherSies":
  7225. _formdiv = new U.UF.UI.form(
  7226. "教師管理",
  7227. $$("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 }), {
  7228. "id": "testTeacherSies",
  7229. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7230. "onresize": function () { }
  7231. }, {
  7232. closecallback: function () { }
  7233. }, { "style": { "height": "36px" } }).form; //創建窗體
  7234. _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); } }
  7235. break;
  7236. case "testStudentSies":
  7237. _formdiv = new U.UF.UI.form(
  7238. "教師中心",
  7239. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  7240. "id": "testStudentSies",
  7241. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7242. "onresize": function () { }
  7243. }, {
  7244. closecallback: function () { }
  7245. }, { "style": { "height": "36px" } }).form; //創建窗體
  7246. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教師中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7247. break;
  7248. case "ytpbl": //消息通知
  7249. _formdiv = new U.UF.UI.form(
  7250. "案例征集",
  7251. $$("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 }), {
  7252. "id": "ytpbl",
  7253. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7254. "onresize": function () { }
  7255. }, {
  7256. closecallback: function () { }
  7257. }, { "style": { "height": "36px" } }).form; //創建窗體
  7258. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7259. // 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");
  7260. break;
  7261. case "aiCourseResource": //人工智能窗體
  7262. _formdiv = new U.UF.UI.form(
  7263. false,
  7264. $$("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 }), {
  7265. "id": "aiCourseResource",
  7266. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7267. "onresize": function () { },
  7268. "isdrag": false,
  7269. }, {
  7270. closecallback: function () { }
  7271. }, { "style": { "height": "36px" } }).form; //創建窗體
  7272. _taskbar = ''
  7273. break;
  7274. case "szdjgCocooroboX": //圖形化編程
  7275. _formdiv = new U.UF.UI.form(
  7276. "圖形化編程",
  7277. $$("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" }), {
  7278. "id": "szdjgCocooroboX",
  7279. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7280. "onresize": function () { }
  7281. }, {
  7282. closecallback: function () { }
  7283. }, { "style": { "height": "36px" } }).form; //創建窗體
  7284. _taskbar = ''
  7285. break;
  7286. case "szdjgPython": //python編程
  7287. _formdiv = new U.UF.UI.form(
  7288. "Python編程",
  7289. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  7290. "id": "szdjgPython",
  7291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7292. "onresize": function () { }
  7293. }, {
  7294. closecallback: function () { }
  7295. }, { "style": { "height": "36px" } }).form; //創建窗體
  7296. _taskbar = ''
  7297. break;
  7298. case "Record":
  7299. _formdiv = new U.UF.UI.form(
  7300. "觀察記錄",
  7301. $$("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 }), {
  7302. "id": "Record",
  7303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7304. "onresize": function () { }
  7305. }, {
  7306. closecallback: function () { }
  7307. }, { "style": { "height": "36px" } }).form; //創建窗體
  7308. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "觀察記錄", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7309. break;
  7310. case "aigptCourse":
  7311. _formdiv = new U.UF.UI.form(
  7312. "AI智能體",
  7313. $$("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' }), {
  7314. "id": "aigptCourse",
  7315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7316. "onresize": function () { }
  7317. }, {
  7318. closecallback: function () { }
  7319. }, { "style": { "height": "36px" } }).form; //創建窗體
  7320. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能體", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7321. break;
  7322. case "classroomObservation":
  7323. _formdiv = new U.UF.UI.form(
  7324. "課堂觀察",
  7325. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7326. "id": "classroomObservation",
  7327. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7328. "onresize": function () { }
  7329. }, {
  7330. closecallback: function () { }
  7331. }, { "style": { "height": "36px" } }).form; //創建窗體
  7332. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "課堂觀察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7333. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7334. break;
  7335. case "pblCourse":
  7336. _formdiv = new U.UF.UI.form(
  7337. "學生PBL",
  7338. $$("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 }), {
  7339. "id": "pblCourse",
  7340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7341. "onresize": function () { }
  7342. }, {
  7343. closecallback: function () { }
  7344. }, { "style": { "height": "36px" } }).form; //創建窗體
  7345. _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); } }
  7346. break;
  7347. case "appStore":
  7348. U.MD.D.addOp('','cocoflowOpen','')
  7349. _formdiv = new U.UF.UI.form(
  7350. "CocoFlow",
  7351. $$("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 }), {
  7352. "id": "appStore",
  7353. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7354. "onresize": function () { }
  7355. }, {
  7356. closecallback: function () { }
  7357. }, { "style": { "height": "36px" } }).form; //創建窗體
  7358. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7359. break;
  7360. case "sassPlatform":
  7361. _formdiv = new U.UF.UI.form(
  7362. "Sass通用後臺管理",
  7363. $$("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 }), {
  7364. "id": "sassPlatform",
  7365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7366. "onresize": function () { }
  7367. }, {
  7368. closecallback: function () { }
  7369. }, { "style": { "height": "36px" } }).form; //創建窗體
  7370. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7371. break;
  7372. case "EDU":
  7373. _formdiv = new U.UF.UI.form(
  7374. "EDU",
  7375. $$("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" }), {
  7376. "id": "EDU",
  7377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7378. "onresize": function () { }
  7379. }, {
  7380. closecallback: function () { }
  7381. }, { "style": { "height": "36px" } }).form; //創建窗體
  7382. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7383. break;
  7384. case "knowledge":
  7385. _formdiv = new U.UF.UI.form(
  7386. "知識庫",
  7387. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7388. "id": "knowledge",
  7389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7390. "onresize": function () { }
  7391. }, {
  7392. closecallback: function () { }
  7393. }, { "style": { "height": "36px" } }).form; //創建窗體
  7394. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7395. break;
  7396. case "userExamine":
  7397. _formdiv = new U.UF.UI.form(
  7398. "賬號申請",
  7399. $$("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" }), {
  7400. "id": "userExamine",
  7401. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7402. "onresize": function () { }
  7403. }, {
  7404. closecallback: function () { }
  7405. }, { "style": { "height": "36px" } }).form; //創建窗體
  7406. break;
  7407. case "cocoflowDeskTop": //cocoflowDeskTop
  7408. _formdiv = new U.UF.UI.form(
  7409. false,
  7410. $$("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 }), {
  7411. "id": "cocoflowDeskTop",
  7412. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7413. "onresize": function () { },
  7414. "isdrag": false,
  7415. }, {
  7416. closecallback: function () { }
  7417. }, { "style": { "height": "36px" } }).form; //創建窗體
  7418. _taskbar = ''
  7419. break;
  7420. case "liyuanLogin": //liyuanLogin
  7421. _formdiv = new U.UF.UI.form(
  7422. false,
  7423. $$("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" }), {
  7424. "id": "liyuanLogin",
  7425. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7426. "onresize": function () { },
  7427. isdrag: false,
  7428. isstretching: false,
  7429. isenlarge: false,
  7430. isnarrow: false
  7431. }, {
  7432. closecallback: function () { }
  7433. }, { "style": { "height": "36px" } }).form; //創建窗體
  7434. _taskbar = ''
  7435. break;
  7436. case "updatePaDialog":
  7437. _formdiv = new U.UF.UI.form(
  7438. "密碼修改",
  7439. $$("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 }), {
  7440. "id": "updatePaDialog",
  7441. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7442. "onresize": function () { },
  7443. isclose: false,
  7444. }, {
  7445. closecallback: function () { }
  7446. }, { "style": { "height": "36px" } }).form; //創建窗體
  7447. break;
  7448. }
  7449. //U.MD.D.I.openClick(str);
  7450. //如果有任務欄信息
  7451. if (_taskbar) {
  7452. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7453. }
  7454. if(iframeBool){
  7455. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7456. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7457. // console.log("iframe進入");
  7458. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7459. // };
  7460. setTimeout(() => {
  7461. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7462. }, 2000);
  7463. }
  7464. }
  7465. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7466. var _formdiv, //創建任務欄時同時彈出的窗體元素。
  7467. _userinfo = US.userInfo, //登錄用戶信息
  7468. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解構賦值獲取用戶信息
  7469. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定義
  7470. let iframeBool = true;
  7471. let queryString = ''
  7472. if(array && array.length){
  7473. const paramsMap = {
  7474. userid: _userid,
  7475. org: _org,
  7476. oid: _oid,
  7477. type: _type,
  7478. role: _role,
  7479. classId: _classId,
  7480. TscreenType: _TscreenType,
  7481. SscreenType: _SscreenType
  7482. };
  7483. const canshu = array
  7484. .filter(param => paramsMap[param] !== undefined)
  7485. .map(param => `${param}=${paramsMap[param]}`);
  7486. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查詢字符串
  7487. }
  7488. let _url = url + queryString
  7489. if(U.UF.UI.form.allForm[id]){
  7490. iframeBool = false
  7491. }
  7492. _formdiv = new U.UF.UI.form(
  7493. false,
  7494. $$("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 }),
  7495. {
  7496. "id": id,
  7497. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7498. "onresize": function () { },
  7499. isdrag: false,
  7500. isstretching: false,
  7501. isenlarge: false,
  7502. isnarrow: false
  7503. },
  7504. {
  7505. closecallback: function () { }
  7506. },
  7507. { "style": { "height": "36px" } },
  7508. undefined,
  7509. undefined,
  7510. dom
  7511. ).form
  7512. }
  7513. // U.MD.D.I.openClick = function(str){
  7514. // var click = '';
  7515. // switch(str){
  7516. // case 'friend':
  7517. // click = '我的好友';
  7518. // break;
  7519. // case 'domain':
  7520. // click = '域名管理';
  7521. // break;
  7522. // case 'disk':
  7523. // click = '我的雲盤';
  7524. // break;
  7525. // case 'word':
  7526. // click = 'Word';
  7527. // break;
  7528. // case 'excel':
  7529. // click = 'Execl';
  7530. // break;
  7531. // case 'txt':
  7532. // click = '文本文件';
  7533. // break;
  7534. // case 'lookupFriend':
  7535. // click = '查找好友';
  7536. // break;
  7537. // case 'ftp':
  7538. // click = 'FTP';
  7539. // break;
  7540. // case 'group':
  7541. // click = '群組';
  7542. // break;
  7543. // case 'set':
  7544. // click = '我的設置';
  7545. // break;
  7546. // case 'systemSet':
  7547. // click = '系統設置';
  7548. // break;
  7549. // case 'boomYun':
  7550. // click = '互聯辦公';
  7551. // break;
  7552. // case 'xz':
  7553. // click = '雲端下載';
  7554. // break;
  7555. // case 'client':
  7556. // click = '有思瀏覽器';
  7557. // break;
  7558. // case 'backEndProgramming':
  7559. // click = '在線後臺編程';
  7560. // break;
  7561. // case 'frontEndProgramming':
  7562. // click = '在線前端編程';
  7563. // break;
  7564. // default: break;
  7565. // }
  7566. // if(U.MD.D.I.Ip && click){
  7567. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7568. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7569. // })
  7570. // }
  7571. // }
  7572. /**
  7573. *函數作用:ajax簡易函數,使用post格式
  7574. *@param url {data} 後臺地址
  7575. *@param data {data} 參數json
  7576. *@param fn {data} 回調函數
  7577. *
  7578. */
  7579. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7580. // var xhr = new XMLHttpRequest();
  7581. // xhr.open("GET",url,true);
  7582. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7583. // xhr.onreadystatechange = function(){
  7584. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7585. // fn.call(this,xhr.responseText);
  7586. // }
  7587. // };
  7588. // xhr.send();
  7589. // }
  7590. /*判斷是否是內網IP*/
  7591. // U.MD.D.I.isInnerIPFn = function(str){
  7592. // var curPageUrl = str;
  7593. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7594. // curPageUrl =curPageUrl.replace(reg1,'');
  7595. // // console.log('curPageUrl-1 '+curPageUrl);
  7596. // var reg2 = /\:+/g;//替換冒號為一點
  7597. // curPageUrl =curPageUrl.replace(reg2,'.');
  7598. // // console.log('curPageUrl-2 '+curPageUrl);
  7599. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7600. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7601. // if(curPageUrl[2] != '16'){
  7602. // return ipAddress;
  7603. // }else{
  7604. // return false;
  7605. // }
  7606. // }
  7607. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7608. // //compatibility for firefox and chrome
  7609. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7610. // var pc = new myPeerConnection({
  7611. // iceServers: []
  7612. // }),
  7613. // noop = function() {},
  7614. // localIPs = {},
  7615. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7616. // key;
  7617. // function iterateIP(ip) {
  7618. // if (!localIPs[ip]) onNewIP(ip);
  7619. // localIPs[ip] = true;
  7620. // }
  7621. // //create a bogus data channel
  7622. // pc.createDataChannel("");
  7623. // // create offer and set local description
  7624. // pc.createOffer().then(function(sdp) {
  7625. // sdp.sdp.split('\n').forEach(function(line) {
  7626. // if (line.indexOf('candidate') < 0) return;
  7627. // line.match(ipRegex).forEach(iterateIP);
  7628. // });
  7629. // pc.setLocalDescription(sdp, noop, noop);
  7630. // }).catch(function(reason) {
  7631. // // An error occurred, so handle the failure to connect
  7632. // });
  7633. // //sten for candidate events
  7634. // pc.onicecandidate = function(ice) {
  7635. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7636. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7637. // };
  7638. // }
  7639. // U.MD.D.I.getUserIpBool = function(callback){
  7640. // U.MD.D.I.getUserIP(function(ip){
  7641. // alert("Got IP! :" + ip);
  7642. // });
  7643. //}
  7644. //#endregion
  7645. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7646. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7647. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7648. _userinfo = US.userInfo, //登錄用戶信息
  7649. _userid = US.userInfo.userid //登錄用戶id
  7650. let _iframe;
  7651. let _cid = cid,
  7652. _stage = stage,
  7653. _task = task,
  7654. _tool = tool;
  7655. var _jie = $$("div", {
  7656. "style": {
  7657. "position": "absolute",
  7658. "bottom": "50px",
  7659. "right": "50px",
  7660. "zIndex": "9999",
  7661. "backgroundColor": "#2268bc",
  7662. "color": "#fff",
  7663. "padding": "12px 20px",
  7664. "cursor": "pointer",
  7665. "borderRadius": "4px",
  7666. },
  7667. "innerHTML": "提交作業"
  7668. })
  7669. let aTool = ''
  7670. let _loading = document.createElement('div')
  7671. _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;"
  7672. // _loading.id = "";
  7673. let _lchild = document.createElement('div')
  7674. let _limg = document.createElement('img')
  7675. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7676. _limg.style = "width: 26px;margin-right: 10px;"
  7677. _lchild.appendChild(_limg)
  7678. let _lspan = document.createElement('span')
  7679. _lspan.innerHTML = "上傳中..."
  7680. _lchild.appendChild(_lspan)
  7681. _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%);"
  7682. _loading.appendChild(_lchild)
  7683. var _box = $$('div', {
  7684. "style": {
  7685. "position": "relative",
  7686. "width": "100%",
  7687. "height": "100%",
  7688. },
  7689. })
  7690. _box.appendChild(_loading)
  7691. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7692. switch (str) {
  7693. case "whiteboard":
  7694. aTool = 1;
  7695. _iframe = $$("iframe", {
  7696. "frameborder": "no",
  7697. "border": "0",
  7698. "scrolling ": "no",
  7699. "style": {
  7700. "cssText": "border:0;width:100%;height:100%"
  7701. },
  7702. "src": "https://iwb.cocorobo.hk/"
  7703. })
  7704. _box.appendChild(_iframe);
  7705. _box.appendChild(_jie);
  7706. _formdiv = new U.UF.UI.form(
  7707. "電子白板",
  7708. _box, {
  7709. "id": "whiteboard" + cid + stage + task + tool,
  7710. "style": {
  7711. "width": "90%",
  7712. "height": "90%",
  7713. "overflow": 'hidden'
  7714. },
  7715. "onresize": function () { }
  7716. }, {
  7717. closecallback: function () { }
  7718. }, {
  7719. "style": {
  7720. "height": "36px"
  7721. }
  7722. }).form; //創建窗體
  7723. _taskbar = {
  7724. "id": str + _formdiv.id,
  7725. "style": {
  7726. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7727. },
  7728. "name": "電子白板",
  7729. "forms": _formdiv,
  7730. "click": function () {
  7731. U.MD.D.I.openApplication(str, obj, info);
  7732. }
  7733. }
  7734. break;
  7735. case "mind":
  7736. aTool = 3;
  7737. _iframe = $$("iframe", {
  7738. "frameborder": "no",
  7739. "border": "0",
  7740. "scrolling ": "no",
  7741. "style": {
  7742. "cssText": "border:0;width:100%;height:100%"
  7743. },
  7744. "src": "/kityminder-editor/dist/index.html"
  7745. })
  7746. _box.appendChild(_iframe);
  7747. _box.appendChild(_jie);
  7748. _formdiv = new U.UF.UI.form(
  7749. "思維導圖",
  7750. _box, { //"/jsmind/example/demo.html"
  7751. "id": "mind" + cid + stage + task + tool,
  7752. "style": {
  7753. "width": "90%",
  7754. "height": "90%",
  7755. "overflow": 'hidden'
  7756. },
  7757. "onresize": function () { }
  7758. }, {
  7759. closecallback: function () { }
  7760. }, {
  7761. "style": {
  7762. "height": "36px"
  7763. }
  7764. }).form; //創建窗體
  7765. _taskbar = {
  7766. "id": str + _formdiv.id,
  7767. "style": {
  7768. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7769. },
  7770. "name": "思維導圖",
  7771. "forms": _formdiv,
  7772. "click": function () {
  7773. U.MD.D.I.openApplication(str, obj, info);
  7774. }
  7775. }
  7776. break;
  7777. case "MindMap":
  7778. aTool = 3;
  7779. _iframe = $$("iframe", {
  7780. "frameborder": "no",
  7781. "border": "0",
  7782. "scrolling ": "no",
  7783. "style": {
  7784. "cssText": "border:0;width:100%;height:100%"
  7785. },
  7786. "src": "//cloud.cocorobo.hk/mind/"
  7787. })
  7788. _box.appendChild(_iframe);
  7789. _box.appendChild(_jie);
  7790. _formdiv = new U.UF.UI.form(
  7791. "思維導圖",
  7792. _box, { //"/jsmind/example/demo.html"
  7793. "id": "mind" + cid + stage + task + tool,
  7794. "style": {
  7795. "width": "90%",
  7796. "height": "90%",
  7797. "overflow": 'hidden'
  7798. },
  7799. "onresize": function () { }
  7800. }, {
  7801. closecallback: function () { }
  7802. }, {
  7803. "style": {
  7804. "height": "36px"
  7805. }
  7806. }).form; //創建窗體
  7807. _taskbar = {
  7808. "id": str + _formdiv.id,
  7809. "style": {
  7810. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7811. },
  7812. "name": "思維導圖",
  7813. "forms": _formdiv,
  7814. "click": function () {
  7815. U.MD.D.I.openApplication(str, obj, info);
  7816. }
  7817. }
  7818. break;
  7819. case "doc":
  7820. aTool = 6;
  7821. _iframe = $$("iframe", {
  7822. "frameborder": "no",
  7823. "border": "0",
  7824. "scrolling ": "no",
  7825. "style": {
  7826. "cssText": "border:0;width:100%;height:100%"
  7827. },
  7828. "src": "/Office/Word/WordEditArea.htm"
  7829. })
  7830. _box.appendChild(_iframe);
  7831. _box.appendChild(_jie);
  7832. _formdiv = new U.UF.UI.form(
  7833. "協同文檔",
  7834. _box, {
  7835. "id": "doc" + cid + stage + task + tool,
  7836. "style": {
  7837. "width": "90%",
  7838. "height": "90%",
  7839. "overflow": 'hidden'
  7840. },
  7841. "onresize": function () { }
  7842. }, {
  7843. closecallback: function () { }
  7844. }, {
  7845. "style": {
  7846. "height": "36px"
  7847. }
  7848. }).form; //創建窗體
  7849. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7850. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7851. })
  7852. _taskbar = {
  7853. "id": str + _formdiv.id,
  7854. "style": {
  7855. "backgroundImage": "url(/img/icon/doc.png)"
  7856. },
  7857. "name": "協同文檔",
  7858. "forms": _formdiv,
  7859. "click": function () {
  7860. U.MD.D.I.openApplication(str, obj, info);
  7861. }
  7862. }
  7863. break;
  7864. case "mindNetwork": //好友打開
  7865. aTool = 7;
  7866. _iframe = $$("iframe", {
  7867. "webkitallowfullscreen": "",
  7868. "mozallowfullscreen": "",
  7869. "allowfullscreen": "",
  7870. "frameborder": "no",
  7871. "border": "0",
  7872. "scrolling ": "no",
  7873. "style": {
  7874. "cssText": "border:0; width:100%; height:100%;"
  7875. },
  7876. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7877. })
  7878. _box.appendChild(_iframe);
  7879. _box.appendChild(_jie);
  7880. _formdiv = new U.UF.UI.form(
  7881. "思維網格",
  7882. _box, {
  7883. "id": "mindNetwork" + cid + stage + task + tool,
  7884. "style": {
  7885. "width": "90%",
  7886. "height": "90%",
  7887. "overflow": 'hidden'
  7888. },
  7889. "onresize": function () { }
  7890. }, {
  7891. closecallback: function () { }
  7892. }, {
  7893. "style": {
  7894. "height": "36px"
  7895. }
  7896. }).form; //創建窗體
  7897. _taskbar = {
  7898. "id": str + _formdiv.id,
  7899. "style": {
  7900. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7901. },
  7902. "name": "思維網格",
  7903. "forms": _formdiv,
  7904. "click": function () {
  7905. U.MD.D.I.openApplication(str, obj, info);
  7906. }
  7907. }
  7908. break;
  7909. case "courseDesign":
  7910. _iframe = $$("iframe", {
  7911. "webkitallowfullscreen": "",
  7912. "mozallowfullscreen": "",
  7913. "allowfullscreen": "",
  7914. "frameborder": "no",
  7915. "border": "0",
  7916. "scrolling ": "no",
  7917. "style": {
  7918. "cssText": "border:0; width:100%; height:100%;"
  7919. },
  7920. "src": "/course-design-vue"
  7921. })
  7922. _box.appendChild(_iframe);
  7923. _box.appendChild(_jie);
  7924. _formdiv = new U.UF.UI.form(
  7925. "項目設計",
  7926. _box, {
  7927. "id": "courseDesign" + cid + stage + task + tool,
  7928. "style": {
  7929. "width": "90%",
  7930. "height": "90%",
  7931. "overflow": 'hidden'
  7932. },
  7933. "onresize": function () { }
  7934. }, {
  7935. closecallback: function () { }
  7936. }, {
  7937. "style": {
  7938. "height": "36px"
  7939. }
  7940. }).form; //創建窗體
  7941. _taskbar = {
  7942. "id": str + _formdiv.id,
  7943. "style": {
  7944. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7945. },
  7946. "name": "項目設計",
  7947. "forms": _formdiv,
  7948. "click": function () {
  7949. U.MD.D.I.openApplication(str, obj, info);
  7950. }
  7951. }
  7952. break;
  7953. }
  7954. const script1 = document.createElement("script");
  7955. script1.type = "text/javascript";
  7956. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7957. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7958. const script2 = document.createElement("script");
  7959. script2.type = "text/javascript";
  7960. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7961. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7962. const script3 = document.createElement("script");
  7963. script3.type = "text/javascript";
  7964. script3.charset = "UTF-8";
  7965. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7966. const script4 = document.createElement("script");
  7967. script4.type = "text/javascript";
  7968. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7969. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7970. if (_iframe) {
  7971. if (str == 'doc') {
  7972. _iframe = _formdiv.querySelector('iframe')
  7973. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7974. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7975. _iframe.contentWindow.document.body.appendChild(script1);
  7976. _iframe.contentWindow.document.body.appendChild(script2);
  7977. // _iframe.contentWindow.document.body.appendChild(script3);
  7978. _iframe.contentWindow.document.body.appendChild(script4);
  7979. })
  7980. if (onloadListener) {
  7981. _iframe.contentDocument.location.reload()
  7982. } else {
  7983. _iframe.contentDocument.location.reload()
  7984. }
  7985. } else if (str == 'courseDesign') {
  7986. U.UF.DL.iframeLoad(_iframe, function () {
  7987. // _iframe.contentWindow.U.MD.O.W.load();
  7988. // _iframe.contentWindow.document.body.appendChild(script1);
  7989. _iframe.contentWindow.document.body.appendChild(script2);
  7990. _iframe.contentWindow.document.body.appendChild(script4);
  7991. })
  7992. } else if (str == 'mind') {
  7993. _iframe = _formdiv.querySelector('iframe')
  7994. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7995. //
  7996. _iframe.contentWindow.document.body.appendChild(script1);
  7997. _iframe.contentWindow.document.body.appendChild(script2);
  7998. _iframe.contentWindow.document.body.appendChild(script4);
  7999. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8000. })
  8001. if (onloadListener) {
  8002. _iframe.contentDocument.location.reload()
  8003. } else {
  8004. _iframe.contentDocument.location.reload()
  8005. }
  8006. } else if (str == 'whiteboard') {
  8007. _iframe = _formdiv.querySelector('iframe')
  8008. let onloadListener = _iframe.onload = () => {
  8009. _iframe.contentWindow.document.body.appendChild(script1);
  8010. _iframe.contentWindow.document.body.appendChild(script2);
  8011. _iframe.contentWindow.document.body.appendChild(script4);
  8012. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8013. };
  8014. // if (onloadListener) {
  8015. // try {
  8016. // _iframe.src += "?cocorobo="+new Date().getTime()
  8017. // _iframe.contentWindow.document.location.reload()
  8018. // } catch (error) {
  8019. // }
  8020. // } else {
  8021. // _iframe.contentDocument.location.reload()
  8022. // }
  8023. } else {
  8024. _iframe.onload = () => {
  8025. _iframe.contentWindow.document.body.appendChild(script1);
  8026. _iframe.contentWindow.document.body.appendChild(script2);
  8027. // _iframe.contentWindow.document.body.appendChild(script3);
  8028. _iframe.contentWindow.document.body.appendChild(script4);
  8029. };
  8030. }
  8031. _jie.onclick = async () => {
  8032. let text = ''
  8033. if (aTool == 1) {
  8034. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8035. } else if (aTool == 6) {
  8036. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8037. } else if (aTool == 3) {
  8038. text = await U.MD.D.I.getEditorContent(_iframe);
  8039. }
  8040. _loading.style.display = 'flex'
  8041. console.log(_loading);
  8042. var _ajs = _iframe.contentWindow.document.createElement("script");
  8043. _ajs.type = "text/javascript";
  8044. _ajs.innerHTML =
  8045. // 'console.log(' + _loading + ');\n' +
  8046. 'var _js = document.createElement("script");\n' +
  8047. '_js.type="text/javascript";\n' +
  8048. '_js.charset="UTF-8";\n' +
  8049. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8050. "_js.onload = function(){\n" +
  8051. ' var a = document.getElementsByTagName("img")\n' +
  8052. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8053. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8054. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8055. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8056. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8057. "beforeUpload_shishi(file," +
  8058. "'" +
  8059. _userid +
  8060. "'" +
  8061. ", " +
  8062. "'" +
  8063. _cid +
  8064. "'" +
  8065. ", " +
  8066. "'" +
  8067. _stage +
  8068. "'" +
  8069. ", " +
  8070. "'" +
  8071. _task +
  8072. "'" +
  8073. ", " +
  8074. "'" +
  8075. _tool +
  8076. "'" +
  8077. ", " +
  8078. "'" +
  8079. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8080. "'" +
  8081. ", " +
  8082. "'" +
  8083. aTool +
  8084. "'" +
  8085. ", " +
  8086. "`" +
  8087. text +
  8088. "`" +
  8089. ")\n" +
  8090. " });\n" +
  8091. "}\n" +
  8092. "document.head.appendChild(_js);\n";
  8093. _iframe.contentWindow.document.head.appendChild(_ajs);
  8094. }
  8095. }
  8096. //U.MD.D.I.openClick(str);
  8097. //如果有任務欄信息
  8098. // if (_taskbar) {
  8099. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8100. // }
  8101. }
  8102. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8103. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8104. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8105. _userinfo = US.userInfo, //登錄用戶信息
  8106. _userid = US.userInfo.userid //登錄用戶id
  8107. let _iframe;
  8108. let _cid = cid,
  8109. _stage = stage,
  8110. _task = task,
  8111. _tool = tool;
  8112. var _jie = $$("div", {
  8113. "style": {
  8114. "position": "absolute",
  8115. "bottom": "50px",
  8116. "right": "50px",
  8117. "zIndex": "9999",
  8118. "backgroundColor": "#2268bc",
  8119. "color": "#fff",
  8120. "padding": "12px 20px",
  8121. "cursor": "pointer",
  8122. "borderRadius": "4px",
  8123. },
  8124. "innerHTML": "提交作業"
  8125. })
  8126. let aTool = ''
  8127. let _loading = document.createElement('div')
  8128. _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;"
  8129. // _loading.id = "";
  8130. let _lchild = document.createElement('div')
  8131. let _limg = document.createElement('img')
  8132. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8133. _limg.style = "width: 26px;margin-right: 10px;"
  8134. _lchild.appendChild(_limg)
  8135. let _lspan = document.createElement('span')
  8136. _lspan.innerHTML = "上傳中..."
  8137. _lchild.appendChild(_lspan)
  8138. _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%);"
  8139. _loading.appendChild(_lchild)
  8140. let _box = $$('div', {
  8141. "style": {
  8142. "position": "relative",
  8143. "width": "100%",
  8144. "height": "100%",
  8145. },
  8146. })
  8147. _box.appendChild(_loading)
  8148. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8149. switch (str) {
  8150. case "whiteboard":
  8151. aTool = 1;
  8152. _iframe = $$("iframe", {
  8153. "frameborder": "no",
  8154. "border": "0",
  8155. "scrolling ": "no",
  8156. "style": {
  8157. "cssText": "border:0;width:100%;height:100%"
  8158. },
  8159. "src": "https://iwb.cocorobo.hk/"
  8160. })
  8161. _box.appendChild(_iframe);
  8162. _box.appendChild(_jie);
  8163. _formdiv = new U.UF.UI.form(
  8164. "電子白板",
  8165. _box, {
  8166. "id": "whiteboard" + cid + stage + task + tool,
  8167. "style": {
  8168. "width": "90%",
  8169. "height": "90%",
  8170. "overflow": 'hidden'
  8171. },
  8172. "onresize": function () { }
  8173. }, {
  8174. closecallback: function () { }
  8175. }, {
  8176. "style": {
  8177. "height": "36px"
  8178. }
  8179. }).form; //創建窗體
  8180. _taskbar = {
  8181. "id": str + _formdiv.id,
  8182. "style": {
  8183. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8184. },
  8185. "name": "電子白板",
  8186. "forms": _formdiv,
  8187. "click": function () {
  8188. U.MD.D.I.openApplication(str, obj, info);
  8189. }
  8190. }
  8191. break;
  8192. case "mind":
  8193. aTool = 3;
  8194. _iframe = $$("iframe", {
  8195. "frameborder": "no",
  8196. "border": "0",
  8197. "scrolling ": "no",
  8198. "style": {
  8199. "cssText": "border:0;width:100%;height:100%"
  8200. },
  8201. "src": "/kityminder-editor/dist/index.html"
  8202. })
  8203. _box.appendChild(_iframe);
  8204. _box.appendChild(_jie);
  8205. _formdiv = new U.UF.UI.form(
  8206. "思維導圖",
  8207. _box, { //"/jsmind/example/demo.html"
  8208. "id": "mind" + cid + stage + task + tool,
  8209. "style": {
  8210. "width": "90%",
  8211. "height": "90%",
  8212. "overflow": 'hidden'
  8213. },
  8214. "onresize": function () { }
  8215. }, {
  8216. closecallback: function () { }
  8217. }, {
  8218. "style": {
  8219. "height": "36px"
  8220. }
  8221. }).form; //創建窗體
  8222. _taskbar = {
  8223. "id": str + _formdiv.id,
  8224. "style": {
  8225. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8226. },
  8227. "name": "思維導圖",
  8228. "forms": _formdiv,
  8229. "click": function () {
  8230. U.MD.D.I.openApplication(str, obj, info);
  8231. }
  8232. }
  8233. break;
  8234. case "MindMap":
  8235. aTool = 3;
  8236. _iframe = $$("iframe", {
  8237. "frameborder": "no",
  8238. "border": "0",
  8239. "scrolling ": "no",
  8240. "style": {
  8241. "cssText": "border:0;width:100%;height:100%"
  8242. },
  8243. "src": "//cloud.cocorobo.hk/mind/"
  8244. })
  8245. _box.appendChild(_iframe);
  8246. _box.appendChild(_jie);
  8247. _formdiv = new U.UF.UI.form(
  8248. "思維導圖",
  8249. _box, { //"/jsmind/example/demo.html"
  8250. "id": "mind" + cid + stage + task + tool,
  8251. "style": {
  8252. "width": "90%",
  8253. "height": "90%",
  8254. "overflow": 'hidden'
  8255. },
  8256. "onresize": function () { }
  8257. }, {
  8258. closecallback: function () { }
  8259. }, {
  8260. "style": {
  8261. "height": "36px"
  8262. }
  8263. }).form; //創建窗體
  8264. _taskbar = {
  8265. "id": str + _formdiv.id,
  8266. "style": {
  8267. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8268. },
  8269. "name": "思維導圖",
  8270. "forms": _formdiv,
  8271. "click": function () {
  8272. U.MD.D.I.openApplication(str, obj, info);
  8273. }
  8274. }
  8275. break;
  8276. case "doc":
  8277. aTool = 6;
  8278. _iframe = $$("iframe", {
  8279. "frameborder": "no",
  8280. "border": "0",
  8281. "scrolling ": "no",
  8282. "style": {
  8283. "cssText": "border:0;width:100%;height:100%"
  8284. },
  8285. "src": "/Office/Word/WordEditArea.htm"
  8286. })
  8287. _box.appendChild(_iframe);
  8288. _box.appendChild(_jie);
  8289. _formdiv = new U.UF.UI.form(
  8290. "協同文檔",
  8291. _box, {
  8292. "id": "doc" + cid + stage + task + tool,
  8293. "style": {
  8294. "width": "90%",
  8295. "height": "90%",
  8296. "overflow": 'hidden'
  8297. },
  8298. "onresize": function () { }
  8299. }, {
  8300. closecallback: function () { }
  8301. }, {
  8302. "style": {
  8303. "height": "36px"
  8304. }
  8305. }).form; //創建窗體
  8306. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8307. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8308. })
  8309. _taskbar = {
  8310. "id": str + _formdiv.id,
  8311. "style": {
  8312. "backgroundImage": "url(/img/icon/doc.png)"
  8313. },
  8314. "name": "協同文檔",
  8315. "forms": _formdiv,
  8316. "click": function () {
  8317. U.MD.D.I.openApplication(str, obj, info);
  8318. }
  8319. }
  8320. break;
  8321. case "mindNetwork": //好友打開
  8322. aTool = 7;
  8323. _iframe = $$("iframe", {
  8324. "webkitallowfullscreen": "",
  8325. "mozallowfullscreen": "",
  8326. "allowfullscreen": "",
  8327. "frameborder": "no",
  8328. "border": "0",
  8329. "scrolling ": "no",
  8330. "style": {
  8331. "cssText": "border:0; width:100%; height:100%;"
  8332. },
  8333. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8334. })
  8335. _box.appendChild(_iframe);
  8336. _box.appendChild(_jie);
  8337. _formdiv = new U.UF.UI.form(
  8338. "思維網格",
  8339. _box, {
  8340. "id": "mindNetwork" + cid + stage + task + tool,
  8341. "style": {
  8342. "width": "90%",
  8343. "height": "90%",
  8344. "overflow": 'hidden'
  8345. },
  8346. "onresize": function () { }
  8347. }, {
  8348. closecallback: function () { }
  8349. }, {
  8350. "style": {
  8351. "height": "36px"
  8352. }
  8353. }).form; //創建窗體
  8354. _taskbar = {
  8355. "id": str + _formdiv.id,
  8356. "style": {
  8357. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8358. },
  8359. "name": "思維網格",
  8360. "forms": _formdiv,
  8361. "click": function () {
  8362. U.MD.D.I.openApplication(str, obj, info);
  8363. }
  8364. }
  8365. break;
  8366. case "courseDesign":
  8367. _iframe = $$("iframe", {
  8368. "webkitallowfullscreen": "",
  8369. "mozallowfullscreen": "",
  8370. "allowfullscreen": "",
  8371. "frameborder": "no",
  8372. "border": "0",
  8373. "scrolling ": "no",
  8374. "style": {
  8375. "cssText": "border:0; width:100%; height:100%;"
  8376. },
  8377. "src": "/course-design-vue"
  8378. })
  8379. _box.appendChild(_iframe);
  8380. _box.appendChild(_jie);
  8381. _formdiv = new U.UF.UI.form(
  8382. "項目設計",
  8383. _box, {
  8384. "id": "courseDesign" + cid + stage + task + tool,
  8385. "style": {
  8386. "width": "90%",
  8387. "height": "90%",
  8388. "overflow": 'hidden'
  8389. },
  8390. "onresize": function () { }
  8391. }, {
  8392. closecallback: function () { }
  8393. }, {
  8394. "style": {
  8395. "height": "36px"
  8396. }
  8397. }).form; //創建窗體
  8398. _taskbar = {
  8399. "id": str + _formdiv.id,
  8400. "style": {
  8401. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8402. },
  8403. "name": "項目設計",
  8404. "forms": _formdiv,
  8405. "click": function () {
  8406. U.MD.D.I.openApplication(str, obj, info);
  8407. }
  8408. }
  8409. break;
  8410. }
  8411. const script1 = document.createElement("script");
  8412. script1.type = "text/javascript";
  8413. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8414. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8415. const script2 = document.createElement("script");
  8416. script2.type = "text/javascript";
  8417. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8418. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8419. const script3 = document.createElement("script");
  8420. script3.type = "text/javascript";
  8421. script3.charset = "UTF-8";
  8422. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8423. const script4 = document.createElement("script");
  8424. script4.type = "text/javascript";
  8425. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8426. script4.src = window.origin + "/js/Common/jietu2E.js";
  8427. if (_iframe) {
  8428. if (str == 'doc') {
  8429. _iframe = _formdiv.querySelector('iframe')
  8430. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8431. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8432. _iframe.contentWindow.document.body.appendChild(script1);
  8433. _iframe.contentWindow.document.body.appendChild(script2);
  8434. // _iframe.contentWindow.document.body.appendChild(script3);
  8435. _iframe.contentWindow.document.body.appendChild(script4);
  8436. })
  8437. if (onloadListener) {
  8438. _iframe.contentDocument.location.reload()
  8439. } else {
  8440. _iframe.contentDocument.location.reload()
  8441. }
  8442. } else if (str == 'courseDesign') {
  8443. U.UF.DL.iframeLoad(_iframe, function () {
  8444. // _iframe.contentWindow.U.MD.O.W.load();
  8445. // _iframe.contentWindow.document.body.appendChild(script1);
  8446. _iframe.contentWindow.document.body.appendChild(script2);
  8447. _iframe.contentWindow.document.body.appendChild(script4);
  8448. })
  8449. } else if (str == 'mind') {
  8450. _iframe = _formdiv.querySelector('iframe')
  8451. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8452. //
  8453. _iframe.contentWindow.document.body.appendChild(script1);
  8454. _iframe.contentWindow.document.body.appendChild(script2);
  8455. _iframe.contentWindow.document.body.appendChild(script4);
  8456. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8457. })
  8458. if (onloadListener) {
  8459. _iframe.contentDocument.location.reload()
  8460. } else {
  8461. _iframe.contentDocument.location.reload()
  8462. }
  8463. } else if (str == 'whiteboard') {
  8464. _iframe = _formdiv.querySelector('iframe')
  8465. let onloadListener = _iframe.onload = () => {
  8466. _iframe.contentWindow.document.body.appendChild(script1);
  8467. _iframe.contentWindow.document.body.appendChild(script2);
  8468. _iframe.contentWindow.document.body.appendChild(script4);
  8469. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8470. };
  8471. // if (onloadListener) {
  8472. // try {
  8473. // _iframe.src += "?cocorobo="+new Date().getTime()
  8474. // _iframe.contentWindow.document.location.reload()
  8475. // } catch (error) {
  8476. // }
  8477. // } else {
  8478. // _iframe.contentDocument.location.reload()
  8479. // }
  8480. } else {
  8481. _iframe.onload = () => {
  8482. _iframe.contentWindow.document.body.appendChild(script1);
  8483. _iframe.contentWindow.document.body.appendChild(script2);
  8484. // _iframe.contentWindow.document.body.appendChild(script3);
  8485. _iframe.contentWindow.document.body.appendChild(script4);
  8486. };
  8487. }
  8488. _jie.onclick = async () => {
  8489. let text = ''
  8490. if (aTool == 1) {
  8491. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8492. } else if (aTool == 6) {
  8493. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8494. } else if (aTool == 3) {
  8495. text = await U.MD.D.I.getEditorContent(_iframe);
  8496. }
  8497. _loading.style.display = 'flex'
  8498. console.log(_loading);
  8499. var _ajs = _iframe.contentWindow.document.createElement("script");
  8500. _ajs.type = "text/javascript";
  8501. _ajs.innerHTML =
  8502. // 'console.log(' + _loading + ');\n' +
  8503. 'var _js = document.createElement("script");\n' +
  8504. '_js.type="text/javascript";\n' +
  8505. '_js.charset="UTF-8";\n' +
  8506. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8507. "_js.onload = function(){\n" +
  8508. ' var a = document.getElementsByTagName("img")\n' +
  8509. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8510. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8511. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8512. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8513. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8514. "beforeUpload_shishi(file," +
  8515. "'" +
  8516. _userid +
  8517. "'" +
  8518. ", " +
  8519. "'" +
  8520. _cid +
  8521. "'" +
  8522. ", " +
  8523. "'" +
  8524. _stage +
  8525. "'" +
  8526. ", " +
  8527. "'" +
  8528. _task +
  8529. "'" +
  8530. ", " +
  8531. "'" +
  8532. _tool +
  8533. "'" +
  8534. ", " +
  8535. "'" +
  8536. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8537. "'" +
  8538. ", " +
  8539. "'" +
  8540. aTool +
  8541. "'" +
  8542. ", " +
  8543. "`" +
  8544. text +
  8545. "`" +
  8546. ")\n" +
  8547. " });\n" +
  8548. "}\n" +
  8549. "document.head.appendChild(_js);\n";
  8550. _iframe.contentWindow.document.head.appendChild(_ajs);
  8551. }
  8552. }
  8553. //U.MD.D.I.openClick(str);
  8554. //如果有任務欄信息
  8555. // if (_taskbar) {
  8556. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8557. // }
  8558. }
  8559. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8560. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8561. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8562. _userid = student.userid, //登錄用戶id
  8563. _username = student.student //用戶名字
  8564. let _iframe;
  8565. let _cid = cid,
  8566. _stage = stage,
  8567. _task = task,
  8568. _tool = tool;
  8569. var _jie = $$("div", {
  8570. "style": {
  8571. "position": "absolute",
  8572. "bottom": "50px",
  8573. "right": "50px",
  8574. "zIndex": "9999",
  8575. "backgroundColor": "#2268bc",
  8576. "color": "#fff",
  8577. "padding": "12px 20px",
  8578. "cursor": "pointer",
  8579. "borderRadius": "4px",
  8580. },
  8581. "innerHTML": "提交作業"
  8582. })
  8583. let aTool = ''
  8584. let _loading = document.createElement('div')
  8585. _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;"
  8586. // _loading.id = "";
  8587. let _lchild = document.createElement('div')
  8588. let _limg = document.createElement('img')
  8589. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8590. _limg.style = "width: 26px;margin-right: 10px;"
  8591. _lchild.appendChild(_limg)
  8592. let _lspan = document.createElement('span')
  8593. _lspan.innerHTML = "上傳中..."
  8594. _lchild.appendChild(_lspan)
  8595. _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%);"
  8596. _loading.appendChild(_lchild)
  8597. var _box = $$('div', {
  8598. "style": {
  8599. "position": "relative",
  8600. "width": "100%",
  8601. "height": "100%",
  8602. },
  8603. })
  8604. _box.appendChild(_loading)
  8605. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8606. switch (str) {
  8607. case "whiteboard":
  8608. aTool = 1;
  8609. _iframe = $$("iframe", {
  8610. "frameborder": "no",
  8611. "border": "0",
  8612. "scrolling ": "no",
  8613. "style": {
  8614. "cssText": "border:0;width:100%;height:100%"
  8615. },
  8616. "src": "https://iwb.cocorobo.hk/"
  8617. })
  8618. _box.appendChild(_iframe);
  8619. _box.appendChild(_jie);
  8620. _formdiv = new U.UF.UI.form(
  8621. "電子白板-" + _username,
  8622. _box, {
  8623. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8624. "style": {
  8625. "width": "90%",
  8626. "height": "90%",
  8627. "overflow": 'hidden'
  8628. },
  8629. "onresize": function () { }
  8630. }, {
  8631. closecallback: function () { }
  8632. }, {
  8633. "style": {
  8634. "height": "36px"
  8635. }
  8636. }).form; //創建窗體
  8637. _taskbar = {
  8638. "id": str + _formdiv.id,
  8639. "style": {
  8640. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8641. },
  8642. "name": "電子白板",
  8643. "forms": _formdiv,
  8644. "click": function () {
  8645. U.MD.D.I.openApplication(str, obj, info);
  8646. }
  8647. }
  8648. break;
  8649. case "mind":
  8650. aTool = 3;
  8651. _iframe = $$("iframe", {
  8652. "frameborder": "no",
  8653. "border": "0",
  8654. "scrolling ": "no",
  8655. "style": {
  8656. "cssText": "border:0;width:100%;height:100%"
  8657. },
  8658. "src": "/kityminder-editor/dist/index.html"
  8659. })
  8660. _box.appendChild(_iframe);
  8661. _box.appendChild(_jie);
  8662. _formdiv = new U.UF.UI.form(
  8663. "思維導圖-" + _username,
  8664. _box, { //"/jsmind/example/demo.html"
  8665. "id": "mind" + cid + stage + task + tool + _userid,
  8666. "style": {
  8667. "width": "90%",
  8668. "height": "90%",
  8669. "overflow": 'hidden'
  8670. },
  8671. "onresize": function () { }
  8672. }, {
  8673. closecallback: function () { }
  8674. }, {
  8675. "style": {
  8676. "height": "36px"
  8677. }
  8678. }).form; //創建窗體
  8679. _taskbar = {
  8680. "id": str + _formdiv.id,
  8681. "style": {
  8682. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8683. },
  8684. "name": "思維導圖",
  8685. "forms": _formdiv,
  8686. "click": function () {
  8687. U.MD.D.I.openApplication(str, obj, info);
  8688. }
  8689. }
  8690. break;
  8691. case "MindMap":
  8692. aTool = 3;
  8693. _iframe = $$("iframe", {
  8694. "frameborder": "no",
  8695. "border": "0",
  8696. "scrolling ": "no",
  8697. "style": {
  8698. "cssText": "border:0;width:100%;height:100%"
  8699. },
  8700. "src": "//cloud.cocorobo.hk/mind/"
  8701. })
  8702. _box.appendChild(_iframe);
  8703. _box.appendChild(_jie);
  8704. _formdiv = new U.UF.UI.form(
  8705. "思維導圖-" + _username,
  8706. _box, { //"/jsmind/example/demo.html"
  8707. "id": "mind" + cid + stage + task + tool + _userid,
  8708. "style": {
  8709. "width": "90%",
  8710. "height": "90%",
  8711. "overflow": 'hidden'
  8712. },
  8713. "onresize": function () { }
  8714. }, {
  8715. closecallback: function () { }
  8716. }, {
  8717. "style": {
  8718. "height": "36px"
  8719. }
  8720. }).form; //創建窗體
  8721. _taskbar = {
  8722. "id": str + _formdiv.id,
  8723. "style": {
  8724. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8725. },
  8726. "name": "思維導圖",
  8727. "forms": _formdiv,
  8728. "click": function () {
  8729. U.MD.D.I.openApplication(str, obj, info);
  8730. }
  8731. }
  8732. break;
  8733. case "doc":
  8734. aTool = 6;
  8735. _iframe = $$("iframe", {
  8736. "frameborder": "no",
  8737. "border": "0",
  8738. "scrolling ": "no",
  8739. "style": {
  8740. "cssText": "border:0;width:100%;height:100%"
  8741. },
  8742. "src": "/Office/Word/WordEditArea.htm"
  8743. })
  8744. _box.appendChild(_iframe);
  8745. _box.appendChild(_jie);
  8746. _formdiv = new U.UF.UI.form(
  8747. "協同文檔-" + _username,
  8748. _box, {
  8749. "id": "doc" + cid + stage + task + tool + _userid,
  8750. "style": {
  8751. "width": "90%",
  8752. "height": "90%",
  8753. "overflow": 'hidden'
  8754. },
  8755. "onresize": function () { }
  8756. }, {
  8757. closecallback: function () { }
  8758. }, {
  8759. "style": {
  8760. "height": "36px"
  8761. }
  8762. }).form; //創建窗體
  8763. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8764. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8765. })
  8766. _taskbar = {
  8767. "id": str + _formdiv.id,
  8768. "style": {
  8769. "backgroundImage": "url(/img/icon/doc.png)"
  8770. },
  8771. "name": "協同文檔",
  8772. "forms": _formdiv,
  8773. "click": function () {
  8774. U.MD.D.I.openApplication(str, obj, info);
  8775. }
  8776. }
  8777. break;
  8778. case "mindNetwork": //好友打開
  8779. aTool = 7;
  8780. _iframe = $$("iframe", {
  8781. "webkitallowfullscreen": "",
  8782. "mozallowfullscreen": "",
  8783. "allowfullscreen": "",
  8784. "frameborder": "no",
  8785. "border": "0",
  8786. "scrolling ": "no",
  8787. "style": {
  8788. "cssText": "border:0; width:100%; height:100%;"
  8789. },
  8790. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8791. })
  8792. _box.appendChild(_iframe);
  8793. _box.appendChild(_jie);
  8794. _formdiv = new U.UF.UI.form(
  8795. "思維網格-" + _username,
  8796. _box, {
  8797. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8798. "style": {
  8799. "width": "90%",
  8800. "height": "90%",
  8801. "overflow": 'hidden'
  8802. },
  8803. "onresize": function () { }
  8804. }, {
  8805. closecallback: function () { }
  8806. }, {
  8807. "style": {
  8808. "height": "36px"
  8809. }
  8810. }).form; //創建窗體
  8811. _taskbar = {
  8812. "id": str + _formdiv.id,
  8813. "style": {
  8814. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8815. },
  8816. "name": "思維網格",
  8817. "forms": _formdiv,
  8818. "click": function () {
  8819. U.MD.D.I.openApplication(str, obj, info);
  8820. }
  8821. }
  8822. break;
  8823. case "courseDesign":
  8824. _iframe = $$("iframe", {
  8825. "webkitallowfullscreen": "",
  8826. "mozallowfullscreen": "",
  8827. "allowfullscreen": "",
  8828. "frameborder": "no",
  8829. "border": "0",
  8830. "scrolling ": "no",
  8831. "style": {
  8832. "cssText": "border:0; width:100%; height:100%;"
  8833. },
  8834. "src": "/course-design-vue"
  8835. })
  8836. _box.appendChild(_iframe);
  8837. _box.appendChild(_jie);
  8838. _formdiv = new U.UF.UI.form(
  8839. "項目設計-" + _username,
  8840. _box, {
  8841. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8842. "style": {
  8843. "width": "90%",
  8844. "height": "90%",
  8845. "overflow": 'hidden'
  8846. },
  8847. "onresize": function () { }
  8848. }, {
  8849. closecallback: function () { }
  8850. }, {
  8851. "style": {
  8852. "height": "36px"
  8853. }
  8854. }).form; //創建窗體
  8855. _taskbar = {
  8856. "id": str + _formdiv.id,
  8857. "style": {
  8858. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8859. },
  8860. "name": "項目設計",
  8861. "forms": _formdiv,
  8862. "click": function () {
  8863. U.MD.D.I.openApplication(str, obj, info);
  8864. }
  8865. }
  8866. break;
  8867. }
  8868. const script1 = document.createElement("script");
  8869. script1.type = "text/javascript";
  8870. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8871. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8872. const script2 = document.createElement("script");
  8873. script2.type = "text/javascript";
  8874. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8875. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8876. const script3 = document.createElement("script");
  8877. script3.type = "text/javascript";
  8878. script3.charset = "UTF-8";
  8879. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8880. const script4 = document.createElement("script");
  8881. script4.type = "text/javascript";
  8882. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8883. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8884. if (_iframe) {
  8885. if (str == 'doc') {
  8886. _iframe = _formdiv.querySelector('iframe')
  8887. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8888. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8889. _iframe.contentWindow.document.body.appendChild(script1);
  8890. _iframe.contentWindow.document.body.appendChild(script2);
  8891. // _iframe.contentWindow.document.body.appendChild(script3);
  8892. _iframe.contentWindow.document.body.appendChild(script4);
  8893. })
  8894. if (onloadListener) {
  8895. _iframe.contentDocument.location.reload()
  8896. } else {
  8897. _iframe.contentDocument.location.reload()
  8898. }
  8899. } else if (str == 'courseDesign') {
  8900. U.UF.DL.iframeLoad(_iframe, function () {
  8901. // _iframe.contentWindow.U.MD.O.W.load();
  8902. // _iframe.contentWindow.document.body.appendChild(script1);
  8903. _iframe.contentWindow.document.body.appendChild(script2);
  8904. _iframe.contentWindow.document.body.appendChild(script4);
  8905. })
  8906. } else if (str == 'mind') {
  8907. _iframe = _formdiv.querySelector('iframe')
  8908. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8909. //
  8910. _iframe.contentWindow.document.body.appendChild(script1);
  8911. _iframe.contentWindow.document.body.appendChild(script2);
  8912. _iframe.contentWindow.document.body.appendChild(script4);
  8913. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8914. })
  8915. if (onloadListener) {
  8916. _iframe.contentDocument.location.reload()
  8917. } else {
  8918. _iframe.contentDocument.location.reload()
  8919. }
  8920. } else if (str == 'whiteboard') {
  8921. _iframe = _formdiv.querySelector('iframe')
  8922. let onloadListener = _iframe.onload = () => {
  8923. _iframe.contentWindow.document.body.appendChild(script1);
  8924. _iframe.contentWindow.document.body.appendChild(script2);
  8925. _iframe.contentWindow.document.body.appendChild(script4);
  8926. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8927. };
  8928. // if (onloadListener) {
  8929. // try {
  8930. // _iframe.src += "?cocorobo="+new Date().getTime()
  8931. // _iframe.contentWindow.document.location.reload()
  8932. // } catch (error) {
  8933. // }
  8934. // } else {
  8935. // _iframe.contentDocument.location.reload()
  8936. // }
  8937. } else {
  8938. _iframe.onload = () => {
  8939. _iframe.contentWindow.document.body.appendChild(script1);
  8940. _iframe.contentWindow.document.body.appendChild(script2);
  8941. // _iframe.contentWindow.document.body.appendChild(script3);
  8942. _iframe.contentWindow.document.body.appendChild(script4);
  8943. };
  8944. }
  8945. _jie.onclick = async () => {
  8946. let text = ''
  8947. if (aTool == 1) {
  8948. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8949. } else if (aTool == 6) {
  8950. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8951. } else if (aTool == 3) {
  8952. text = await U.MD.D.I.getEditorContent(_iframe);
  8953. }
  8954. _loading.style.display = 'flex'
  8955. console.log(_loading);
  8956. var _ajs = _iframe.contentWindow.document.createElement("script");
  8957. _ajs.type = "text/javascript";
  8958. _ajs.innerHTML =
  8959. // 'console.log(' + _loading + ');\n' +
  8960. 'var _js = document.createElement("script");\n' +
  8961. '_js.type="text/javascript";\n' +
  8962. '_js.charset="UTF-8";\n' +
  8963. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8964. "_js.onload = function(){\n" +
  8965. ' var a = document.getElementsByTagName("img")\n' +
  8966. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8967. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8968. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8969. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8970. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8971. "beforeUpload_shishi(file," +
  8972. "'" +
  8973. _userid +
  8974. "'" +
  8975. ", " +
  8976. "'" +
  8977. _cid +
  8978. "'" +
  8979. ", " +
  8980. "'" +
  8981. _stage +
  8982. "'" +
  8983. ", " +
  8984. "'" +
  8985. _task +
  8986. "'" +
  8987. ", " +
  8988. "'" +
  8989. _tool +
  8990. "'" +
  8991. ", " +
  8992. "'" +
  8993. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8994. "'" +
  8995. ", " +
  8996. "'" +
  8997. aTool +
  8998. "'" +
  8999. ", " +
  9000. "`" +
  9001. text +
  9002. "`" +
  9003. ")\n" +
  9004. " });\n" +
  9005. "}\n" +
  9006. "document.head.appendChild(_js);\n";
  9007. _iframe.contentWindow.document.head.appendChild(_ajs);
  9008. }
  9009. }
  9010. }
  9011. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9012. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9013. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9014. _userid = student.userid, //登錄用戶id
  9015. _username = student.student //用戶名字
  9016. let _iframe;
  9017. let _cid = cid,
  9018. _stage = stage,
  9019. _task = task,
  9020. _tool = tool;
  9021. var _jie = $$("div", {
  9022. "style": {
  9023. "position": "absolute",
  9024. "bottom": "50px",
  9025. "right": "50px",
  9026. "zIndex": "9999",
  9027. "backgroundColor": "#2268bc",
  9028. "color": "#fff",
  9029. "padding": "12px 20px",
  9030. "cursor": "pointer",
  9031. "borderRadius": "4px",
  9032. },
  9033. "innerHTML": "提交作業"
  9034. })
  9035. let aTool = ''
  9036. let _loading = document.createElement('div')
  9037. _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;"
  9038. // _loading.id = "";
  9039. let _lchild = document.createElement('div')
  9040. let _limg = document.createElement('img')
  9041. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9042. _limg.style = "width: 26px;margin-right: 10px;"
  9043. _lchild.appendChild(_limg)
  9044. let _lspan = document.createElement('span')
  9045. _lspan.innerHTML = "上傳中..."
  9046. _lchild.appendChild(_lspan)
  9047. _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%);"
  9048. _loading.appendChild(_lchild)
  9049. var _box = $$('div', {
  9050. "style": {
  9051. "position": "relative",
  9052. "width": "100%",
  9053. "height": "100%",
  9054. },
  9055. })
  9056. _box.appendChild(_loading)
  9057. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9058. switch (str) {
  9059. case "whiteboard":
  9060. aTool = 1;
  9061. _iframe = $$("iframe", {
  9062. "frameborder": "no",
  9063. "border": "0",
  9064. "scrolling ": "no",
  9065. "style": {
  9066. "cssText": "border:0;width:100%;height:100%"
  9067. },
  9068. "src": "https://iwb.cocorobo.hk/"
  9069. })
  9070. _box.appendChild(_iframe);
  9071. _box.appendChild(_jie);
  9072. _formdiv = new U.UF.UI.form(
  9073. "電子白板-" + _username,
  9074. _box, {
  9075. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9076. "style": {
  9077. "width": "90%",
  9078. "height": "90%",
  9079. "overflow": 'hidden'
  9080. },
  9081. "onresize": function () { }
  9082. }, {
  9083. closecallback: function () { }
  9084. }, {
  9085. "style": {
  9086. "height": "36px"
  9087. }
  9088. }).form; //創建窗體
  9089. _taskbar = {
  9090. "id": str + _formdiv.id,
  9091. "style": {
  9092. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9093. },
  9094. "name": "電子白板",
  9095. "forms": _formdiv,
  9096. "click": function () {
  9097. U.MD.D.I.openApplication(str, obj, info);
  9098. }
  9099. }
  9100. break;
  9101. case "mind":
  9102. aTool = 3;
  9103. _iframe = $$("iframe", {
  9104. "frameborder": "no",
  9105. "border": "0",
  9106. "scrolling ": "no",
  9107. "style": {
  9108. "cssText": "border:0;width:100%;height:100%"
  9109. },
  9110. "src": "/kityminder-editor/dist/index.html"
  9111. })
  9112. _box.appendChild(_iframe);
  9113. _box.appendChild(_jie);
  9114. _formdiv = new U.UF.UI.form(
  9115. "思維導圖-" + _username,
  9116. _box, { //"/jsmind/example/demo.html"
  9117. "id": "mind" + cid + stage + task + tool + _userid,
  9118. "style": {
  9119. "width": "90%",
  9120. "height": "90%",
  9121. "overflow": 'hidden'
  9122. },
  9123. "onresize": function () { }
  9124. }, {
  9125. closecallback: function () { }
  9126. }, {
  9127. "style": {
  9128. "height": "36px"
  9129. }
  9130. }).form; //創建窗體
  9131. _taskbar = {
  9132. "id": str + _formdiv.id,
  9133. "style": {
  9134. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9135. },
  9136. "name": "思維導圖",
  9137. "forms": _formdiv,
  9138. "click": function () {
  9139. U.MD.D.I.openApplication(str, obj, info);
  9140. }
  9141. }
  9142. break;
  9143. case "MindMap":
  9144. aTool = 3;
  9145. _iframe = $$("iframe", {
  9146. "frameborder": "no",
  9147. "border": "0",
  9148. "scrolling ": "no",
  9149. "style": {
  9150. "cssText": "border:0;width:100%;height:100%"
  9151. },
  9152. "src": "//cloud.cocorobo.hk/mind/"
  9153. })
  9154. _box.appendChild(_iframe);
  9155. _box.appendChild(_jie);
  9156. _formdiv = new U.UF.UI.form(
  9157. "思維導圖-" + _username,
  9158. _box, { //"/jsmind/example/demo.html"
  9159. "id": "mind" + cid + stage + task + tool + _userid,
  9160. "style": {
  9161. "width": "90%",
  9162. "height": "90%",
  9163. "overflow": 'hidden'
  9164. },
  9165. "onresize": function () { }
  9166. }, {
  9167. closecallback: function () { }
  9168. }, {
  9169. "style": {
  9170. "height": "36px"
  9171. }
  9172. }).form; //創建窗體
  9173. _taskbar = {
  9174. "id": str + _formdiv.id,
  9175. "style": {
  9176. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9177. },
  9178. "name": "思維導圖",
  9179. "forms": _formdiv,
  9180. "click": function () {
  9181. U.MD.D.I.openApplication(str, obj, info);
  9182. }
  9183. }
  9184. break;
  9185. case "doc":
  9186. aTool = 6;
  9187. _iframe = $$("iframe", {
  9188. "frameborder": "no",
  9189. "border": "0",
  9190. "scrolling ": "no",
  9191. "style": {
  9192. "cssText": "border:0;width:100%;height:100%"
  9193. },
  9194. "src": "/Office/Word/WordEditArea.htm"
  9195. })
  9196. _box.appendChild(_iframe);
  9197. _box.appendChild(_jie);
  9198. _formdiv = new U.UF.UI.form(
  9199. "協同文檔-" + _username,
  9200. _box, {
  9201. "id": "doc" + cid + stage + task + tool + _userid,
  9202. "style": {
  9203. "width": "90%",
  9204. "height": "90%",
  9205. "overflow": 'hidden'
  9206. },
  9207. "onresize": function () { }
  9208. }, {
  9209. closecallback: function () { }
  9210. }, {
  9211. "style": {
  9212. "height": "36px"
  9213. }
  9214. }).form; //創建窗體
  9215. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9216. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9217. })
  9218. _taskbar = {
  9219. "id": str + _formdiv.id,
  9220. "style": {
  9221. "backgroundImage": "url(/img/icon/doc.png)"
  9222. },
  9223. "name": "協同文檔",
  9224. "forms": _formdiv,
  9225. "click": function () {
  9226. U.MD.D.I.openApplication(str, obj, info);
  9227. }
  9228. }
  9229. break;
  9230. case "mindNetwork": //好友打開
  9231. aTool = 7;
  9232. _iframe = $$("iframe", {
  9233. "webkitallowfullscreen": "",
  9234. "mozallowfullscreen": "",
  9235. "allowfullscreen": "",
  9236. "frameborder": "no",
  9237. "border": "0",
  9238. "scrolling ": "no",
  9239. "style": {
  9240. "cssText": "border:0; width:100%; height:100%;"
  9241. },
  9242. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9243. })
  9244. _box.appendChild(_iframe);
  9245. _box.appendChild(_jie);
  9246. _formdiv = new U.UF.UI.form(
  9247. "思維網格-" + _username,
  9248. _box, {
  9249. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9250. "style": {
  9251. "width": "90%",
  9252. "height": "90%",
  9253. "overflow": 'hidden'
  9254. },
  9255. "onresize": function () { }
  9256. }, {
  9257. closecallback: function () { }
  9258. }, {
  9259. "style": {
  9260. "height": "36px"
  9261. }
  9262. }).form; //創建窗體
  9263. _taskbar = {
  9264. "id": str + _formdiv.id,
  9265. "style": {
  9266. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9267. },
  9268. "name": "思維網格",
  9269. "forms": _formdiv,
  9270. "click": function () {
  9271. U.MD.D.I.openApplication(str, obj, info);
  9272. }
  9273. }
  9274. break;
  9275. case "courseDesign":
  9276. _iframe = $$("iframe", {
  9277. "webkitallowfullscreen": "",
  9278. "mozallowfullscreen": "",
  9279. "allowfullscreen": "",
  9280. "frameborder": "no",
  9281. "border": "0",
  9282. "scrolling ": "no",
  9283. "style": {
  9284. "cssText": "border:0; width:100%; height:100%;"
  9285. },
  9286. "src": "/course-design-vue"
  9287. })
  9288. _box.appendChild(_iframe);
  9289. _box.appendChild(_jie);
  9290. _formdiv = new U.UF.UI.form(
  9291. "項目設計-" + _username,
  9292. _box, {
  9293. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9294. "style": {
  9295. "width": "90%",
  9296. "height": "90%",
  9297. "overflow": 'hidden'
  9298. },
  9299. "onresize": function () { }
  9300. }, {
  9301. closecallback: function () { }
  9302. }, {
  9303. "style": {
  9304. "height": "36px"
  9305. }
  9306. }).form; //創建窗體
  9307. _taskbar = {
  9308. "id": str + _formdiv.id,
  9309. "style": {
  9310. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9311. },
  9312. "name": "項目設計",
  9313. "forms": _formdiv,
  9314. "click": function () {
  9315. U.MD.D.I.openApplication(str, obj, info);
  9316. }
  9317. }
  9318. break;
  9319. }
  9320. const script1 = document.createElement("script");
  9321. script1.type = "text/javascript";
  9322. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9323. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9324. const script2 = document.createElement("script");
  9325. script2.type = "text/javascript";
  9326. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9327. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9328. const script3 = document.createElement("script");
  9329. script3.type = "text/javascript";
  9330. script3.charset = "UTF-8";
  9331. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9332. const script4 = document.createElement("script");
  9333. script4.type = "text/javascript";
  9334. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9335. script4.src = window.origin + "/js/Common/jietu2E.js";
  9336. if (_iframe) {
  9337. if (str == 'doc') {
  9338. _iframe = _formdiv.querySelector('iframe')
  9339. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9340. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9341. _iframe.contentWindow.document.body.appendChild(script1);
  9342. _iframe.contentWindow.document.body.appendChild(script2);
  9343. // _iframe.contentWindow.document.body.appendChild(script3);
  9344. _iframe.contentWindow.document.body.appendChild(script4);
  9345. })
  9346. if (onloadListener) {
  9347. _iframe.contentDocument.location.reload()
  9348. } else {
  9349. _iframe.contentDocument.location.reload()
  9350. }
  9351. } else if (str == 'courseDesign') {
  9352. U.UF.DL.iframeLoad(_iframe, function () {
  9353. // _iframe.contentWindow.U.MD.O.W.load();
  9354. // _iframe.contentWindow.document.body.appendChild(script1);
  9355. _iframe.contentWindow.document.body.appendChild(script2);
  9356. _iframe.contentWindow.document.body.appendChild(script4);
  9357. })
  9358. } else if (str == 'mind') {
  9359. _iframe = _formdiv.querySelector('iframe')
  9360. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9361. //
  9362. _iframe.contentWindow.document.body.appendChild(script1);
  9363. _iframe.contentWindow.document.body.appendChild(script2);
  9364. _iframe.contentWindow.document.body.appendChild(script4);
  9365. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9366. })
  9367. if (onloadListener) {
  9368. _iframe.contentDocument.location.reload()
  9369. } else {
  9370. _iframe.contentDocument.location.reload()
  9371. }
  9372. } else if (str == 'whiteboard') {
  9373. _iframe = _formdiv.querySelector('iframe')
  9374. let onloadListener = _iframe.onload = () => {
  9375. _iframe.contentWindow.document.body.appendChild(script1);
  9376. _iframe.contentWindow.document.body.appendChild(script2);
  9377. _iframe.contentWindow.document.body.appendChild(script4);
  9378. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9379. };
  9380. // if (onloadListener) {
  9381. // try {
  9382. // _iframe.src += "?cocorobo="+new Date().getTime()
  9383. // _iframe.contentWindow.document.location.reload()
  9384. // } catch (error) {
  9385. // }
  9386. // } else {
  9387. // _iframe.contentDocument.location.reload()
  9388. // }
  9389. } else {
  9390. _iframe.onload = () => {
  9391. _iframe.contentWindow.document.body.appendChild(script1);
  9392. _iframe.contentWindow.document.body.appendChild(script2);
  9393. // _iframe.contentWindow.document.body.appendChild(script3);
  9394. _iframe.contentWindow.document.body.appendChild(script4);
  9395. };
  9396. }
  9397. _jie.onclick = async () => {
  9398. let text = ''
  9399. if (aTool == 1) {
  9400. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9401. } else if (aTool == 6) {
  9402. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9403. } else if (aTool == 3) {
  9404. text = await U.MD.D.I.getEditorContent(_iframe);
  9405. }
  9406. _loading.style.display = 'flex'
  9407. console.log(_loading);
  9408. var _ajs = _iframe.contentWindow.document.createElement("script");
  9409. _ajs.type = "text/javascript";
  9410. _ajs.innerHTML =
  9411. // 'console.log(' + _loading + ');\n' +
  9412. 'var _js = document.createElement("script");\n' +
  9413. '_js.type="text/javascript";\n' +
  9414. '_js.charset="UTF-8";\n' +
  9415. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9416. "_js.onload = function(){\n" +
  9417. ' var a = document.getElementsByTagName("img")\n' +
  9418. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9419. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9420. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9421. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9422. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9423. "beforeUpload_shishi(file," +
  9424. "'" +
  9425. _userid +
  9426. "'" +
  9427. ", " +
  9428. "'" +
  9429. _cid +
  9430. "'" +
  9431. ", " +
  9432. "'" +
  9433. _stage +
  9434. "'" +
  9435. ", " +
  9436. "'" +
  9437. _task +
  9438. "'" +
  9439. ", " +
  9440. "'" +
  9441. _tool +
  9442. "'" +
  9443. ", " +
  9444. "'" +
  9445. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9446. "'" +
  9447. ", " +
  9448. "'" +
  9449. aTool +
  9450. "'" +
  9451. ", " +
  9452. "`" +
  9453. text +
  9454. "`" +
  9455. ")\n" +
  9456. " });\n" +
  9457. "}\n" +
  9458. "document.head.appendChild(_js);\n";
  9459. _iframe.contentWindow.document.head.appendChild(_ajs);
  9460. }
  9461. }
  9462. }
  9463. U.MD.D.I.getEditorContent = function (iframe) {
  9464. return new Promise((resolve, reject) => {
  9465. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9466. console.log(content);
  9467. resolve(content)
  9468. });
  9469. });
  9470. }
  9471. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9472. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9473. // if (res.value[0].length > 0) {
  9474. // // resolve(res.value[0][0].text);
  9475. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9476. // $(fileInput).val('');
  9477. // });
  9478. // }
  9479. // }, [], { "type": "GET", "withCredentials": true });
  9480. var xmlhttp;
  9481. var Mac, Sn, DeviceId
  9482. if (window.XMLHttpRequest) {
  9483. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9484. xmlhttp = new XMLHttpRequest();
  9485. }
  9486. else {
  9487. // IE6, IE5 瀏覽器執行代碼
  9488. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9489. }
  9490. xmlhttp.onreadystatechange = function () {
  9491. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9492. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9493. // resolve(res.value[0][0].text);
  9494. if (type == '2') {
  9495. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9496. } else if (type == '3') {
  9497. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9498. }
  9499. } else {
  9500. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9501. }
  9502. }
  9503. }
  9504. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9505. xmlhttp.send();
  9506. }
  9507. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9508. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9509. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9510. _userinfo = US.userInfo, //登錄用戶信息
  9511. _userid = US.userInfo.userid //登錄用戶id
  9512. let _iframe;
  9513. let _cid = cid,
  9514. _stage = stage,
  9515. _task = task,
  9516. _tool = tool;
  9517. var _jie = $$("div", {
  9518. "style": {
  9519. "position": "absolute",
  9520. "bottom": "50px",
  9521. "right": "50px",
  9522. "zIndex": "9999",
  9523. "backgroundColor": "#2268bc",
  9524. "color": "#fff",
  9525. "padding": "12px 20px",
  9526. "cursor": "pointer",
  9527. "borderRadius": "4px",
  9528. },
  9529. "innerHTML": "確認並提交"
  9530. })
  9531. let aTool = ''
  9532. let _loading = document.createElement('div')
  9533. _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;"
  9534. // _loading.id = "";
  9535. let _lchild = document.createElement('div')
  9536. let _limg = document.createElement('img')
  9537. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9538. _limg.style = "width: 26px;margin-right: 10px;"
  9539. _lchild.appendChild(_limg)
  9540. let _lspan = document.createElement('span')
  9541. _lspan.innerHTML = "上傳中..."
  9542. _lchild.appendChild(_lspan)
  9543. _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%);"
  9544. _loading.appendChild(_lchild)
  9545. var _box = $$('div', {
  9546. "style": {
  9547. "position": "relative",
  9548. "width": "100%",
  9549. "height": "100%",
  9550. },
  9551. })
  9552. _box.appendChild(_loading)
  9553. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9554. switch (str) {
  9555. case "whiteboard":
  9556. aTool = 1;
  9557. _iframe = $$("iframe", {
  9558. "frameborder": "no",
  9559. "border": "0",
  9560. "scrolling ": "no",
  9561. "style": {
  9562. "cssText": "border:0;width:100%;height:100%"
  9563. },
  9564. "src": "https://iwb.cocorobo.hk/"
  9565. })
  9566. _box.appendChild(_iframe);
  9567. _box.appendChild(_jie);
  9568. _formdiv = new U.UF.UI.form(
  9569. "電子白板",
  9570. _box, {
  9571. "id": "whiteboards" + cid + stage + task + tool,
  9572. "style": {
  9573. "width": "90%",
  9574. "height": "90%",
  9575. "overflow": 'hidden'
  9576. },
  9577. "onresize": function () { }
  9578. }, {
  9579. closecallback: function () { }
  9580. }, {
  9581. "style": {
  9582. "height": "36px"
  9583. }
  9584. }).form; //創建窗體
  9585. _taskbar = {
  9586. "id": str + _formdiv.id,
  9587. "style": {
  9588. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9589. },
  9590. "name": "電子白板",
  9591. "forms": _formdiv,
  9592. "click": function () {
  9593. U.MD.D.I.openApplication(str, obj, info);
  9594. }
  9595. }
  9596. break;
  9597. case "mind":
  9598. aTool = 3;
  9599. _iframe = $$("iframe", {
  9600. "frameborder": "no",
  9601. "border": "0",
  9602. "scrolling ": "no",
  9603. "style": {
  9604. "cssText": "border:0;width:100%;height:100%"
  9605. },
  9606. "src": "/kityminder-editor/dist/index.html"
  9607. });
  9608. _box.appendChild(_iframe);
  9609. _box.appendChild(_jie);
  9610. _formdiv = new U.UF.UI.form(
  9611. "思維導圖",
  9612. _box, { //"/jsmind/example/demo.html"
  9613. "id": "minds" + cid + stage + task + tool,
  9614. "style": {
  9615. "width": "90%",
  9616. "height": "90%",
  9617. "overflow": 'hidden'
  9618. },
  9619. "onresize": function () { }
  9620. }, {
  9621. closecallback: function () { }
  9622. }, {
  9623. "style": {
  9624. "height": "36px"
  9625. }
  9626. }).form; //創建窗體
  9627. _taskbar = {
  9628. "id": str + _formdiv.id,
  9629. "style": {
  9630. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9631. },
  9632. "name": "思維導圖",
  9633. "forms": _formdiv,
  9634. "click": function () {
  9635. U.MD.D.I.openApplication(str, obj, info);
  9636. }
  9637. }
  9638. break;
  9639. case "doc":
  9640. aTool = 6;
  9641. _iframe = $$("iframe", {
  9642. "frameborder": "no",
  9643. "border": "0",
  9644. "scrolling ": "no",
  9645. "style": {
  9646. "cssText": "border:0;width:100%;height:100%"
  9647. },
  9648. "src": "/Office/Word/WordEditArea.htm"
  9649. })
  9650. _box.appendChild(_iframe);
  9651. _box.appendChild(_jie);
  9652. _formdiv = new U.UF.UI.form(
  9653. "協同文檔",
  9654. _box, {
  9655. "id": "docs" + cid + stage + task + tool,
  9656. "style": {
  9657. "width": "90%",
  9658. "height": "90%",
  9659. "overflow": 'hidden'
  9660. },
  9661. "onresize": function () { }
  9662. }, {
  9663. closecallback: function () { }
  9664. }, {
  9665. "style": {
  9666. "height": "36px"
  9667. }
  9668. }).form; //創建窗體
  9669. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9670. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9671. })
  9672. _taskbar = {
  9673. "id": str + _formdiv.id,
  9674. "style": {
  9675. "backgroundImage": "url(/img/icon/doc.png)"
  9676. },
  9677. "name": "協同文檔",
  9678. "forms": _formdiv,
  9679. "click": function () {
  9680. U.MD.D.I.openApplication(str, obj, info);
  9681. }
  9682. }
  9683. break;
  9684. }
  9685. const script1 = document.createElement("script");
  9686. script1.type = "text/javascript";
  9687. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9688. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9689. const script2 = document.createElement("script");
  9690. script2.type = "text/javascript";
  9691. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9692. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9693. const script3 = document.createElement("script");
  9694. script3.type = "text/javascript";
  9695. script3.charset = "UTF-8";
  9696. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9697. const script4 = document.createElement("script");
  9698. script4.type = "text/javascript";
  9699. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9700. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9701. if (_iframe) {
  9702. if (str == 'doc') {
  9703. _iframe = _formdiv.querySelector('iframe')
  9704. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9705. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9706. _iframe.contentWindow.document.body.appendChild(script1);
  9707. _iframe.contentWindow.document.body.appendChild(script2);
  9708. // _iframe.contentWindow.document.body.appendChild(script3);
  9709. _iframe.contentWindow.document.body.appendChild(script4);
  9710. })
  9711. if (onloadListener) {
  9712. _iframe.contentDocument.location.reload()
  9713. } else {
  9714. _iframe.contentDocument.location.reload()
  9715. }
  9716. } else if (str == 'mind') {
  9717. _iframe = _formdiv.querySelector('iframe')
  9718. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9719. _iframe.contentWindow.document.body.appendChild(script1);
  9720. _iframe.contentWindow.document.body.appendChild(script2);
  9721. _iframe.contentWindow.document.body.appendChild(script4);
  9722. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9723. })
  9724. if (onloadListener) {
  9725. _iframe.contentDocument.location.reload()
  9726. } else {
  9727. _iframe.contentDocument.location.reload()
  9728. }
  9729. } else {
  9730. _iframe.onload = () => {
  9731. _iframe.contentWindow.document.body.appendChild(script1);
  9732. _iframe.contentWindow.document.body.appendChild(script2);
  9733. // _iframe.contentWindow.document.body.appendChild(script3);
  9734. _iframe.contentWindow.document.body.appendChild(script4);
  9735. };
  9736. }
  9737. _jie.onclick = async () => {
  9738. let text = ''
  9739. if (aTool == 6) {
  9740. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9741. } else if (aTool == 3) {
  9742. text = await U.MD.D.I.getEditorContent(_iframe);
  9743. }
  9744. _loading.style.display = 'flex'
  9745. console.log(_loading);
  9746. var _ajs = _iframe.contentWindow.document.createElement("script");
  9747. _ajs.type = "text/javascript";
  9748. _ajs.innerHTML =
  9749. // 'console.log(' + _loading + ');\n' +
  9750. 'var _js = document.createElement("script");\n' +
  9751. '_js.type="text/javascript";\n' +
  9752. '_js.charset="UTF-8";\n' +
  9753. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9754. "_js.onload = function(){\n" +
  9755. ' var a = document.getElementsByTagName("img")\n' +
  9756. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9757. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9758. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9759. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9760. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9761. "beforeUpload_shishi(file," +
  9762. "'" +
  9763. _userid +
  9764. "'" +
  9765. ", " +
  9766. "'" +
  9767. _cid +
  9768. "'" +
  9769. ", " +
  9770. "'" +
  9771. _stage +
  9772. "'" +
  9773. ", " +
  9774. "'" +
  9775. _task +
  9776. "'" +
  9777. ", " +
  9778. "'" +
  9779. _tool +
  9780. "'" +
  9781. ", " +
  9782. "'" +
  9783. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9784. "'" +
  9785. ", " +
  9786. "'" +
  9787. aTool +
  9788. "'" +
  9789. ", " +
  9790. "`" +
  9791. text +
  9792. "`" +
  9793. ")\n" +
  9794. " });\n" +
  9795. "}\n" +
  9796. "document.head.appendChild(_js);\n";
  9797. _iframe.contentWindow.document.head.appendChild(_ajs);
  9798. }
  9799. }
  9800. //U.MD.D.I.openClick(str);
  9801. //如果有任務欄信息
  9802. // if (_taskbar) {
  9803. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9804. // }
  9805. }
  9806. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9807. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9808. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9809. _userinfo = US.userInfo, //登錄用戶信息
  9810. _userid = US.userInfo.userid //登錄用戶id
  9811. let _iframe;
  9812. let _cid = cid,
  9813. _stage = stage,
  9814. _task = task,
  9815. _tool = tool;
  9816. var _jie = $$("div", {
  9817. "style": {
  9818. "position": "absolute",
  9819. "bottom": "50px",
  9820. "right": "50px",
  9821. "zIndex": "9999",
  9822. "backgroundColor": "#2268bc",
  9823. "color": "#fff",
  9824. "padding": "12px 20px",
  9825. "cursor": "pointer",
  9826. "borderRadius": "4px",
  9827. },
  9828. "innerHTML": "確認並提交"
  9829. })
  9830. let aTool = ''
  9831. let _loading = document.createElement('div')
  9832. _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;"
  9833. // _loading.id = "";
  9834. let _lchild = document.createElement('div')
  9835. let _limg = document.createElement('img')
  9836. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9837. _limg.style = "width: 26px;margin-right: 10px;"
  9838. _lchild.appendChild(_limg)
  9839. let _lspan = document.createElement('span')
  9840. _lspan.innerHTML = "上傳中..."
  9841. _lchild.appendChild(_lspan)
  9842. _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%);"
  9843. _loading.appendChild(_lchild)
  9844. var _box = $$('div', {
  9845. "style": {
  9846. "position": "relative",
  9847. "width": "100%",
  9848. "height": "100%",
  9849. },
  9850. })
  9851. _box.appendChild(_loading)
  9852. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9853. switch (str) {
  9854. case "whiteboard":
  9855. aTool = 1;
  9856. _iframe = $$("iframe", {
  9857. "frameborder": "no",
  9858. "border": "0",
  9859. "scrolling ": "no",
  9860. "style": {
  9861. "cssText": "border:0;width:100%;height:100%"
  9862. },
  9863. "src": "https://iwb.cocorobo.hk/"
  9864. })
  9865. _box.appendChild(_iframe);
  9866. _box.appendChild(_jie);
  9867. _formdiv = new U.UF.UI.form(
  9868. "電子白板",
  9869. _box, {
  9870. "id": "whiteboards" + cid + stage + task + tool,
  9871. "style": {
  9872. "width": "90%",
  9873. "height": "90%",
  9874. "overflow": 'hidden'
  9875. },
  9876. "onresize": function () { }
  9877. }, {
  9878. closecallback: function () { }
  9879. }, {
  9880. "style": {
  9881. "height": "36px"
  9882. }
  9883. }).form; //創建窗體
  9884. _taskbar = {
  9885. "id": str + _formdiv.id,
  9886. "style": {
  9887. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9888. },
  9889. "name": "電子白板",
  9890. "forms": _formdiv,
  9891. "click": function () {
  9892. U.MD.D.I.openApplication(str, obj, info);
  9893. }
  9894. }
  9895. break;
  9896. case "mind":
  9897. aTool = 3;
  9898. _iframe = $$("iframe", {
  9899. "frameborder": "no",
  9900. "border": "0",
  9901. "scrolling ": "no",
  9902. "style": {
  9903. "cssText": "border:0;width:100%;height:100%"
  9904. },
  9905. "src": "/kityminder-editor/dist/index.html"
  9906. });
  9907. _box.appendChild(_iframe);
  9908. _box.appendChild(_jie);
  9909. _formdiv = new U.UF.UI.form(
  9910. "思維導圖",
  9911. _box, { //"/jsmind/example/demo.html"
  9912. "id": "minds" + cid + stage + task + tool,
  9913. "style": {
  9914. "width": "90%",
  9915. "height": "90%",
  9916. "overflow": 'hidden'
  9917. },
  9918. "onresize": function () { }
  9919. }, {
  9920. closecallback: function () { }
  9921. }, {
  9922. "style": {
  9923. "height": "36px"
  9924. }
  9925. }).form; //創建窗體
  9926. _taskbar = {
  9927. "id": str + _formdiv.id,
  9928. "style": {
  9929. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9930. },
  9931. "name": "思維導圖",
  9932. "forms": _formdiv,
  9933. "click": function () {
  9934. U.MD.D.I.openApplication(str, obj, info);
  9935. }
  9936. }
  9937. break;
  9938. case "doc":
  9939. aTool = 6;
  9940. _iframe = $$("iframe", {
  9941. "frameborder": "no",
  9942. "border": "0",
  9943. "scrolling ": "no",
  9944. "style": {
  9945. "cssText": "border:0;width:100%;height:100%"
  9946. },
  9947. "src": "/Office/Word/WordEditArea.htm"
  9948. })
  9949. _box.appendChild(_iframe);
  9950. _box.appendChild(_jie);
  9951. _formdiv = new U.UF.UI.form(
  9952. "協同文檔",
  9953. _box, {
  9954. "id": "docs" + cid + stage + task + tool,
  9955. "style": {
  9956. "width": "90%",
  9957. "height": "90%",
  9958. "overflow": 'hidden'
  9959. },
  9960. "onresize": function () { }
  9961. }, {
  9962. closecallback: function () { }
  9963. }, {
  9964. "style": {
  9965. "height": "36px"
  9966. }
  9967. }).form; //創建窗體
  9968. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9969. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9970. })
  9971. _taskbar = {
  9972. "id": str + _formdiv.id,
  9973. "style": {
  9974. "backgroundImage": "url(/img/icon/doc.png)"
  9975. },
  9976. "name": "協同文檔",
  9977. "forms": _formdiv,
  9978. "click": function () {
  9979. U.MD.D.I.openApplication(str, obj, info);
  9980. }
  9981. }
  9982. break;
  9983. }
  9984. const script1 = document.createElement("script");
  9985. script1.type = "text/javascript";
  9986. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9987. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9988. const script2 = document.createElement("script");
  9989. script2.type = "text/javascript";
  9990. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9991. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9992. const script3 = document.createElement("script");
  9993. script3.type = "text/javascript";
  9994. script3.charset = "UTF-8";
  9995. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9996. const script4 = document.createElement("script");
  9997. script4.type = "text/javascript";
  9998. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9999. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  10000. if (_iframe) {
  10001. if (str == 'doc') {
  10002. _iframe = _formdiv.querySelector('iframe')
  10003. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10004. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10005. _iframe.contentWindow.document.body.appendChild(script1);
  10006. _iframe.contentWindow.document.body.appendChild(script2);
  10007. // _iframe.contentWindow.document.body.appendChild(script3);
  10008. _iframe.contentWindow.document.body.appendChild(script4);
  10009. })
  10010. if (onloadListener) {
  10011. _iframe.contentDocument.location.reload()
  10012. } else {
  10013. _iframe.contentDocument.location.reload()
  10014. }
  10015. } else if (str == 'mind') {
  10016. _iframe = _formdiv.querySelector('iframe')
  10017. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10018. _iframe.contentWindow.document.body.appendChild(script1);
  10019. _iframe.contentWindow.document.body.appendChild(script2);
  10020. _iframe.contentWindow.document.body.appendChild(script4);
  10021. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10022. })
  10023. if (onloadListener) {
  10024. _iframe.contentDocument.location.reload()
  10025. } else {
  10026. _iframe.contentDocument.location.reload()
  10027. }
  10028. } else {
  10029. _iframe.onload = () => {
  10030. _iframe.contentWindow.document.body.appendChild(script1);
  10031. _iframe.contentWindow.document.body.appendChild(script2);
  10032. // _iframe.contentWindow.document.body.appendChild(script3);
  10033. _iframe.contentWindow.document.body.appendChild(script4);
  10034. };
  10035. }
  10036. _jie.onclick = async () => {
  10037. let text = ''
  10038. if (aTool == 6) {
  10039. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10040. } else if (aTool == 3) {
  10041. text = await U.MD.D.I.getEditorContent(_iframe);
  10042. }
  10043. _loading.style.display = 'flex'
  10044. console.log(_loading);
  10045. var _ajs = _iframe.contentWindow.document.createElement("script");
  10046. _ajs.type = "text/javascript";
  10047. _ajs.innerHTML =
  10048. // 'console.log(' + _loading + ');\n' +
  10049. 'var _js = document.createElement("script");\n' +
  10050. '_js.type="text/javascript";\n' +
  10051. '_js.charset="UTF-8";\n' +
  10052. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  10053. "_js.onload = function(){\n" +
  10054. ' var a = document.getElementsByTagName("img")\n' +
  10055. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10056. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10057. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10058. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10059. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  10060. "beforeUpload_shishi(file," +
  10061. "'" +
  10062. _userid +
  10063. "'" +
  10064. ", " +
  10065. "'" +
  10066. _cid +
  10067. "'" +
  10068. ", " +
  10069. "'" +
  10070. _stage +
  10071. "'" +
  10072. ", " +
  10073. "'" +
  10074. _task +
  10075. "'" +
  10076. ", " +
  10077. "'" +
  10078. _tool +
  10079. "'" +
  10080. ", " +
  10081. "'" +
  10082. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10083. "'" +
  10084. ", " +
  10085. "'" +
  10086. aTool +
  10087. "'" +
  10088. ", " +
  10089. "`" +
  10090. text +
  10091. "`" +
  10092. ")\n" +
  10093. " });\n" +
  10094. "}\n" +
  10095. "document.head.appendChild(_js);\n";
  10096. _iframe.contentWindow.document.head.appendChild(_ajs);
  10097. }
  10098. }
  10099. //U.MD.D.I.openClick(str);
  10100. //如果有任務欄信息
  10101. // if (_taskbar) {
  10102. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10103. // }
  10104. }
  10105. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10106. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10107. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10108. _userinfo = US.userInfo, //登錄用戶信息
  10109. _userid = US.userInfo.userid //登錄用戶id
  10110. let _iframe;
  10111. let _cid = cid,
  10112. _stage = stage,
  10113. _task = task,
  10114. _tool = tool;
  10115. var _jie = $$("div", {
  10116. "style": {
  10117. "position": "absolute",
  10118. "bottom": "50px",
  10119. "right": "50px",
  10120. "zIndex": "9999",
  10121. "backgroundColor": "#2268bc",
  10122. "color": "#fff",
  10123. "padding": "12px 20px",
  10124. "cursor": "pointer",
  10125. "borderRadius": "4px",
  10126. },
  10127. "innerHTML": "上傳模板"
  10128. })
  10129. let aTool = ''
  10130. let _loading = document.createElement('div')
  10131. _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;"
  10132. // _loading.id = "";
  10133. let _lchild = document.createElement('div')
  10134. let _limg = document.createElement('img')
  10135. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10136. _limg.style = "width: 26px;margin-right: 10px;"
  10137. _lchild.appendChild(_limg)
  10138. let _lspan = document.createElement('span')
  10139. _lspan.innerHTML = "上傳中..."
  10140. _lchild.appendChild(_lspan)
  10141. _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%);"
  10142. _loading.appendChild(_lchild)
  10143. var _box = $$('div', {
  10144. "style": {
  10145. "position": "relative",
  10146. "width": "100%",
  10147. "height": "100%",
  10148. },
  10149. })
  10150. _box.appendChild(_loading)
  10151. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10152. switch (str) {
  10153. case "whiteboard":
  10154. aTool = 1;
  10155. _iframe = $$("iframe", {
  10156. "frameborder": "no",
  10157. "border": "0",
  10158. "scrolling ": "no",
  10159. "style": {
  10160. "cssText": "border:0;width:100%;height:100%"
  10161. },
  10162. "src": "https://iwb.cocorobo.hk/"
  10163. })
  10164. _box.appendChild(_iframe);
  10165. _box.appendChild(_jie);
  10166. _formdiv = new U.UF.UI.form(
  10167. "電子白板",
  10168. _box, {
  10169. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10170. "style": {
  10171. "width": "90%",
  10172. "height": "90%",
  10173. "overflow": 'hidden'
  10174. },
  10175. "onresize": function () { }
  10176. }, {
  10177. closecallback: function () { }
  10178. }, {
  10179. "style": {
  10180. "height": "36px"
  10181. }
  10182. }).form; //創建窗體
  10183. _taskbar = {
  10184. "id": str + _formdiv.id,
  10185. "style": {
  10186. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10187. },
  10188. "name": "電子白板",
  10189. "forms": _formdiv,
  10190. "click": function () {
  10191. U.MD.D.I.openApplication(str, obj, info);
  10192. }
  10193. }
  10194. break;
  10195. case "mind":
  10196. aTool = 3;
  10197. _iframe = $$("iframe", {
  10198. "frameborder": "no",
  10199. "border": "0",
  10200. "scrolling ": "no",
  10201. "style": {
  10202. "cssText": "border:0;width:100%;height:100%"
  10203. },
  10204. "src": "/kityminder-editor/dist/index.html"
  10205. });
  10206. _box.appendChild(_iframe);
  10207. _box.appendChild(_jie);
  10208. _formdiv = new U.UF.UI.form(
  10209. "思維導圖",
  10210. _box, { //"/jsmind/example/demo.html"
  10211. "id": "minds_Yu" + cid + stage + task + tool,
  10212. "style": {
  10213. "width": "90%",
  10214. "height": "90%",
  10215. "overflow": 'hidden'
  10216. },
  10217. "onresize": function () { }
  10218. }, {
  10219. closecallback: function () { }
  10220. }, {
  10221. "style": {
  10222. "height": "36px"
  10223. }
  10224. }).form; //創建窗體
  10225. _taskbar = {
  10226. "id": str + _formdiv.id,
  10227. "style": {
  10228. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10229. },
  10230. "name": "思維導圖",
  10231. "forms": _formdiv,
  10232. "click": function () {
  10233. U.MD.D.I.openApplication(str, obj, info);
  10234. }
  10235. }
  10236. break;
  10237. case "doc":
  10238. aTool = 6;
  10239. _iframe = $$("iframe", {
  10240. "frameborder": "no",
  10241. "border": "0",
  10242. "scrolling ": "no",
  10243. "style": {
  10244. "cssText": "border:0;width:100%;height:100%"
  10245. },
  10246. "src": "/Office/Word/WordEditArea.htm"
  10247. })
  10248. _box.appendChild(_iframe);
  10249. _box.appendChild(_jie);
  10250. _formdiv = new U.UF.UI.form(
  10251. "協同文檔",
  10252. _box, {
  10253. "id": "docs_Yu" + cid + stage + task + tool,
  10254. "style": {
  10255. "width": "90%",
  10256. "height": "90%",
  10257. "overflow": 'hidden'
  10258. },
  10259. "onresize": function () { }
  10260. }, {
  10261. closecallback: function () { }
  10262. }, {
  10263. "style": {
  10264. "height": "36px"
  10265. }
  10266. }).form; //創建窗體
  10267. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10268. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10269. })
  10270. _taskbar = {
  10271. "id": str + _formdiv.id,
  10272. "style": {
  10273. "backgroundImage": "url(/img/icon/doc.png)"
  10274. },
  10275. "name": "協同文檔",
  10276. "forms": _formdiv,
  10277. "click": function () {
  10278. U.MD.D.I.openApplication(str, obj, info);
  10279. }
  10280. }
  10281. break;
  10282. case "CocoPi":
  10283. aTool = 57;
  10284. _iframe = $$("iframe", {
  10285. "allowpaymentrequest": "allowpaymentrequest",
  10286. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10287. "webkitallowfullscreen": "",
  10288. "mozallowfullscreen": "",
  10289. "frameborder": "no",
  10290. "border": "0",
  10291. "scrolling ": "no",
  10292. "style": {
  10293. "cssText": "border:0;width:100%;height:100%"
  10294. },
  10295. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10296. })
  10297. _box.appendChild(_iframe);
  10298. _box.appendChild(_jie);
  10299. _formdiv = new U.UF.UI.form(
  10300. "CocoPi",
  10301. _box, {
  10302. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10303. "style": {
  10304. "width": "90%",
  10305. "height": "90%",
  10306. "overflow": 'hidden'
  10307. },
  10308. "onresize": function () { }
  10309. }, {
  10310. closecallback: function () { }
  10311. }, {
  10312. "style": {
  10313. "height": "36px"
  10314. }
  10315. }).form; //創建窗體
  10316. _taskbar = {
  10317. "id": str + _formdiv.id,
  10318. "style": {
  10319. "backgroundImage": "url(/img/icon/cocopi.png)"
  10320. },
  10321. "name": "CocoPi",
  10322. "forms": _formdiv,
  10323. "click": function () {
  10324. U.MD.D.I.openApplication(str, obj, info);
  10325. }
  10326. }
  10327. break;
  10328. }
  10329. if (_iframe) {
  10330. if (str == 'doc') {
  10331. _iframe = _formdiv.querySelector('iframe')
  10332. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10333. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10334. })
  10335. if (onloadListener) {
  10336. _iframe.contentDocument.location.reload()
  10337. } else {
  10338. _iframe.contentDocument.location.reload()
  10339. }
  10340. } else if (str == 'mind') {
  10341. _iframe = _formdiv.querySelector('iframe')
  10342. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10343. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10344. })
  10345. if (onloadListener) {
  10346. _iframe.contentDocument.location.reload()
  10347. } else {
  10348. _iframe.contentDocument.location.reload()
  10349. }
  10350. } else if (str == 'whiteboard') {
  10351. _iframe = _formdiv.querySelector('iframe')
  10352. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10353. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10354. })
  10355. // if (onloadListener) {
  10356. // try {
  10357. // _iframe.src += "?cocorobo="+new Date().getTime()
  10358. // _iframe.contentWindow.document.location.reload()
  10359. // } catch (error) {
  10360. // }
  10361. // } else {
  10362. // _iframe.contentDocument.location.reload()
  10363. // }
  10364. } else if (str == 'CocoPi') {
  10365. _iframe = _formdiv.querySelector('iframe')
  10366. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10367. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10368. })
  10369. if (onloadListener) {
  10370. _iframe.contentDocument.location.reload()
  10371. } else {
  10372. _iframe.contentDocument.location.reload()
  10373. }
  10374. } else {
  10375. _iframe.onload = () => { };
  10376. }
  10377. _jie.onclick = async () => {
  10378. let text = ''
  10379. let type = '2'
  10380. if (aTool == 1) {
  10381. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10382. type = '3'
  10383. } else if (aTool == 6) {
  10384. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10385. type = '1'
  10386. } else if (aTool == 3) {
  10387. text = await U.MD.D.I.getEditorContent(_iframe);
  10388. type = '2'
  10389. } else if (aTool == 57) {
  10390. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10391. type = '4'
  10392. }
  10393. _loading.style.display = 'flex'
  10394. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10395. }
  10396. }
  10397. //U.MD.D.I.openClick(str);
  10398. //如果有任務欄信息
  10399. // if (_taskbar) {
  10400. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10401. // }
  10402. }
  10403. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10404. var xmlhttp;
  10405. var Mac, Sn, DeviceId
  10406. if (window.XMLHttpRequest) {
  10407. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10408. xmlhttp = new XMLHttpRequest();
  10409. }
  10410. else {
  10411. // IE6, IE5 瀏覽器執行代碼
  10412. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10413. }
  10414. xmlhttp.onreadystatechange = function () {
  10415. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10416. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10417. // resolve(res.value[0][0].text);
  10418. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10419. }
  10420. }
  10421. }
  10422. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10423. xmlhttp.send();
  10424. }
  10425. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10426. var xmlhttp;
  10427. var Mac, Sn, DeviceId
  10428. if (window.XMLHttpRequest) {
  10429. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10430. xmlhttp = new XMLHttpRequest();
  10431. }
  10432. else {
  10433. // IE6, IE5 瀏覽器執行代碼
  10434. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10435. }
  10436. xmlhttp.onreadystatechange = function () {
  10437. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10438. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10439. // resolve(res.value[0][0].text);
  10440. if (type == '2') {
  10441. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10442. } else if (type == '3') {
  10443. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10444. } else if (type == '4') {
  10445. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10446. }
  10447. } else {
  10448. if (type == '2') {
  10449. iframe.contentWindow.editor.minder.importData('json', '')
  10450. } else if (type == '3') {
  10451. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10452. } else if (type == '4') {
  10453. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10454. }
  10455. }
  10456. }
  10457. }
  10458. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10459. xmlhttp.send();
  10460. }
  10461. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10462. var xmlhttp;
  10463. var Mac, Sn, DeviceId
  10464. if (window.XMLHttpRequest) {
  10465. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10466. xmlhttp = new XMLHttpRequest();
  10467. }
  10468. else {
  10469. // IE6, IE5 瀏覽器執行代碼
  10470. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10471. }
  10472. xmlhttp.onreadystatechange = function () {
  10473. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10474. if (xmlhttp.response) {
  10475. // resolve(res.value[0][0].text);
  10476. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10477. // $(fileInput).val('');
  10478. // });
  10479. span.innerHTML = '上傳成功'
  10480. setTimeout(() => {
  10481. loading.style.display = 'none'
  10482. }, 1000);
  10483. }
  10484. }
  10485. }
  10486. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10487. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10488. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10489. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10490. // 設置請求頭,表示請求體的編碼格式
  10491. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10492. // 設置請求體,使用url-encoded格式的數據
  10493. }
  10494. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10495. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10496. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10497. _userinfo = US.userInfo, //登錄用戶信息
  10498. _userid = US.userInfo.userid //登錄用戶id
  10499. let _iframe;
  10500. let _cid = cid,
  10501. _stage = stage,
  10502. _task = task,
  10503. _tool = tool;
  10504. var _jie = $$("div", {
  10505. "style": {
  10506. "position": "absolute",
  10507. "bottom": "50px",
  10508. "right": "50px",
  10509. "zIndex": "9999",
  10510. "backgroundColor": "#2268bc",
  10511. "color": "#fff",
  10512. "padding": "12px 20px",
  10513. "cursor": "pointer",
  10514. "borderRadius": "4px",
  10515. },
  10516. "innerHTML": "提交作業"
  10517. })
  10518. let aTool = ''
  10519. let _loading = document.createElement('div')
  10520. _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;"
  10521. // _loading.id = "";
  10522. let _lchild = document.createElement('div')
  10523. let _limg = document.createElement('img')
  10524. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10525. _limg.style = "width: 26px;margin-right: 10px;"
  10526. _lchild.appendChild(_limg)
  10527. let _lspan = document.createElement('span')
  10528. _lspan.innerHTML = "上傳中..."
  10529. _lchild.appendChild(_lspan)
  10530. _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%);"
  10531. _loading.appendChild(_lchild)
  10532. var _box = $$('div', {
  10533. "style": {
  10534. "position": "relative",
  10535. "width": "100%",
  10536. "height": "100%",
  10537. },
  10538. })
  10539. _box.appendChild(_loading)
  10540. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10541. switch (str) {
  10542. case "CocoPi":
  10543. aTool = 57;
  10544. _iframe = $$("iframe", {
  10545. "allowpaymentrequest": "allowpaymentrequest",
  10546. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10547. "webkitallowfullscreen": "",
  10548. "mozallowfullscreen": "",
  10549. "frameborder": "no",
  10550. "border": "0",
  10551. "scrolling ": "no",
  10552. "style": {
  10553. "cssText": "border:0;width:100%;height:100%"
  10554. },
  10555. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10556. })
  10557. _box.appendChild(_iframe);
  10558. _box.appendChild(_jie);
  10559. _formdiv = new U.UF.UI.form(
  10560. "CocoPi",
  10561. _box, {
  10562. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10563. "style": {
  10564. "width": "90%",
  10565. "height": "90%",
  10566. "overflow": 'hidden'
  10567. },
  10568. "onresize": function () { }
  10569. }, {
  10570. closecallback: function () { }
  10571. }, {
  10572. "style": {
  10573. "height": "36px"
  10574. }
  10575. }).form; //創建窗體
  10576. _taskbar = {
  10577. "id": str + _formdiv.id,
  10578. "style": {
  10579. "backgroundImage": "url(/img/icon/cocopi.png)"
  10580. },
  10581. "name": "CocoPi",
  10582. "forms": _formdiv,
  10583. "click": function () {
  10584. U.MD.D.I.openApplication(str, obj, info);
  10585. }
  10586. }
  10587. break;
  10588. }
  10589. if (_iframe) {
  10590. if (str == 'CocoPi') {
  10591. _iframe = _formdiv.querySelector('iframe')
  10592. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10593. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10594. })
  10595. if (onloadListener) {
  10596. _iframe.contentDocument.location.reload()
  10597. } else {
  10598. _iframe.contentDocument.location.reload()
  10599. }
  10600. }
  10601. _jie.onclick = async () => {
  10602. let text = ''
  10603. if (aTool == 57) {
  10604. text = _iframe.contentWindow.getLoadXmlStr()
  10605. }
  10606. _loading.style.display = 'flex'
  10607. console.log(_loading);
  10608. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10609. _loading.style.display = 'none'
  10610. let _div = document.createElement('div')
  10611. _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;"
  10612. let _inner = document.createElement('div')
  10613. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10614. _inner.innerHTML = "上傳成功"
  10615. _div.appendChild(_inner)
  10616. _iframe.contentWindow.window.document.body.appendChild(_div)
  10617. _div.onclick = () => {
  10618. _iframe.contentWindow.window.document.body.removeChild(_div)
  10619. }
  10620. setTimeout(() => {
  10621. _iframe.contentWindow.window.document.body.removeChild(_div)
  10622. }, 1000);
  10623. }, [], { "type": "POST", "withCredentials": true });
  10624. }
  10625. }
  10626. }
  10627. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10628. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10629. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10630. _userid = student.userid, //登錄用戶id
  10631. _username = student.student //用戶名字
  10632. let _iframe;
  10633. let _cid = cid,
  10634. _stage = stage,
  10635. _task = task,
  10636. _tool = tool;
  10637. var _jie = $$("div", {
  10638. "style": {
  10639. "position": "absolute",
  10640. "bottom": "50px",
  10641. "right": "50px",
  10642. "zIndex": "9999",
  10643. "backgroundColor": "#2268bc",
  10644. "color": "#fff",
  10645. "padding": "12px 20px",
  10646. "cursor": "pointer",
  10647. "borderRadius": "4px",
  10648. },
  10649. "innerHTML": "提交作業"
  10650. })
  10651. let aTool = ''
  10652. let _loading = document.createElement('div')
  10653. _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;"
  10654. // _loading.id = "";
  10655. let _lchild = document.createElement('div')
  10656. let _limg = document.createElement('img')
  10657. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10658. _limg.style = "width: 26px;margin-right: 10px;"
  10659. _lchild.appendChild(_limg)
  10660. let _lspan = document.createElement('span')
  10661. _lspan.innerHTML = "上傳中..."
  10662. _lchild.appendChild(_lspan)
  10663. _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%);"
  10664. _loading.appendChild(_lchild)
  10665. var _box = $$('div', {
  10666. "style": {
  10667. "position": "relative",
  10668. "width": "100%",
  10669. "height": "100%",
  10670. },
  10671. })
  10672. _box.appendChild(_loading)
  10673. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10674. switch (str) {
  10675. case "CocoPi":
  10676. aTool = 57;
  10677. _iframe = $$("iframe", {
  10678. "allowpaymentrequest": "allowpaymentrequest",
  10679. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10680. "webkitallowfullscreen": "",
  10681. "mozallowfullscreen": "",
  10682. "frameborder": "no",
  10683. "border": "0",
  10684. "scrolling ": "no",
  10685. "style": {
  10686. "cssText": "border:0;width:100%;height:100%"
  10687. },
  10688. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10689. })
  10690. _box.appendChild(_iframe);
  10691. _box.appendChild(_jie);
  10692. _formdiv = new U.UF.UI.form(
  10693. "CocoPi-" + _username,
  10694. _box, {
  10695. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10696. "style": {
  10697. "width": "90%",
  10698. "height": "90%",
  10699. "overflow": 'hidden'
  10700. },
  10701. "onresize": function () { }
  10702. }, {
  10703. closecallback: function () { }
  10704. }, {
  10705. "style": {
  10706. "height": "36px"
  10707. }
  10708. }).form; //創建窗體
  10709. _taskbar = {
  10710. "id": str + _formdiv.id,
  10711. "style": {
  10712. "backgroundImage": "url(/img/icon/cocopi.png)"
  10713. },
  10714. "name": "CocoPi",
  10715. "forms": _formdiv,
  10716. "click": function () {
  10717. U.MD.D.I.openApplication(str, obj, info);
  10718. }
  10719. }
  10720. break;
  10721. }
  10722. if (_iframe) {
  10723. if (str == 'CocoPi') {
  10724. _iframe = _formdiv.querySelector('iframe')
  10725. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10726. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10727. })
  10728. if (onloadListener) {
  10729. _iframe.contentDocument.location.reload()
  10730. } else {
  10731. _iframe.contentDocument.location.reload()
  10732. }
  10733. }
  10734. _jie.onclick = async () => {
  10735. let text = ''
  10736. if (aTool == 57) {
  10737. text = _iframe.contentWindow.getLoadXmlStr()
  10738. }
  10739. _loading.style.display = 'flex'
  10740. console.log(_loading);
  10741. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10742. _loading.style.display = 'none'
  10743. let _div = document.createElement('div')
  10744. _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;"
  10745. let _inner = document.createElement('div')
  10746. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10747. _inner.innerHTML = "上傳成功"
  10748. _div.appendChild(_inner)
  10749. _iframe.contentWindow.window.document.body.appendChild(_div)
  10750. _div.onclick = () => {
  10751. _iframe.contentWindow.window.document.body.removeChild(_div)
  10752. }
  10753. setTimeout(() => {
  10754. _iframe.contentWindow.window.document.body.removeChild(_div)
  10755. }, 1000);
  10756. }, [], { "type": "POST", "withCredentials": true });
  10757. }
  10758. }
  10759. }
  10760. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10761. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10762. if (res.value[0].length > 0) {
  10763. if (atool == 57) {
  10764. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10765. }
  10766. } else {
  10767. if (atool == 57) {
  10768. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10769. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10770. }
  10771. }
  10772. }, [], { "type": "POST", "withCredentials": true });
  10773. }
  10774. U.MD.D.addOp = function(text,type,time){
  10775. var userInfo = US.userInfo;
  10776. if(Object.keys(userInfo).length !== 0){
  10777. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10778. }, [], { "type": "POST", "withCredentials": true });
  10779. }
  10780. }