DeskTop.js 687 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911
  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. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  417. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  434. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教師桌面圖標的全局變量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教師桌面圖標的全局變量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龍華中心小學教師桌面圖標的全局變量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院實小教師桌面圖標的全局變量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "評測看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院實小教師桌面圖標的全局變量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小學教師桌面圖標的全局變量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小學學生桌面圖標的全局變量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //ricoh
  694. U.MD.D.I.ricohteacherDeskIcon = [
  695. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  696. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  697. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  698. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  699. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  700. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  701. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  702. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  703. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  704. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  705. ];
  706. //hk
  707. U.MD.D.I.hkStudentDeskIcon = [
  708. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  709. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  710. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  711. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. ];
  715. //hk
  716. U.MD.D.I.hkaceteacherDeskIcon = [
  717. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  718. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  719. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  720. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  721. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  722. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  723. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  724. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  725. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  726. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  727. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  728. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  729. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  730. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  733. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  734. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  735. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  736. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  737. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  738. ];
  739. //hk
  740. U.MD.D.I.hkaceStudentDeskIcon = [
  741. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  743. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  744. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSteacherDeskIcon = [
  750. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  751. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  752. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  753. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  754. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  755. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  756. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  757. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  758. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  759. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  760. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  761. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  762. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  763. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  766. ];
  767. //香海正覺蓮社佛教正覺中學
  768. U.MD.D.I.hkZJLSStudentDeskIcon = [
  769. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  773. ];
  774. //雲海
  775. U.MD.D.I.yunhaiTeacherDeskIcon = [
  776. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  777. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  778. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  779. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  780. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  783. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  784. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  785. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  786. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  787. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  788. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  789. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  790. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  792. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanTeacherDeskIcon = [
  797. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  805. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  806. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  807. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  808. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  809. ];
  810. //福田
  811. U.MD.D.I.heyuanAdminDeskIcon = [
  812. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  813. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  814. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  815. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  816. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  817. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  818. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  820. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  822. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  823. ];
  824. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  825. U.MD.D.I.szherTeacherDeskIcon = [
  826. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  827. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  828. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  829. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  830. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  831. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  832. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  833. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  834. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  836. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  837. ];
  838. //dsei
  839. U.MD.D.I.dseiTeacherDeskIcon = [
  840. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  841. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  842. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  843. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  844. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  845. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  846. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  847. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  848. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  849. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  850. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  851. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  852. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  853. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  854. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  855. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  856. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  857. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  858. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  859. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  860. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  861. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  862. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  863. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  864. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  865. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  866. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  867. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  868. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  869. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  870. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  871. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  872. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  873. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  874. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  875. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  876. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  877. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  878. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  880. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  881. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  882. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  883. ];
  884. //dsei
  885. U.MD.D.I.dseiAdminDeskIcon = [
  886. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  887. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  888. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  889. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  890. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  891. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  892. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  893. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  894. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  895. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  896. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  897. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  898. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  899. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  900. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  901. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  902. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  903. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  904. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  905. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  906. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  907. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  908. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  909. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  910. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  911. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  912. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  913. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  914. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  915. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  916. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  917. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  918. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  919. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  920. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  921. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  922. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  923. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  926. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  927. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  928. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  929. ];
  930. //dsei
  931. U.MD.D.I.dseiStudentDeskIcon = [
  932. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  936. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  938. ];
  939. //未來教育基地
  940. U.MD.D.I.szjkyTeacherDeskIcon = [
  941. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  942. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  943. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  948. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  949. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  950. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  951. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  952. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  953. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  954. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  955. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  957. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  958. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  959. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  960. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  961. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  962. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  963. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  964. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  965. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  966. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  967. ];
  968. //未來教育基地
  969. U.MD.D.I.szjkyAdminDeskIcon = [
  970. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  971. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  972. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  973. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  974. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  975. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  976. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  977. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  978. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  979. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  980. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  981. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  982. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  983. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  984. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  986. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  987. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  988. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  989. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  990. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  991. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  992. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  993. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  994. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  995. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  996. ];
  997. //未來教育基地
  998. U.MD.D.I.szjkyStudentDeskIcon = [
  999. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1004. ];
  1005. //成華教育局
  1006. U.MD.D.I.chjyjTeacherDeskIcon = [
  1007. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1018. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1021. ];
  1022. //成華教育局chjyj
  1023. U.MD.D.I.chjyjAdminDeskIcon = [
  1024. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1025. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1029. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1030. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1031. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1032. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1033. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1034. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1035. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1036. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //成華教育局chjyj
  1041. U.MD.D.I.chjyjStudentDeskIcon = [
  1042. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1043. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1044. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1045. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcStudentDeskIcon = [
  1049. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1050. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1051. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1052. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1053. ];
  1054. //tpc
  1055. U.MD.D.I.tpcTeacherDeskIcon = [
  1056. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1057. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1058. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1061. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1062. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1063. ];
  1064. //tpc
  1065. U.MD.D.I.tpcAdminDeskIcon = [
  1066. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1067. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1068. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1069. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1070. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1071. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1072. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1073. ];
  1074. //THU-IOE
  1075. U.MD.D.I.thuioeTeacherDeskIcon = [
  1076. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1077. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1079. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1080. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1081. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1082. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1083. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1084. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1085. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1086. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1087. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1088. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1089. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1090. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1091. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1092. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1093. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1094. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1095. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1096. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1097. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1098. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1099. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1100. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1101. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1102. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1103. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1104. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1105. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1106. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1107. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1108. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1109. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1110. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1111. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1113. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1114. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1115. ];
  1116. //THU-IOE
  1117. U.MD.D.I.thuioeStudentDeskIcon = [
  1118. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1119. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1120. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1121. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylTeacherDeskIcon = [
  1125. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1126. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1127. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1128. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1129. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1130. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1131. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1132. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1133. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1134. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1135. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1136. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1137. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1138. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1141. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1142. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1143. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1144. ];
  1145. //jccssyl
  1146. U.MD.D.I.jccssylStudentDeskIcon = [
  1147. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1148. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1149. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1150. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleTeacherDeskIcon = [
  1154. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1155. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1156. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1157. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1158. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1159. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1160. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1161. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1162. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1163. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1164. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1165. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1166. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1167. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1168. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1170. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1171. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1172. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1173. ];
  1174. //cale
  1175. U.MD.D.I.caleStudentDeskIcon = [
  1176. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1177. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1178. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1179. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1180. ];
  1181. //lqwmsgzs
  1182. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1183. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1184. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1185. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1186. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1187. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1188. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1189. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1190. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1191. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1192. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1193. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1194. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1195. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1196. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1197. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1198. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1199. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1200. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1201. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1202. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1203. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1204. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1205. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1206. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1207. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1208. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1209. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1210. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1211. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1212. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1213. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1214. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1215. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1216. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1217. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1218. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1220. ];
  1221. //lqwmsgzs
  1222. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1223. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1227. ];
  1228. //鹽田區幼兒園
  1229. U.MD.D.I.ytyTeacherDeskIcon = [
  1230. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1231. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1233. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1234. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1235. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1236. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1237. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1238. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1239. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1240. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1241. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1242. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1243. ];
  1244. //鹽田區幼兒園
  1245. U.MD.D.I.ytyStudentDeskIcon = [
  1246. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1247. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. ];
  1250. //scnuai
  1251. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1252. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1253. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1254. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1255. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1256. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1257. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1258. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1259. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1260. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1261. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1262. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1263. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1264. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1267. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1268. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1269. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1270. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1271. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1274. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1275. ];
  1276. //scnuai
  1277. U.MD.D.I.scnuaiAdminDeskIcon = [
  1278. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1279. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1280. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1281. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1282. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1283. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1284. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1285. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1286. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1287. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1288. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1289. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1290. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1291. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1293. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1294. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1295. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1296. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1297. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1298. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1299. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1300. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1301. ];
  1302. //scnuai
  1303. U.MD.D.I.scnuaiStudentDeskIcon = [
  1304. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1305. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1306. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1307. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizteacherDeskIcon = [
  1311. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1312. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1313. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1314. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1315. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1316. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1317. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1318. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1319. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1320. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1321. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1322. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1323. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1324. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1325. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1327. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1328. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1329. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1330. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1331. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1332. ];
  1333. //cocobiz
  1334. U.MD.D.I.cocobizStudentDeskIcon = [
  1335. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1336. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1337. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1338. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1344. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1345. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1346. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1347. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1348. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1349. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1350. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1351. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1353. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1354. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1355. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1356. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1357. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1358. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1361. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1362. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1363. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1364. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1365. ];
  1366. //xxzjky
  1367. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1368. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1369. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1370. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1371. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //nsfx
  1376. U.MD.D.I.nsfxTeacherDeskIcon = [
  1377. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1385. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1386. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1387. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1388. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1392. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1393. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1394. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1395. ];
  1396. //nsfx
  1397. U.MD.D.I.nsfxStudentDeskIcon = [
  1398. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1399. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1400. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1401. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaTeacherDeskIcon = [
  1405. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. // { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1408. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1409. // { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1412. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1414. // { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1415. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1416. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1417. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1418. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1419. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1420. ];
  1421. //stia
  1422. U.MD.D.I.stiaStudentDeskIcon = [
  1423. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1424. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1425. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //szdjg
  1429. U.MD.D.I.szdjgTeacherDeskIcon = [
  1430. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. ];
  1433. //szdjg
  1434. U.MD.D.I.szdjgStudentDeskIcon = [
  1435. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607TeacherDeskIcon = [
  1442. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1443. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1445. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1446. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1447. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1448. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1449. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1450. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1451. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1452. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1454. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1455. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1456. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1457. ];
  1458. //010607
  1459. U.MD.D.I.x010607StudentDeskIcon = [
  1460. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1461. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1462. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1463. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.x010608TeacherDeskIcon = [
  1467. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1468. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1470. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1471. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1474. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1475. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1476. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1477. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1478. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1481. ];
  1482. //010608
  1483. U.MD.D.I.x010608StudentDeskIcon = [
  1484. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1487. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1488. ];
  1489. //xhly
  1490. U.MD.D.I.xhlyTeacherDeskIcon = [
  1491. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1492. ];
  1493. //010608
  1494. U.MD.D.I.xhlyStudentDeskIcon = [
  1495. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. ];
  1497. //北師大
  1498. U.MD.D.I.BSDNSteacherDeskIcon = [
  1499. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1500. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1501. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1502. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1503. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1504. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1505. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1506. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1507. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1508. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. ];
  1511. //北師大
  1512. U.MD.D.I.BSDNSstudentDeskIcon = [
  1513. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1520. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1535. ];
  1536. //CUHK_EDU
  1537. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1538. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //010503
  1544. U.MD.D.I.x010503TeacherDeskIcon = [
  1545. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1548. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1549. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1553. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1554. ];
  1555. //010503
  1556. U.MD.D.I.x010503StudentDeskIcon = [
  1557. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. ];
  1562. //SPROUT Lab
  1563. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1564. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1565. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1566. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1567. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1568. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1571. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1573. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1574. ];
  1575. //SPROUT Lab
  1576. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1577. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1579. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1580. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1581. ];
  1582. //010204
  1583. U.MD.D.I.x010204TeacherDeskIcon = [
  1584. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1585. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1586. ];
  1587. //010204
  1588. U.MD.D.I.x010204StudentDeskIcon = [
  1589. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //trail
  1595. U.MD.D.I.trailTeacherDeskIcon = [
  1596. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1599. ];
  1600. //trail
  1601. U.MD.D.I.trailStudentDeskIcon = [
  1602. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //010504
  1608. U.MD.D.I.x010504TeacherDeskIcon = [
  1609. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1612. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1613. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1616. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1618. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1619. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1620. ];
  1621. //010504
  1622. U.MD.D.I.x010504StudentDeskIcon = [
  1623. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1624. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1625. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. ];
  1628. //SCNUET
  1629. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1630. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1631. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1635. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1636. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1637. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1638. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1639. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1640. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1641. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1642. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1643. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1644. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1646. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1647. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1648. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1649. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1650. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1651. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1652. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1653. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1654. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1655. ];
  1656. //SCNUET
  1657. U.MD.D.I.SCNUETAdminDeskIcon = [
  1658. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1659. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1660. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1661. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1662. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1663. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1664. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1665. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1666. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1667. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1668. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1669. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1670. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1671. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1672. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1673. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1674. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1675. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1676. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1677. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1678. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1679. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1680. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1681. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1682. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1683. ];
  1684. //SCNUET
  1685. U.MD.D.I.SCNUETStudentDeskIcon = [
  1686. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1688. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1689. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1690. ];
  1691. //x020201
  1692. U.MD.D.I.x020201TeacherDeskIcon = [
  1693. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1694. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1695. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1696. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1697. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1698. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1699. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1700. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1701. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1703. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1704. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1705. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1706. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1707. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1708. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1709. ];
  1710. //x020201
  1711. U.MD.D.I.x020201AdminDeskIcon = [
  1712. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1713. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1714. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1717. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1718. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1719. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1720. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1721. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1722. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1723. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1724. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1725. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1726. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1727. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1728. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1729. ];
  1730. //020201
  1731. U.MD.D.I.x020201StudentDeskIcon = [
  1732. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1734. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1735. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1736. ];
  1737. //010611
  1738. U.MD.D.I.x010611TeacherDeskIcon = [
  1739. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1740. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1744. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. ];
  1749. //010611
  1750. U.MD.D.I.x010611StudentDeskIcon = [
  1751. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1755. ];
  1756. //tianyuan
  1757. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1758. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1759. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1761. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1763. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1764. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1765. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1766. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1767. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1768. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1769. ];
  1770. //010611
  1771. U.MD.D.I.tianyuanStudentDeskIcon = [
  1772. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1773. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1774. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1775. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1776. ];
  1777. //320101
  1778. U.MD.D.I.x320101TeacherDeskIcon = [
  1779. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1780. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1781. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1782. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1783. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1784. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1785. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1786. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1787. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1788. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1789. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1790. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1791. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1792. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1793. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1794. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1795. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1796. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1797. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1798. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1799. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1800. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1801. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1802. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1803. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1804. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1805. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1806. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1807. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1808. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1809. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1810. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1811. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1812. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1813. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1814. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1815. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1816. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1817. ];
  1818. //320101
  1819. U.MD.D.I.x320101StudentDeskIcon = [
  1820. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1821. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1822. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1823. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1824. ];
  1825. //szsy
  1826. U.MD.D.I.szsyTeacherDeskIcon = [
  1827. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1828. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1829. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1830. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1834. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1835. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1836. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1837. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1838. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1839. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1840. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1841. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1842. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1843. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1844. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1845. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1846. ];
  1847. //szsy
  1848. U.MD.D.I.szsyStudentDeskIcon = [
  1849. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1850. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1851. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1852. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1853. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1854. ];
  1855. //010404
  1856. U.MD.D.I.x010404TeacherDeskIcon = [
  1857. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1858. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1859. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1860. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1861. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1862. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1863. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1864. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1865. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1866. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1867. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1868. ];
  1869. //010404
  1870. U.MD.D.I.x010404StudentDeskIcon = [
  1871. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1872. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1873. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1874. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1875. ];
  1876. //#region 桌面初始化a
  1877. /**
  1878. * 初始化桌面的起始函數
  1879. *
  1880. */
  1881. U.MD.D.I.init = function () {
  1882. if ($("#U_MD_D_K")[0]) {
  1883. //初始化桌面圖標
  1884. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1885. // var clickUrl = ':12588/requestIp.php';
  1886. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1887. // U.MD.D.I.Ip = data;
  1888. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1889. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1890. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1891. // })
  1892. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1893. // })
  1894. }
  1895. }
  1896. /**
  1897. * 模式切換
  1898. *
  1899. */
  1900. U.MD.D.I.ModeCheck = function (type) {
  1901. if (US.Config.type == type) {
  1902. return
  1903. }
  1904. US.Config.type = type
  1905. $('.U_PBL_Check .active')[0].className = ''
  1906. if (type == 1) {
  1907. $('.U_PBL_Check div')[0].className = 'active'
  1908. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1909. } else {
  1910. $('.U_PBL_Check div')[1].className = 'active'
  1911. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1912. }
  1913. //初始化桌面圖標
  1914. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1915. if (type == 2) {
  1916. U.MD.D.I.openApplication("project")
  1917. }
  1918. }
  1919. /**
  1920. * 隱藏任務欄
  1921. *
  1922. * @param {element} 桌面元素
  1923. */
  1924. U.MD.D.I.hiddenTaskbar = function (el) {
  1925. //任務欄位置變小
  1926. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1927. //桌面的位置變大
  1928. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1929. }
  1930. /**
  1931. * 隱藏任務欄
  1932. *
  1933. * @param {element} 桌面元素
  1934. */
  1935. U.MD.D.I.hiddenTaskbarout = function (el) {
  1936. //任務欄位置變小
  1937. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1938. //任務欄位置變化
  1939. U.selectEl(el).css({ "bottom": "-60px" });
  1940. //桌面的位置變大
  1941. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1942. }
  1943. }
  1944. /**
  1945. * 初始化打印桌面圖標
  1946. *
  1947. * @param {element} 桌面元素
  1948. */
  1949. U.MD.D.I.initDesktopIcons = function (el, type) {
  1950. var i, //用於循環
  1951. _content, //桌面圖標元素
  1952. _iconcontent, //桌面圖標元素
  1953. _frag = $$("frag"), //定義一個碎片元素
  1954. _type = US.userInfo.type,
  1955. _org = US.userInfo.org,
  1956. _oid = US.userInfo.organizeid,
  1957. _role = US.userInfo.role,
  1958. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  1959. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  1960. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  1961. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  1962. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  1963. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  1964. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  1965. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1966. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1967. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1968. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  1969. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  1970. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  1971. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  1972. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  1973. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  1974. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  1975. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  1976. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  1977. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  1978. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  1979. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  1980. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  1981. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  1982. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1983. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1984. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  1985. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  1986. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  1987. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  1988. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  1989. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  1990. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1991. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1992. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1993. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1994. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1995. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1996. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1997. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1998. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1999. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  2000. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2001. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2002. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2003. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2004. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  2005. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2006. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2007. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2008. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2009. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2010. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2011. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2012. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2013. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2014. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2015. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2016. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  2017. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2018. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2019. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2020. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2021. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2022. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2023. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2024. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2025. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2026. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2027. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2028. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  2029. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  2030. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  2031. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  2032. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2033. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2034. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2035. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2036. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2037. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2038. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2039. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2040. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2041. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2042. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2043. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2044. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2045. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2046. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2047. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2048. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2049. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2050. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2051. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2052. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2053. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2054. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2055. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2056. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2057. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2058. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2059. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2060. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2061. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2062. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2063. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2064. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2065. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2066. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2067. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2068. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2069. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2070. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2071. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2072. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2073. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2074. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2075. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2076. 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'];
  2077. 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'];
  2078. //清楚桌面圖標
  2079. el.innerHTML = "";
  2080. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2081. _teacherDesktopIconInfo.push(
  2082. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2083. { "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)" } },
  2084. )
  2085. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2086. }
  2087. 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') {
  2088. _teacherDesktopIconInfo.push(
  2089. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2090. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2091. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2092. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2093. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2094. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2095. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2096. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2097. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2098. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2099. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2100. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2101. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2102. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2103. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2104. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2105. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2106. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2107. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2108. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2109. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2110. )
  2111. }
  2112. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  2113. _teacherDesktopIconInfo.push(
  2114. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2115. )
  2116. }
  2117. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2118. // _teacherDesktopIconInfo.push(
  2119. // )
  2120. // }
  2121. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2122. _teacherDesktopIconInfo.push(
  2123. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2124. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2125. )
  2126. }
  2127. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2128. _teacherDesktopIconInfo.push(
  2129. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2130. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2131. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2132. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2133. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2134. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2135. )
  2136. _studentDesktopIconInfo.push(
  2137. )
  2138. }
  2139. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2140. _teacherDesktopIconInfo.push(
  2141. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2142. )
  2143. _studentDesktopIconInfo.push(
  2144. )
  2145. }
  2146. //010606 組織
  2147. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2148. _teacherDesktopIconInfo.push(
  2149. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2150. )
  2151. _studentDesktopIconInfo.push(
  2152. )
  2153. }
  2154. //麒麟二中 和 民新小學
  2155. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2156. _teacherDesktopIconInfo.push(
  2157. )
  2158. }
  2159. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2160. _teacherDesktopIconInfo.push(
  2161. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2162. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2163. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2164. )
  2165. }
  2166. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2167. _hkTeacherDeskIconInfo.push(
  2168. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2169. )
  2170. }
  2171. //北師大附中(010601)
  2172. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2173. // _teacherDesktopIconInfo.push(
  2174. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2175. // )
  2176. // _studentDesktopIconInfo.push(
  2177. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2178. // )
  2179. // }
  2180. //樂善堂余近卿中學
  2181. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2182. _teacherDesktopIconInfo.push(
  2183. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2184. )
  2185. }
  2186. // Education Artificial Intelligence
  2187. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2188. _teacherDesktopIconInfo.push(
  2189. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2190. )
  2191. }
  2192. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2193. _teacherDesktopIconInfo.push(
  2194. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2195. )
  2196. }
  2197. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2198. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2199. _teacherDesktopIconInfo.push(
  2200. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2201. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2202. )
  2203. }
  2204. //麒麟二中
  2205. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2206. _studentDesktopIconInfo.push(
  2207. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2208. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2209. )
  2210. }
  2211. //萬科雙語
  2212. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2213. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2214. if (el.Name == '項目管理') {
  2215. el.Name = 'PBL項目'
  2216. }
  2217. return el
  2218. })
  2219. _studentDesktopIconInfo3.push(
  2220. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2221. )
  2222. }
  2223. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2224. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2225. return el.Name != '魔盒識字' && el.Name != '24點'
  2226. })
  2227. }
  2228. 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) {
  2229. _studentDesktopIconInfo.push(
  2230. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2231. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2232. )
  2233. }
  2234. //循環創建桌面圖標
  2235. if (type == 1) {
  2236. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2237. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2238. _content = $$("div", {
  2239. className: "U_MD_D_KO",
  2240. "onmousedown": U.UF.C.closure(function (obj) {
  2241. //防止拖動圖標即打開了桌面應用
  2242. U.MD.D.click(this, obj);
  2243. }, [_studentDesktopIconInfo[i]]),
  2244. "onclick": U.UF.C.closure(function (obj) {
  2245. //防止拖動圖標即打開了桌面應用
  2246. U.MD.D.click(this, obj);
  2247. }, [_studentDesktopIconInfo[i]])
  2248. }, _frag); //
  2249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2252. }
  2253. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2254. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2255. _content = $$("div", {
  2256. className: "U_MD_D_KO",
  2257. "onmousedown": U.UF.C.closure(function (obj) {
  2258. //防止拖動圖標即打開了桌面應用
  2259. U.MD.D.click(this, obj);
  2260. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2261. "onclick": U.UF.C.closure(function (obj) {
  2262. //防止拖動圖標即打開了桌面應用
  2263. U.MD.D.click(this, obj);
  2264. }, [_hkZJLSStudentDeskIconInfo[i]])
  2265. }, _frag); //
  2266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2269. } //
  2270. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2271. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2272. _content = $$("div", {
  2273. className: "U_MD_D_KO",
  2274. "onmousedown": U.UF.C.closure(function (obj) {
  2275. //防止拖動圖標即打開了桌面應用
  2276. U.MD.D.click(this, obj);
  2277. }, [_ytyStudentDeskIconInfo[i]]),
  2278. "onclick": U.UF.C.closure(function (obj) {
  2279. //防止拖動圖標即打開了桌面應用
  2280. U.MD.D.click(this, obj);
  2281. }, [_ytyStudentDeskIconInfo[i]])
  2282. }, _frag); //
  2283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2286. } //
  2287. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2288. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2289. _content = $$("div", {
  2290. className: "U_MD_D_KO",
  2291. "onmousedown": U.UF.C.closure(function (obj) {
  2292. //防止拖動圖標即打開了桌面應用
  2293. U.MD.D.click(this, obj);
  2294. }, [_jccssylStudentDeskIconInfo[i]]),
  2295. "onclick": U.UF.C.closure(function (obj) {
  2296. //防止拖動圖標即打開了桌面應用
  2297. U.MD.D.click(this, obj);
  2298. }, [_jccssylStudentDeskIconInfo[i]])
  2299. }, _frag); //
  2300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2303. }
  2304. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2305. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2306. _content = $$("div", {
  2307. className: "U_MD_D_KO",
  2308. "onmousedown": U.UF.C.closure(function (obj) {
  2309. //防止拖動圖標即打開了桌面應用
  2310. U.MD.D.click(this, obj);
  2311. }, [_scnuaiStudentDeskIconInfo[i]]),
  2312. "onclick": U.UF.C.closure(function (obj) {
  2313. //防止拖動圖標即打開了桌面應用
  2314. U.MD.D.click(this, obj);
  2315. }, [_scnuaiStudentDeskIconInfo[i]])
  2316. }, _frag); //
  2317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2320. }
  2321. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2322. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2323. _content = $$("div", {
  2324. className: "U_MD_D_KO",
  2325. "onmousedown": U.UF.C.closure(function (obj) {
  2326. //防止拖動圖標即打開了桌面應用
  2327. U.MD.D.click(this, obj);
  2328. }, [_caleStudentDeskIconInfo[i]]),
  2329. "onclick": U.UF.C.closure(function (obj) {
  2330. //防止拖動圖標即打開了桌面應用
  2331. U.MD.D.click(this, obj);
  2332. }, [_caleStudentDeskIconInfo[i]])
  2333. }, _frag); //
  2334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2337. }
  2338. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2339. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2340. _content = $$("div", {
  2341. className: "U_MD_D_KO",
  2342. "onmousedown": U.UF.C.closure(function (obj) {
  2343. //防止拖動圖標即打開了桌面應用
  2344. U.MD.D.click(this, obj);
  2345. }, [_thuioeStudentDeskIconInfo[i]]),
  2346. "onclick": U.UF.C.closure(function (obj) {
  2347. //防止拖動圖標即打開了桌面應用
  2348. U.MD.D.click(this, obj);
  2349. }, [_thuioeStudentDeskIconInfo[i]])
  2350. }, _frag); //
  2351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2354. }
  2355. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2356. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2357. _content = $$("div", {
  2358. className: "U_MD_D_KO",
  2359. "onmousedown": U.UF.C.closure(function (obj) {
  2360. //防止拖動圖標即打開了桌面應用
  2361. U.MD.D.click(this, obj);
  2362. }, [_tpcStudentDeskIconInfo[i]]),
  2363. "onclick": U.UF.C.closure(function (obj) {
  2364. //防止拖動圖標即打開了桌面應用
  2365. U.MD.D.click(this, obj);
  2366. }, [_tpcStudentDeskIconInfo[i]])
  2367. }, _frag); //
  2368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2371. } //
  2372. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2373. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2374. _content = $$("div", {
  2375. className: "U_MD_D_KO",
  2376. "onmousedown": U.UF.C.closure(function (obj) {
  2377. //防止拖動圖標即打開了桌面應用
  2378. U.MD.D.click(this, obj);
  2379. }, [_chjyjStudentDeskIconInfo[i]]),
  2380. "onclick": U.UF.C.closure(function (obj) {
  2381. //防止拖動圖標即打開了桌面應用
  2382. U.MD.D.click(this, obj);
  2383. }, [_chjyjStudentDeskIconInfo[i]])
  2384. }, _frag); //
  2385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2388. }
  2389. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2390. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2391. _content = $$("div", {
  2392. className: "U_MD_D_KO",
  2393. "onmousedown": U.UF.C.closure(function (obj) {
  2394. //防止拖動圖標即打開了桌面應用
  2395. U.MD.D.click(this, obj);
  2396. }, [_szjkyStudentDeskIconInfo[i]]),
  2397. "onclick": U.UF.C.closure(function (obj) {
  2398. //防止拖動圖標即打開了桌面應用
  2399. U.MD.D.click(this, obj);
  2400. }, [_szjkyStudentDeskIconInfo[i]])
  2401. }, _frag); //
  2402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2405. }
  2406. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2407. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖動圖標即打開了桌面應用
  2412. U.MD.D.click(this, obj);
  2413. }, [_x020201StudentDeskIconInfo[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖動圖標即打開了桌面應用
  2416. U.MD.D.click(this, obj);
  2417. }, [_x020201StudentDeskIconInfo[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2422. }
  2423. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2424. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖動圖標即打開了桌面應用
  2429. U.MD.D.click(this, obj);
  2430. }, [_SCNUETStudentDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖動圖標即打開了桌面應用
  2433. U.MD.D.click(this, obj);
  2434. }, [_SCNUETStudentDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2441. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖動圖標即打開了桌面應用
  2446. U.MD.D.click(this, obj);
  2447. }, [_dseiStudentDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖動圖標即打開了桌面應用
  2450. U.MD.D.click(this, obj);
  2451. }, [_dseiStudentDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2456. }
  2457. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2458. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2459. _content = $$("div", {
  2460. className: "U_MD_D_KO",
  2461. "onmousedown": U.UF.C.closure(function (obj) {
  2462. //防止拖動圖標即打開了桌面應用
  2463. U.MD.D.click(this, obj);
  2464. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2465. "onclick": U.UF.C.closure(function (obj) {
  2466. //防止拖動圖標即打開了桌面應用
  2467. U.MD.D.click(this, obj);
  2468. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2469. }, _frag); //
  2470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2473. }
  2474. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2475. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖動圖標即打開了桌面應用
  2480. U.MD.D.click(this, obj);
  2481. }, [_nsfxStudentDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖動圖標即打開了桌面應用
  2484. U.MD.D.click(this, obj);
  2485. }, [_nsfxStudentDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2492. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖動圖標即打開了桌面應用
  2497. U.MD.D.click(this, obj);
  2498. }, [_stiaStudentDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖動圖標即打開了桌面應用
  2501. U.MD.D.click(this, obj);
  2502. }, [_stiaStudentDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2509. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖動圖標即打開了桌面應用
  2514. U.MD.D.click(this, obj);
  2515. }, [_szdjgStudentDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖動圖標即打開了桌面應用
  2518. U.MD.D.click(this, obj);
  2519. }, [_szdjgStudentDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2526. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖動圖標即打開了桌面應用
  2531. U.MD.D.click(this, obj);
  2532. }, [_x010607StudentDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖動圖標即打開了桌面應用
  2535. U.MD.D.click(this, obj);
  2536. }, [_x010607StudentDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2543. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖動圖標即打開了桌面應用
  2548. U.MD.D.click(this, obj);
  2549. }, [_xhlyStudentDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖動圖標即打開了桌面應用
  2552. U.MD.D.click(this, obj);
  2553. }, [_xhlyStudentDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2560. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖動圖標即打開了桌面應用
  2565. U.MD.D.click(this, obj);
  2566. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖動圖標即打開了桌面應用
  2569. U.MD.D.click(this, obj);
  2570. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2577. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖動圖標即打開了桌面應用
  2582. U.MD.D.click(this, obj);
  2583. }, [_x010503StudentDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖動圖標即打開了桌面應用
  2586. U.MD.D.click(this, obj);
  2587. }, [_x010503StudentDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2594. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2595. _content = $$("div", {
  2596. className: "U_MD_D_KO",
  2597. "onmousedown": U.UF.C.closure(function (obj) {
  2598. //防止拖動圖標即打開了桌面應用
  2599. U.MD.D.click(this, obj);
  2600. }, [_x010504StudentDeskIconInfo[i]]),
  2601. "onclick": U.UF.C.closure(function (obj) {
  2602. //防止拖動圖標即打開了桌面應用
  2603. U.MD.D.click(this, obj);
  2604. }, [_x010504StudentDeskIconInfo[i]])
  2605. }, _frag); //
  2606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2609. }
  2610. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2611. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖動圖標即打開了桌面應用
  2616. U.MD.D.click(this, obj);
  2617. }, [_x010404StudentDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖動圖標即打開了桌面應用
  2620. U.MD.D.click(this, obj);
  2621. }, [_x010404StudentDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2626. }
  2627. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2628. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖動圖標即打開了桌面應用
  2633. U.MD.D.click(this, obj);
  2634. }, [_x010204StudentDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖動圖標即打開了桌面應用
  2637. U.MD.D.click(this, obj);
  2638. }, [_x010204StudentDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2645. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖動圖標即打開了桌面應用
  2650. U.MD.D.click(this, obj);
  2651. }, [_x320101StudentDeskIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖動圖標即打開了桌面應用
  2654. U.MD.D.click(this, obj);
  2655. }, [_x320101StudentDeskIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2662. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2663. _content = $$("div", {
  2664. className: "U_MD_D_KO",
  2665. "onmousedown": U.UF.C.closure(function (obj) {
  2666. //防止拖動圖標即打開了桌面應用
  2667. U.MD.D.click(this, obj);
  2668. }, [_trailStudentDeskIconInfo[i]]),
  2669. "onclick": U.UF.C.closure(function (obj) {
  2670. //防止拖動圖標即打開了桌面應用
  2671. U.MD.D.click(this, obj);
  2672. }, [_trailStudentDeskIconInfo[i]])
  2673. }, _frag); //
  2674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2677. }
  2678. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2679. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2680. _content = $$("div", {
  2681. className: "U_MD_D_KO",
  2682. "onmousedown": U.UF.C.closure(function (obj) {
  2683. //防止拖動圖標即打開了桌面應用
  2684. U.MD.D.click(this, obj);
  2685. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2686. "onclick": U.UF.C.closure(function (obj) {
  2687. //防止拖動圖標即打開了桌面應用
  2688. U.MD.D.click(this, obj);
  2689. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2690. }, _frag); //
  2691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2694. }
  2695. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2696. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖動圖標即打開了桌面應用
  2701. U.MD.D.click(this, obj);
  2702. }, [_szsyStudentDeskIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖動圖標即打開了桌面應用
  2705. U.MD.D.click(this, obj);
  2706. }, [_szsyStudentDeskIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2713. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2714. _content = $$("div", {
  2715. className: "U_MD_D_KO",
  2716. "onmousedown": U.UF.C.closure(function (obj) {
  2717. //防止拖動圖標即打開了桌面應用
  2718. U.MD.D.click(this, obj);
  2719. }, [_x010608StudentDeskIconInfo[i]]),
  2720. "onclick": U.UF.C.closure(function (obj) {
  2721. //防止拖動圖標即打開了桌面應用
  2722. U.MD.D.click(this, obj);
  2723. }, [_x010608StudentDeskIconInfo[i]])
  2724. }, _frag); //
  2725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2728. }
  2729. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2730. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖動圖標即打開了桌面應用
  2735. U.MD.D.click(this, obj);
  2736. }, [_x010611StudentDeskIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖動圖標即打開了桌面應用
  2739. U.MD.D.click(this, obj);
  2740. }, [_x010611StudentDeskIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2747. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖動圖標即打開了桌面應用
  2752. U.MD.D.click(this, obj);
  2753. }, [_tianyuantudentDeskIconInfo[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖動圖標即打開了桌面應用
  2756. U.MD.D.click(this, obj);
  2757. }, [_tianyuantudentDeskIconInfo[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2762. }
  2763. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2764. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖動圖標即打開了桌面應用
  2769. U.MD.D.click(this, obj);
  2770. }, [_siesStudentDeskIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖動圖標即打開了桌面應用
  2773. U.MD.D.click(this, obj);
  2774. }, [_siesStudentDeskIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2781. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2782. _content = $$("div", {
  2783. className: "U_MD_D_KO",
  2784. "onmousedown": U.UF.C.closure(function (obj) {
  2785. //防止拖動圖標即打開了桌面應用
  2786. U.MD.D.click(this, obj);
  2787. }, [_guzmsStudentDeskIconInfo[i]]),
  2788. "onclick": U.UF.C.closure(function (obj) {
  2789. //防止拖動圖標即打開了桌面應用
  2790. U.MD.D.click(this, obj);
  2791. }, [_guzmsStudentDeskIconInfo[i]])
  2792. }, _frag); //
  2793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2796. }
  2797. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2798. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖動圖標即打開了桌面應用
  2803. U.MD.D.click(this, obj);
  2804. }, [_hkStudentDeskIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖動圖標即打開了桌面應用
  2807. U.MD.D.click(this, obj);
  2808. }, [_hkStudentDeskIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2813. }
  2814. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2815. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖動圖標即打開了桌面應用
  2820. U.MD.D.click(this, obj);
  2821. }, [_hkaceStudentDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖動圖標即打開了桌面應用
  2824. U.MD.D.click(this, obj);
  2825. }, [_hkaceStudentDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2832. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖動圖標即打開了桌面應用
  2837. U.MD.D.click(this, obj);
  2838. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖動圖標即打開了桌面應用
  2841. U.MD.D.click(this, obj);
  2842. }, [_BSDNSstudentDesktopIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2849. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2850. _content = $$("div", {
  2851. className: "U_MD_D_KO",
  2852. "onmousedown": U.UF.C.closure(function (obj) {
  2853. //防止拖動圖標即打開了桌面應用
  2854. U.MD.D.click(this, obj);
  2855. }, [_cocobizStudentDeskIconInfo[i]]),
  2856. "onclick": U.UF.C.closure(function (obj) {
  2857. //防止拖動圖標即打開了桌面應用
  2858. U.MD.D.click(this, obj);
  2859. }, [_cocobizStudentDeskIconInfo[i]])
  2860. }, _frag); //
  2861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2864. }
  2865. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2866. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖動圖標即打開了桌面應用
  2871. U.MD.D.click(this, obj);
  2872. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖動圖標即打開了桌面應用
  2875. U.MD.D.click(this, obj);
  2876. }, [_xxzjkyStudentDeskIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2883. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖動圖標即打開了桌面應用
  2888. U.MD.D.click(this, obj);
  2889. }, [_studentDesktopIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖動圖標即打開了桌面應用
  2892. U.MD.D.click(this, obj);
  2893. }, [_studentDesktopIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2900. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖動圖標即打開了桌面應用
  2905. U.MD.D.click(this, obj);
  2906. }, [_tcStudentDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖動圖標即打開了桌面應用
  2909. U.MD.D.click(this, obj);
  2910. }, [_tcStudentDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2915. }
  2916. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2917. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖動圖標即打開了桌面應用
  2922. U.MD.D.click(this, obj);
  2923. }, [_szscStudentDeskIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖動圖標即打開了桌面應用
  2926. U.MD.D.click(this, obj);
  2927. }, [_szscStudentDeskIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2934. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖動圖標即打開了桌面應用
  2939. U.MD.D.click(this, obj);
  2940. }, [_studentDesktopIconInfo3[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖動圖標即打開了桌面應用
  2943. U.MD.D.click(this, obj);
  2944. }, [_studentDesktopIconInfo3[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2949. }
  2950. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2951. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖動圖標即打開了桌面應用
  2956. U.MD.D.click(this, obj);
  2957. }, [_studentDesktopIconInfo2[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖動圖標即打開了桌面應用
  2960. U.MD.D.click(this, obj);
  2961. }, [_studentDesktopIconInfo2[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2966. }
  2967. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2968. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2969. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2970. continue
  2971. }
  2972. _content = $$("div", {
  2973. className: "U_MD_D_KO",
  2974. "onmousedown": U.UF.C.closure(function (obj) {
  2975. //防止拖動圖標即打開了桌面應用
  2976. U.MD.D.click(this, obj);
  2977. }, [_wanketeacherDesktopIconInfo[i]]),
  2978. "onclick": U.UF.C.closure(function (obj) {
  2979. //防止拖動圖標即打開了桌面應用
  2980. U.MD.D.click(this, obj);
  2981. }, [_wanketeacherDesktopIconInfo[i]])
  2982. }, _frag); //
  2983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2986. }
  2987. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2988. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2989. _content = $$("div", {
  2990. className: "U_MD_D_KO",
  2991. "onmousedown": U.UF.C.closure(function (obj) {
  2992. //防止拖動圖標即打開了桌面應用
  2993. U.MD.D.click(this, obj);
  2994. }, [_wankeAdminDesktopIconInfo[i]]),
  2995. "onclick": U.UF.C.closure(function (obj) {
  2996. //防止拖動圖標即打開了桌面應用
  2997. U.MD.D.click(this, obj);
  2998. }, [_wankeAdminDesktopIconInfo[i]])
  2999. }, _frag); //
  3000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3003. }
  3004. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3005. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3006. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3007. continue
  3008. }
  3009. _content = $$("div", {
  3010. className: "U_MD_D_KO",
  3011. "onmousedown": U.UF.C.closure(function (obj) {
  3012. //防止拖動圖標即打開了桌面應用
  3013. U.MD.D.click(this, obj);
  3014. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3015. "onclick": U.UF.C.closure(function (obj) {
  3016. //防止拖動圖標即打開了桌面應用
  3017. U.MD.D.click(this, obj);
  3018. }, [_scnuaiTeacherDeskIconInfo[i]])
  3019. }, _frag); //
  3020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3023. }
  3024. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3025. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3026. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3027. continue
  3028. }
  3029. _content = $$("div", {
  3030. className: "U_MD_D_KO",
  3031. "onmousedown": U.UF.C.closure(function (obj) {
  3032. //防止拖動圖標即打開了桌面應用
  3033. U.MD.D.click(this, obj);
  3034. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3035. "onclick": U.UF.C.closure(function (obj) {
  3036. //防止拖動圖標即打開了桌面應用
  3037. U.MD.D.click(this, obj);
  3038. }, [_BSDNSteacherDesktopIconInfo[i]])
  3039. }, _frag); //
  3040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3043. }
  3044. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3045. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3046. _content = $$("div", {
  3047. className: "U_MD_D_KO",
  3048. "onmousedown": U.UF.C.closure(function (obj) {
  3049. //防止拖動圖標即打開了桌面應用
  3050. U.MD.D.click(this, obj);
  3051. }, [_scnuaiAdminDeskIconInfo[i]]),
  3052. "onclick": U.UF.C.closure(function (obj) {
  3053. //防止拖動圖標即打開了桌面應用
  3054. U.MD.D.click(this, obj);
  3055. }, [_scnuaiAdminDeskIconInfo[i]])
  3056. }, _frag); //
  3057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3060. }
  3061. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3062. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3063. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3064. continue
  3065. }
  3066. _content = $$("div", {
  3067. className: "U_MD_D_KO",
  3068. "onmousedown": U.UF.C.closure(function (obj) {
  3069. //防止拖動圖標即打開了桌面應用
  3070. U.MD.D.click(this, obj);
  3071. }, [_jccssylTeacherDeskIconInfo[i]]),
  3072. "onclick": U.UF.C.closure(function (obj) {
  3073. //防止拖動圖標即打開了桌面應用
  3074. U.MD.D.click(this, obj);
  3075. }, [_jccssylTeacherDeskIconInfo[i]])
  3076. }, _frag); //
  3077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3080. }
  3081. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3082. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3083. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3084. continue
  3085. }
  3086. _content = $$("div", {
  3087. className: "U_MD_D_KO",
  3088. "onmousedown": U.UF.C.closure(function (obj) {
  3089. //防止拖動圖標即打開了桌面應用
  3090. U.MD.D.click(this, obj);
  3091. }, [_caleTeacherDeskIconInfo[i]]),
  3092. "onclick": U.UF.C.closure(function (obj) {
  3093. //防止拖動圖標即打開了桌面應用
  3094. U.MD.D.click(this, obj);
  3095. }, [_caleTeacherDeskIconInfo[i]])
  3096. }, _frag); //
  3097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3100. }
  3101. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3102. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3103. _content = $$("div", {
  3104. className: "U_MD_D_KO",
  3105. "onmousedown": U.UF.C.closure(function (obj) {
  3106. //防止拖動圖標即打開了桌面應用
  3107. U.MD.D.click(this, obj);
  3108. }, [_tpcOrganizerDeskIconInfo[i]]),
  3109. "onclick": U.UF.C.closure(function (obj) {
  3110. //防止拖動圖標即打開了桌面應用
  3111. U.MD.D.click(this, obj);
  3112. }, [_tpcOrganizerDeskIconInfo[i]])
  3113. }, _frag); //
  3114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3117. }
  3118. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3119. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3120. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3121. continue
  3122. }
  3123. _content = $$("div", {
  3124. className: "U_MD_D_KO",
  3125. "onmousedown": U.UF.C.closure(function (obj) {
  3126. //防止拖動圖標即打開了桌面應用
  3127. U.MD.D.click(this, obj);
  3128. }, [_tpcTeacherDeskIconInfo[i]]),
  3129. "onclick": U.UF.C.closure(function (obj) {
  3130. //防止拖動圖標即打開了桌面應用
  3131. U.MD.D.click(this, obj);
  3132. }, [_tpcTeacherDeskIconInfo[i]])
  3133. }, _frag); //
  3134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3137. }
  3138. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3139. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3140. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3141. continue
  3142. }
  3143. _content = $$("div", {
  3144. className: "U_MD_D_KO",
  3145. "onmousedown": U.UF.C.closure(function (obj) {
  3146. //防止拖動圖標即打開了桌面應用
  3147. U.MD.D.click(this, obj);
  3148. }, [_teacherDesktopIconInfo2[i]]),
  3149. "onclick": U.UF.C.closure(function (obj) {
  3150. //防止拖動圖標即打開了桌面應用
  3151. U.MD.D.click(this, obj);
  3152. }, [_teacherDesktopIconInfo2[i]])
  3153. }, _frag); //
  3154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3157. }
  3158. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3159. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3160. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3161. continue
  3162. }
  3163. _content = $$("div", {
  3164. className: "U_MD_D_KO",
  3165. "onmousedown": U.UF.C.closure(function (obj) {
  3166. //防止拖動圖標即打開了桌面應用
  3167. U.MD.D.click(this, obj);
  3168. }, [_thuioeTeacherDeskIconInfo[i]]),
  3169. "onclick": U.UF.C.closure(function (obj) {
  3170. //防止拖動圖標即打開了桌面應用
  3171. U.MD.D.click(this, obj);
  3172. }, [_thuioeTeacherDeskIconInfo[i]])
  3173. }, _frag); //
  3174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3177. }
  3178. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3179. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3180. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3181. continue
  3182. }
  3183. _content = $$("div", {
  3184. className: "U_MD_D_KO",
  3185. "onmousedown": U.UF.C.closure(function (obj) {
  3186. //防止拖動圖標即打開了桌面應用
  3187. U.MD.D.click(this, obj);
  3188. }, [_lotechTeacherDeskIconInfo[i]]),
  3189. "onclick": U.UF.C.closure(function (obj) {
  3190. //防止拖動圖標即打開了桌面應用
  3191. U.MD.D.click(this, obj);
  3192. }, [_lotechTeacherDeskIconInfo[i]])
  3193. }, _frag); //
  3194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3197. }//
  3198. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3199. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3200. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3201. continue
  3202. }
  3203. _content = $$("div", {
  3204. className: "U_MD_D_KO",
  3205. "onmousedown": U.UF.C.closure(function (obj) {
  3206. //防止拖動圖標即打開了桌面應用
  3207. U.MD.D.click(this, obj);
  3208. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3209. "onclick": U.UF.C.closure(function (obj) {
  3210. //防止拖動圖標即打開了桌面應用
  3211. U.MD.D.click(this, obj);
  3212. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3213. }, _frag); //
  3214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3217. }
  3218. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3219. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3220. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3221. continue
  3222. }
  3223. _content = $$("div", {
  3224. className: "U_MD_D_KO",
  3225. "onmousedown": U.UF.C.closure(function (obj) {
  3226. //防止拖動圖標即打開了桌面應用
  3227. U.MD.D.click(this, obj);
  3228. }, [_siesTeacherDeskIconInfo[i]]),
  3229. "onclick": U.UF.C.closure(function (obj) {
  3230. //防止拖動圖標即打開了桌面應用
  3231. U.MD.D.click(this, obj);
  3232. }, [_siesTeacherDeskIconInfo[i]])
  3233. }, _frag); //
  3234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3237. }
  3238. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3239. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3240. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3241. continue
  3242. }
  3243. _content = $$("div", {
  3244. className: "U_MD_D_KO",
  3245. "onmousedown": U.UF.C.closure(function (obj) {
  3246. //防止拖動圖標即打開了桌面應用
  3247. U.MD.D.click(this, obj);
  3248. }, [_guzmsTeacherDeskIconInfo[i]]),
  3249. "onclick": U.UF.C.closure(function (obj) {
  3250. //防止拖動圖標即打開了桌面應用
  3251. U.MD.D.click(this, obj);
  3252. }, [_guzmsTeacherDeskIconInfo[i]])
  3253. }, _frag); //
  3254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3257. }
  3258. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3259. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3260. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3261. continue
  3262. }
  3263. _content = $$("div", {
  3264. className: "U_MD_D_KO",
  3265. "onmousedown": U.UF.C.closure(function (obj) {
  3266. //防止拖動圖標即打開了桌面應用
  3267. U.MD.D.click(this, obj);
  3268. }, [_longhuaTeacherDeskIconInfo[i]]),
  3269. "onclick": U.UF.C.closure(function (obj) {
  3270. //防止拖動圖標即打開了桌面應用
  3271. U.MD.D.click(this, obj);
  3272. }, [_longhuaTeacherDeskIconInfo[i]])
  3273. }, _frag); //
  3274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3277. }
  3278. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3279. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3280. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3281. continue
  3282. }
  3283. _content = $$("div", {
  3284. className: "U_MD_D_KO",
  3285. "onmousedown": U.UF.C.closure(function (obj) {
  3286. //防止拖動圖標即打開了桌面應用
  3287. U.MD.D.click(this, obj);
  3288. }, [_ytyTeacherDeskIconInfo[i]]),
  3289. "onclick": U.UF.C.closure(function (obj) {
  3290. //防止拖動圖標即打開了桌面應用
  3291. U.MD.D.click(this, obj);
  3292. }, [_ytyTeacherDeskIconInfo[i]])
  3293. }, _frag); //
  3294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3297. }
  3298. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3299. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3300. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3301. continue
  3302. }
  3303. _content = $$("div", {
  3304. className: "U_MD_D_KO",
  3305. "onmousedown": U.UF.C.closure(function (obj) {
  3306. //防止拖動圖標即打開了桌面應用
  3307. U.MD.D.click(this, obj);
  3308. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3309. "onclick": U.UF.C.closure(function (obj) {
  3310. //防止拖動圖標即打開了桌面應用
  3311. U.MD.D.click(this, obj);
  3312. }, [_yunhaiTeacherDeskIconInfo[i]])
  3313. }, _frag); //
  3314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3317. } //_hkStudentDeskIconInfo
  3318. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3319. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3320. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3321. continue
  3322. }
  3323. _content = $$("div", {
  3324. className: "U_MD_D_KO",
  3325. "onmousedown": U.UF.C.closure(function (obj) {
  3326. //防止拖動圖標即打開了桌面應用
  3327. U.MD.D.click(this, obj);
  3328. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3329. "onclick": U.UF.C.closure(function (obj) {
  3330. //防止拖動圖標即打開了桌面應用
  3331. U.MD.D.click(this, obj);
  3332. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3333. }, _frag); //
  3334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3337. }
  3338. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3339. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3340. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3341. continue
  3342. }
  3343. _content = $$("div", {
  3344. className: "U_MD_D_KO",
  3345. "onmousedown": U.UF.C.closure(function (obj) {
  3346. //防止拖動圖標即打開了桌面應用
  3347. U.MD.D.click(this, obj);
  3348. }, [_ricohTeacherDeskIconInfo[i]]),
  3349. "onclick": U.UF.C.closure(function (obj) {
  3350. //防止拖動圖標即打開了桌面應用
  3351. U.MD.D.click(this, obj);
  3352. }, [_ricohTeacherDeskIconInfo[i]])
  3353. }, _frag); //
  3354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3357. }
  3358. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3359. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3360. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3361. continue
  3362. }
  3363. _content = $$("div", {
  3364. className: "U_MD_D_KO",
  3365. "onmousedown": U.UF.C.closure(function (obj) {
  3366. //防止拖動圖標即打開了桌面應用
  3367. U.MD.D.click(this, obj);
  3368. }, [_hkTeacherDeskIconInfo[i]]),
  3369. "onclick": U.UF.C.closure(function (obj) {
  3370. //防止拖動圖標即打開了桌面應用
  3371. U.MD.D.click(this, obj);
  3372. }, [_hkTeacherDeskIconInfo[i]])
  3373. }, _frag); //
  3374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3377. }
  3378. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3379. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3380. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3381. continue
  3382. }
  3383. _content = $$("div", {
  3384. className: "U_MD_D_KO",
  3385. "onmousedown": U.UF.C.closure(function (obj) {
  3386. //防止拖動圖標即打開了桌面應用
  3387. U.MD.D.click(this, obj);
  3388. }, [_hkaceTeacherDeskIconInfo[i]]),
  3389. "onclick": U.UF.C.closure(function (obj) {
  3390. //防止拖動圖標即打開了桌面應用
  3391. U.MD.D.click(this, obj);
  3392. }, [_hkaceTeacherDeskIconInfo[i]])
  3393. }, _frag); //
  3394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3397. }
  3398. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3399. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3400. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3401. continue
  3402. }
  3403. _content = $$("div", {
  3404. className: "U_MD_D_KO",
  3405. "onmousedown": U.UF.C.closure(function (obj) {
  3406. //防止拖動圖標即打開了桌面應用
  3407. U.MD.D.click(this, obj);
  3408. }, [_cocobizTeacherDeskIconInfo[i]]),
  3409. "onclick": U.UF.C.closure(function (obj) {
  3410. //防止拖動圖標即打開了桌面應用
  3411. U.MD.D.click(this, obj);
  3412. }, [_cocobizTeacherDeskIconInfo[i]])
  3413. }, _frag); //
  3414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3417. }
  3418. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3419. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3420. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3421. continue
  3422. }
  3423. _content = $$("div", {
  3424. className: "U_MD_D_KO",
  3425. "onmousedown": U.UF.C.closure(function (obj) {
  3426. //防止拖動圖標即打開了桌面應用
  3427. U.MD.D.click(this, obj);
  3428. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3429. "onclick": U.UF.C.closure(function (obj) {
  3430. //防止拖動圖標即打開了桌面應用
  3431. U.MD.D.click(this, obj);
  3432. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3433. }, _frag); //
  3434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3437. }
  3438. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3439. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3440. _content = $$("div", {
  3441. className: "U_MD_D_KO",
  3442. "onmousedown": U.UF.C.closure(function (obj) {
  3443. //防止拖動圖標即打開了桌面應用
  3444. U.MD.D.click(this, obj);
  3445. }, [_gdjgAdminDeskIconInfo[i]]),
  3446. "onclick": U.UF.C.closure(function (obj) {
  3447. //防止拖動圖標即打開了桌面應用
  3448. U.MD.D.click(this, obj);
  3449. }, [_gdjgAdminDeskIconInfo[i]])
  3450. }, _frag); //
  3451. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3452. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3453. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3454. }
  3455. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3456. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3457. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3458. continue
  3459. }
  3460. _content = $$("div", {
  3461. className: "U_MD_D_KO",
  3462. "onmousedown": U.UF.C.closure(function (obj) {
  3463. //防止拖動圖標即打開了桌面應用
  3464. U.MD.D.click(this, obj);
  3465. }, [_gdjgTeacherDeskIconInfo[i]]),
  3466. "onclick": U.UF.C.closure(function (obj) {
  3467. //防止拖動圖標即打開了桌面應用
  3468. U.MD.D.click(this, obj);
  3469. }, [_gdjgTeacherDeskIconInfo[i]])
  3470. }, _frag); //
  3471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3474. }
  3475. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3476. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3477. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3478. continue
  3479. }
  3480. _content = $$("div", {
  3481. className: "U_MD_D_KO",
  3482. "onmousedown": U.UF.C.closure(function (obj) {
  3483. //防止拖動圖標即打開了桌面應用
  3484. U.MD.D.click(this, obj);
  3485. }, [_szherTeacherDeskIconInfo[i]]),
  3486. "onclick": U.UF.C.closure(function (obj) {
  3487. //防止拖動圖標即打開了桌面應用
  3488. U.MD.D.click(this, obj);
  3489. }, [_szherTeacherDeskIconInfo[i]])
  3490. }, _frag); //
  3491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3494. }
  3495. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3496. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖動圖標即打開了桌面應用
  3501. U.MD.D.click(this, obj);
  3502. }, [_heyuannAdminDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖動圖標即打開了桌面應用
  3505. U.MD.D.click(this, obj);
  3506. }, [_heyuannAdminDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3511. }
  3512. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3513. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3514. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3515. continue
  3516. }
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖動圖標即打開了桌面應用
  3521. U.MD.D.click(this, obj);
  3522. }, [_heyuanTeacherDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖動圖標即打開了桌面應用
  3525. U.MD.D.click(this, obj);
  3526. }, [_heyuanTeacherDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3531. } //
  3532. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3533. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖動圖標即打開了桌面應用
  3538. U.MD.D.click(this, obj);
  3539. }, [_dseiAdminDeskIconInfo[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖動圖標即打開了桌面應用
  3542. U.MD.D.click(this, obj);
  3543. }, [_dseiAdminDeskIconInfo[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3548. }
  3549. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3550. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3551. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3552. continue
  3553. }
  3554. _content = $$("div", {
  3555. className: "U_MD_D_KO",
  3556. "onmousedown": U.UF.C.closure(function (obj) {
  3557. //防止拖動圖標即打開了桌面應用
  3558. U.MD.D.click(this, obj);
  3559. }, [_dseiTeacherDeskIconInfo[i]]),
  3560. "onclick": U.UF.C.closure(function (obj) {
  3561. //防止拖動圖標即打開了桌面應用
  3562. U.MD.D.click(this, obj);
  3563. }, [_dseiTeacherDeskIconInfo[i]])
  3564. }, _frag); //
  3565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3568. } //
  3569. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3570. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3571. _content = $$("div", {
  3572. className: "U_MD_D_KO",
  3573. "onmousedown": U.UF.C.closure(function (obj) {
  3574. //防止拖動圖標即打開了桌面應用
  3575. U.MD.D.click(this, obj);
  3576. }, [_chjyjAdminDeskIconInfo[i]]),
  3577. "onclick": U.UF.C.closure(function (obj) {
  3578. //防止拖動圖標即打開了桌面應用
  3579. U.MD.D.click(this, obj);
  3580. }, [_chjyjAdminDeskIconInfo[i]])
  3581. }, _frag); //
  3582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3585. }//
  3586. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3587. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3588. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3589. continue
  3590. }
  3591. _content = $$("div", {
  3592. className: "U_MD_D_KO",
  3593. "onmousedown": U.UF.C.closure(function (obj) {
  3594. //防止拖動圖標即打開了桌面應用
  3595. U.MD.D.click(this, obj);
  3596. }, [_chjyjTeacherDeskIconInfo[i]]),
  3597. "onclick": U.UF.C.closure(function (obj) {
  3598. //防止拖動圖標即打開了桌面應用
  3599. U.MD.D.click(this, obj);
  3600. }, [_chjyjTeacherDeskIconInfo[i]])
  3601. }, _frag); //
  3602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3605. }
  3606. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3607. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖動圖標即打開了桌面應用
  3612. U.MD.D.click(this, obj);
  3613. }, [_szjkyAdminDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖動圖標即打開了桌面應用
  3616. U.MD.D.click(this, obj);
  3617. }, [_szjkyAdminDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3622. }//
  3623. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3624. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3625. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖動圖標即打開了桌面應用
  3632. U.MD.D.click(this, obj);
  3633. }, [_szjkyTeacherDeskIconInfo[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖動圖標即打開了桌面應用
  3636. U.MD.D.click(this, obj);
  3637. }, [_szjkyTeacherDeskIconInfo[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3644. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3645. _content = $$("div", {
  3646. className: "U_MD_D_KO",
  3647. "onmousedown": U.UF.C.closure(function (obj) {
  3648. //防止拖動圖標即打開了桌面應用
  3649. U.MD.D.click(this, obj);
  3650. }, [_x020201AdminDeskIconInfo[i]]),
  3651. "onclick": U.UF.C.closure(function (obj) {
  3652. //防止拖動圖標即打開了桌面應用
  3653. U.MD.D.click(this, obj);
  3654. }, [_x020201AdminDeskIconInfo[i]])
  3655. }, _frag); //
  3656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3659. }//
  3660. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3661. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3662. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3663. continue
  3664. }
  3665. _content = $$("div", {
  3666. className: "U_MD_D_KO",
  3667. "onmousedown": U.UF.C.closure(function (obj) {
  3668. //防止拖動圖標即打開了桌面應用
  3669. U.MD.D.click(this, obj);
  3670. }, [_x020201TeacherDeskIconInfo[i]]),
  3671. "onclick": U.UF.C.closure(function (obj) {
  3672. //防止拖動圖標即打開了桌面應用
  3673. U.MD.D.click(this, obj);
  3674. }, [_x020201TeacherDeskIconInfo[i]])
  3675. }, _frag); //
  3676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3679. }
  3680. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3681. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3682. _content = $$("div", {
  3683. className: "U_MD_D_KO",
  3684. "onmousedown": U.UF.C.closure(function (obj) {
  3685. //防止拖動圖標即打開了桌面應用
  3686. U.MD.D.click(this, obj);
  3687. }, [_SCNUETAdminDeskIconInfo[i]]),
  3688. "onclick": U.UF.C.closure(function (obj) {
  3689. //防止拖動圖標即打開了桌面應用
  3690. U.MD.D.click(this, obj);
  3691. }, [_SCNUETAdminDeskIconInfo[i]])
  3692. }, _frag); //
  3693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3696. }//
  3697. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3698. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3699. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3700. continue
  3701. }
  3702. _content = $$("div", {
  3703. className: "U_MD_D_KO",
  3704. "onmousedown": U.UF.C.closure(function (obj) {
  3705. //防止拖動圖標即打開了桌面應用
  3706. U.MD.D.click(this, obj);
  3707. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3708. "onclick": U.UF.C.closure(function (obj) {
  3709. //防止拖動圖標即打開了桌面應用
  3710. U.MD.D.click(this, obj);
  3711. }, [_SCNUETTeacherDeskIconInfo[i]])
  3712. }, _frag); //
  3713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3716. }
  3717. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3718. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3719. _content = $$("div", {
  3720. className: "U_MD_D_KO",
  3721. "onmousedown": U.UF.C.closure(function (obj) {
  3722. //防止拖動圖標即打開了桌面應用
  3723. U.MD.D.click(this, obj);
  3724. }, [_futianAdminDeskIconInfo[i]]),
  3725. "onclick": U.UF.C.closure(function (obj) {
  3726. //防止拖動圖標即打開了桌面應用
  3727. U.MD.D.click(this, obj);
  3728. }, [_futianAdminDeskIconInfo[i]])
  3729. }, _frag); //
  3730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3733. }
  3734. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3735. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3736. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3737. continue
  3738. }
  3739. _content = $$("div", {
  3740. className: "U_MD_D_KO",
  3741. "onmousedown": U.UF.C.closure(function (obj) {
  3742. //防止拖動圖標即打開了桌面應用
  3743. U.MD.D.click(this, obj);
  3744. }, [_futianTeacherDeskIconInfo[i]]),
  3745. "onclick": U.UF.C.closure(function (obj) {
  3746. //防止拖動圖標即打開了桌面應用
  3747. U.MD.D.click(this, obj);
  3748. }, [_futianTeacherDeskIconInfo[i]])
  3749. }, _frag); //
  3750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3753. }
  3754. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3755. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3756. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3757. continue
  3758. }
  3759. _content = $$("div", {
  3760. className: "U_MD_D_KO",
  3761. "onmousedown": U.UF.C.closure(function (obj) {
  3762. //防止拖動圖標即打開了桌面應用
  3763. U.MD.D.click(this, obj);
  3764. }, [_MingdeTeacherDeskIcon[i]]),
  3765. "onclick": U.UF.C.closure(function (obj) {
  3766. //防止拖動圖標即打開了桌面應用
  3767. U.MD.D.click(this, obj);
  3768. }, [_MingdeTeacherDeskIcon[i]])
  3769. }, _frag); //
  3770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3773. }
  3774. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3775. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3776. _content = $$("div", {
  3777. className: "U_MD_D_KO",
  3778. "onmousedown": U.UF.C.closure(function (obj) {
  3779. //防止拖動圖標即打開了桌面應用
  3780. U.MD.D.click(this, obj);
  3781. }, [_lhsAdminDesktopIconInfo[i]]),
  3782. "onclick": U.UF.C.closure(function (obj) {
  3783. //防止拖動圖標即打開了桌面應用
  3784. U.MD.D.click(this, obj);
  3785. }, [_lhsAdminDesktopIconInfo[i]])
  3786. }, _frag); //
  3787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3790. }
  3791. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3792. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3793. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3794. continue
  3795. }
  3796. _content = $$("div", {
  3797. className: "U_MD_D_KO",
  3798. "onmousedown": U.UF.C.closure(function (obj) {
  3799. //防止拖動圖標即打開了桌面應用
  3800. U.MD.D.click(this, obj);
  3801. }, [_lhsteacherDesktopIconInfo[i]]),
  3802. "onclick": U.UF.C.closure(function (obj) {
  3803. //防止拖動圖標即打開了桌面應用
  3804. U.MD.D.click(this, obj);
  3805. }, [_lhsteacherDesktopIconInfo[i]])
  3806. }, _frag); //
  3807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3810. }
  3811. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3812. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3813. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3814. continue
  3815. }
  3816. _content = $$("div", {
  3817. className: "U_MD_D_KO",
  3818. "onmousedown": U.UF.C.closure(function (obj) {
  3819. //防止拖動圖標即打開了桌面應用
  3820. U.MD.D.click(this, obj);
  3821. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3822. "onclick": U.UF.C.closure(function (obj) {
  3823. //防止拖動圖標即打開了桌面應用
  3824. U.MD.D.click(this, obj);
  3825. }, [_zhoujiateacherDesktopIconInfo[i]])
  3826. }, _frag); //
  3827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3830. }
  3831. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3832. for (i = 0; i < _hanDeskIcon.length; i++) {
  3833. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3834. continue
  3835. }
  3836. _content = $$("div", {
  3837. className: "U_MD_D_KO",
  3838. "onmousedown": U.UF.C.closure(function (obj) {
  3839. //防止拖動圖標即打開了桌面應用
  3840. U.MD.D.click(this, obj);
  3841. }, [_hanDeskIcon[i]]),
  3842. "onclick": U.UF.C.closure(function (obj) {
  3843. //防止拖動圖標即打開了桌面應用
  3844. U.MD.D.click(this, obj);
  3845. }, [_hanDeskIcon[i]])
  3846. }, _frag); //
  3847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3850. }
  3851. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3852. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3853. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3854. continue
  3855. }
  3856. _content = $$("div", {
  3857. className: "U_MD_D_KO",
  3858. "onmousedown": U.UF.C.closure(function (obj) {
  3859. //防止拖動圖標即打開了桌面應用
  3860. U.MD.D.click(this, obj);
  3861. }, [_orgStemDeskIcon[i]]),
  3862. "onclick": U.UF.C.closure(function (obj) {
  3863. //防止拖動圖標即打開了桌面應用
  3864. U.MD.D.click(this, obj);
  3865. }, [_orgStemDeskIcon[i]])
  3866. }, _frag); //
  3867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3870. }
  3871. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3872. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3873. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3874. continue
  3875. }
  3876. _content = $$("div", {
  3877. className: "U_MD_D_KO",
  3878. "onmousedown": U.UF.C.closure(function (obj) {
  3879. //防止拖動圖標即打開了桌面應用
  3880. U.MD.D.click(this, obj);
  3881. }, [_szulsDeskIcon[i]]),
  3882. "onclick": U.UF.C.closure(function (obj) {
  3883. //防止拖動圖標即打開了桌面應用
  3884. U.MD.D.click(this, obj);
  3885. }, [_szulsDeskIcon[i]])
  3886. }, _frag); //
  3887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3890. }
  3891. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3892. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3893. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3894. continue
  3895. }
  3896. _content = $$("div", {
  3897. className: "U_MD_D_KO",
  3898. "onmousedown": U.UF.C.closure(function (obj) {
  3899. //防止拖動圖標即打開了桌面應用
  3900. U.MD.D.click(this, obj);
  3901. }, [_orgDesktopIconInfo[i]]),
  3902. "onclick": U.UF.C.closure(function (obj) {
  3903. //防止拖動圖標即打開了桌面應用
  3904. U.MD.D.click(this, obj);
  3905. }, [_orgDesktopIconInfo[i]])
  3906. }, _frag); //
  3907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3910. }
  3911. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3912. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3913. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3914. continue
  3915. }
  3916. _content = $$("div", {
  3917. className: "U_MD_D_KO",
  3918. "onmousedown": U.UF.C.closure(function (obj) {
  3919. //防止拖動圖標即打開了桌面應用
  3920. U.MD.D.click(this, obj);
  3921. }, [_schoolDesktopIconInfo[i]]),
  3922. "onclick": U.UF.C.closure(function (obj) {
  3923. //防止拖動圖標即打開了桌面應用
  3924. U.MD.D.click(this, obj);
  3925. }, [_schoolDesktopIconInfo[i]])
  3926. }, _frag); //
  3927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3930. }
  3931. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3932. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3933. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3934. continue
  3935. }
  3936. _content = $$("div", {
  3937. className: "U_MD_D_KO",
  3938. "onmousedown": U.UF.C.closure(function (obj) {
  3939. //防止拖動圖標即打開了桌面應用
  3940. U.MD.D.click(this, obj);
  3941. }, [_GMteacherDesktopIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖動圖標即打開了桌面應用
  3944. U.MD.D.click(this, obj);
  3945. }, [_GMteacherDesktopIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3950. }
  3951. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3952. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3953. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3954. continue
  3955. }
  3956. _content = $$("div", {
  3957. className: "U_MD_D_KO",
  3958. "onmousedown": U.UF.C.closure(function (obj) {
  3959. //防止拖動圖標即打開了桌面應用
  3960. U.MD.D.click(this, obj);
  3961. }, [_SONGteacherDesktopIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖動圖標即打開了桌面應用
  3964. U.MD.D.click(this, obj);
  3965. }, [_SONGteacherDesktopIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3972. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3973. _content = $$("div", {
  3974. className: "U_MD_D_KO",
  3975. "onmousedown": U.UF.C.closure(function (obj) {
  3976. //防止拖動圖標即打開了桌面應用
  3977. U.MD.D.click(this, obj);
  3978. }, [_GMstudentDesktopIconInfo[i]]),
  3979. "onclick": U.UF.C.closure(function (obj) {
  3980. //防止拖動圖標即打開了桌面應用
  3981. U.MD.D.click(this, obj);
  3982. }, [_GMstudentDesktopIconInfo[i]])
  3983. }, _frag); //
  3984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3987. }
  3988. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3989. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3990. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3991. continue
  3992. }
  3993. _content = $$("div", {
  3994. className: "U_MD_D_KO",
  3995. "onmousedown": U.UF.C.closure(function (obj) {
  3996. //防止拖動圖標即打開了桌面應用
  3997. U.MD.D.click(this, obj);
  3998. }, [_tcTeacherDeskIconInfo[i]]),
  3999. "onclick": U.UF.C.closure(function (obj) {
  4000. //防止拖動圖標即打開了桌面應用
  4001. U.MD.D.click(this, obj);
  4002. }, [_tcTeacherDeskIconInfo[i]])
  4003. }, _frag); //
  4004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4007. }
  4008. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4009. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4010. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4011. continue
  4012. }
  4013. _content = $$("div", {
  4014. className: "U_MD_D_KO",
  4015. "onmousedown": U.UF.C.closure(function (obj) {
  4016. //防止拖動圖標即打開了桌面應用
  4017. U.MD.D.click(this, obj);
  4018. }, [_tcOrganizerDeskIconInfo[i]]),
  4019. "onclick": U.UF.C.closure(function (obj) {
  4020. //防止拖動圖標即打開了桌面應用
  4021. U.MD.D.click(this, obj);
  4022. }, [_tcOrganizerDeskIconInfo[i]])
  4023. }, _frag); //
  4024. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4025. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4026. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4027. }
  4028. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4029. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4030. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4031. continue
  4032. }
  4033. _content = $$("div", {
  4034. className: "U_MD_D_KO",
  4035. "onmousedown": U.UF.C.closure(function (obj) {
  4036. //防止拖動圖標即打開了桌面應用
  4037. U.MD.D.click(this, obj);
  4038. }, [_szscTeacherDeskIconInfo[i]]),
  4039. "onclick": U.UF.C.closure(function (obj) {
  4040. //防止拖動圖標即打開了桌面應用
  4041. U.MD.D.click(this, obj);
  4042. }, [_szscTeacherDeskIconInfo[i]])
  4043. }, _frag); //
  4044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4047. }
  4048. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4049. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4050. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4051. continue
  4052. }
  4053. _content = $$("div", {
  4054. className: "U_MD_D_KO",
  4055. "onmousedown": U.UF.C.closure(function (obj) {
  4056. //防止拖動圖標即打開了桌面應用
  4057. U.MD.D.click(this, obj);
  4058. }, [_szscOrganizerDeskIconInfo[i]]),
  4059. "onclick": U.UF.C.closure(function (obj) {
  4060. //防止拖動圖標即打開了桌面應用
  4061. U.MD.D.click(this, obj);
  4062. }, [_szscOrganizerDeskIconInfo[i]])
  4063. }, _frag); //
  4064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4067. }
  4068. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4069. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4070. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4071. continue
  4072. }
  4073. _content = $$("div", {
  4074. className: "U_MD_D_KO",
  4075. "onmousedown": U.UF.C.closure(function (obj) {
  4076. //防止拖動圖標即打開了桌面應用
  4077. U.MD.D.click(this, obj);
  4078. }, [_nsfxTeacherDeskIconInfo[i]]),
  4079. "onclick": U.UF.C.closure(function (obj) {
  4080. //防止拖動圖標即打開了桌面應用
  4081. U.MD.D.click(this, obj);
  4082. }, [_nsfxTeacherDeskIconInfo[i]])
  4083. }, _frag); //
  4084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4087. }
  4088. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4089. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4090. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4091. continue
  4092. }
  4093. _content = $$("div", {
  4094. className: "U_MD_D_KO",
  4095. "onmousedown": U.UF.C.closure(function (obj) {
  4096. //防止拖動圖標即打開了桌面應用
  4097. U.MD.D.click(this, obj);
  4098. }, [_stiaTeacherDeskIconInfo[i]]),
  4099. "onclick": U.UF.C.closure(function (obj) {
  4100. //防止拖動圖標即打開了桌面應用
  4101. U.MD.D.click(this, obj);
  4102. }, [_stiaTeacherDeskIconInfo[i]])
  4103. }, _frag); //
  4104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4107. }
  4108. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4109. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4110. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4111. continue
  4112. }
  4113. _content = $$("div", {
  4114. className: "U_MD_D_KO",
  4115. "onmousedown": U.UF.C.closure(function (obj) {
  4116. //防止拖動圖標即打開了桌面應用
  4117. U.MD.D.click(this, obj);
  4118. }, [_szdjgTeacherDeskIconInfo[i]]),
  4119. "onclick": U.UF.C.closure(function (obj) {
  4120. //防止拖動圖標即打開了桌面應用
  4121. U.MD.D.click(this, obj);
  4122. }, [_szdjgTeacherDeskIconInfo[i]])
  4123. }, _frag); //
  4124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4127. }
  4128. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4129. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4130. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4131. continue
  4132. }
  4133. _content = $$("div", {
  4134. className: "U_MD_D_KO",
  4135. "onmousedown": U.UF.C.closure(function (obj) {
  4136. //防止拖動圖標即打開了桌面應用
  4137. U.MD.D.click(this, obj);
  4138. }, [_x010607TeacherDeskIconInfo[i]]),
  4139. "onclick": U.UF.C.closure(function (obj) {
  4140. //防止拖動圖標即打開了桌面應用
  4141. U.MD.D.click(this, obj);
  4142. }, [_x010607TeacherDeskIconInfo[i]])
  4143. }, _frag); //
  4144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4147. }
  4148. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4149. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4150. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4151. continue
  4152. }
  4153. _content = $$("div", {
  4154. className: "U_MD_D_KO",
  4155. "onmousedown": U.UF.C.closure(function (obj) {
  4156. //防止拖動圖標即打開了桌面應用
  4157. U.MD.D.click(this, obj);
  4158. }, [_xhlyTeacherDeskIconInfo[i]]),
  4159. "onclick": U.UF.C.closure(function (obj) {
  4160. //防止拖動圖標即打開了桌面應用
  4161. U.MD.D.click(this, obj);
  4162. }, [_xhlyTeacherDeskIconInfo[i]])
  4163. }, _frag); //
  4164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4167. }
  4168. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4169. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4170. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4171. continue
  4172. }
  4173. _content = $$("div", {
  4174. className: "U_MD_D_KO",
  4175. "onmousedown": U.UF.C.closure(function (obj) {
  4176. //防止拖動圖標即打開了桌面應用
  4177. U.MD.D.click(this, obj);
  4178. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4179. "onclick": U.UF.C.closure(function (obj) {
  4180. //防止拖動圖標即打開了桌面應用
  4181. U.MD.D.click(this, obj);
  4182. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4183. }, _frag); //
  4184. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4187. }
  4188. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4189. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4190. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4191. continue
  4192. }
  4193. _content = $$("div", {
  4194. className: "U_MD_D_KO",
  4195. "onmousedown": U.UF.C.closure(function (obj) {
  4196. //防止拖動圖標即打開了桌面應用
  4197. U.MD.D.click(this, obj);
  4198. }, [_x010503TeacherDeskIconInfo[i]]),
  4199. "onclick": U.UF.C.closure(function (obj) {
  4200. //防止拖動圖標即打開了桌面應用
  4201. U.MD.D.click(this, obj);
  4202. }, [_x010503TeacherDeskIconInfo[i]])
  4203. }, _frag); //
  4204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4207. }
  4208. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4209. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4210. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4211. continue
  4212. }
  4213. _content = $$("div", {
  4214. className: "U_MD_D_KO",
  4215. "onmousedown": U.UF.C.closure(function (obj) {
  4216. //防止拖動圖標即打開了桌面應用
  4217. U.MD.D.click(this, obj);
  4218. }, [_x010504TeacherDeskIconInfo[i]]),
  4219. "onclick": U.UF.C.closure(function (obj) {
  4220. //防止拖動圖標即打開了桌面應用
  4221. U.MD.D.click(this, obj);
  4222. }, [_x010504TeacherDeskIconInfo[i]])
  4223. }, _frag); //
  4224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4227. }
  4228. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4229. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4230. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4231. continue
  4232. }
  4233. _content = $$("div", {
  4234. className: "U_MD_D_KO",
  4235. "onmousedown": U.UF.C.closure(function (obj) {
  4236. //防止拖動圖標即打開了桌面應用
  4237. U.MD.D.click(this, obj);
  4238. }, [_x010404TeacherDeskIconInfo[i]]),
  4239. "onclick": U.UF.C.closure(function (obj) {
  4240. //防止拖動圖標即打開了桌面應用
  4241. U.MD.D.click(this, obj);
  4242. }, [_x010404TeacherDeskIconInfo[i]])
  4243. }, _frag); //
  4244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4247. }
  4248. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4249. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4250. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4251. continue
  4252. }
  4253. _content = $$("div", {
  4254. className: "U_MD_D_KO",
  4255. "onmousedown": U.UF.C.closure(function (obj) {
  4256. //防止拖動圖標即打開了桌面應用
  4257. U.MD.D.click(this, obj);
  4258. }, [_x010204TeacherDeskIconInfo[i]]),
  4259. "onclick": U.UF.C.closure(function (obj) {
  4260. //防止拖動圖標即打開了桌面應用
  4261. U.MD.D.click(this, obj);
  4262. }, [_x010204TeacherDeskIconInfo[i]])
  4263. }, _frag); //
  4264. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4265. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4266. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4267. }
  4268. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4269. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4270. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4271. continue
  4272. }
  4273. _content = $$("div", {
  4274. className: "U_MD_D_KO",
  4275. "onmousedown": U.UF.C.closure(function (obj) {
  4276. //防止拖動圖標即打開了桌面應用
  4277. U.MD.D.click(this, obj);
  4278. }, [_x320101TeacherDeskIconInfo[i]]),
  4279. "onclick": U.UF.C.closure(function (obj) {
  4280. //防止拖動圖標即打開了桌面應用
  4281. U.MD.D.click(this, obj);
  4282. }, [_x320101TeacherDeskIconInfo[i]])
  4283. }, _frag); //
  4284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4287. }
  4288. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4289. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4290. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4291. continue
  4292. }
  4293. _content = $$("div", {
  4294. className: "U_MD_D_KO",
  4295. "onmousedown": U.UF.C.closure(function (obj) {
  4296. //防止拖動圖標即打開了桌面應用
  4297. U.MD.D.click(this, obj);
  4298. }, [_trailTeacherDeskIconInfo[i]]),
  4299. "onclick": U.UF.C.closure(function (obj) {
  4300. //防止拖動圖標即打開了桌面應用
  4301. U.MD.D.click(this, obj);
  4302. }, [_trailTeacherDeskIconInfo[i]])
  4303. }, _frag); //
  4304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4307. }
  4308. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4309. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4310. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4311. continue
  4312. }
  4313. _content = $$("div", {
  4314. className: "U_MD_D_KO",
  4315. "onmousedown": U.UF.C.closure(function (obj) {
  4316. //防止拖動圖標即打開了桌面應用
  4317. U.MD.D.click(this, obj);
  4318. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4319. "onclick": U.UF.C.closure(function (obj) {
  4320. //防止拖動圖標即打開了桌面應用
  4321. U.MD.D.click(this, obj);
  4322. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4323. }, _frag); //
  4324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4327. }
  4328. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4329. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4330. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4331. continue
  4332. }
  4333. _content = $$("div", {
  4334. className: "U_MD_D_KO",
  4335. "onmousedown": U.UF.C.closure(function (obj) {
  4336. //防止拖動圖標即打開了桌面應用
  4337. U.MD.D.click(this, obj);
  4338. }, [_szsyTeacherDeskIconInfo[i]]),
  4339. "onclick": U.UF.C.closure(function (obj) {
  4340. //防止拖動圖標即打開了桌面應用
  4341. U.MD.D.click(this, obj);
  4342. }, [_szsyTeacherDeskIconInfo[i]])
  4343. }, _frag); //
  4344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4347. }
  4348. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4349. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4350. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4351. continue
  4352. }
  4353. _content = $$("div", {
  4354. className: "U_MD_D_KO",
  4355. "onmousedown": U.UF.C.closure(function (obj) {
  4356. //防止拖動圖標即打開了桌面應用
  4357. U.MD.D.click(this, obj);
  4358. }, [_x010608TeacherDeskIconInfo[i]]),
  4359. "onclick": U.UF.C.closure(function (obj) {
  4360. //防止拖動圖標即打開了桌面應用
  4361. U.MD.D.click(this, obj);
  4362. }, [_x010608TeacherDeskIconInfo[i]])
  4363. }, _frag); //
  4364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4367. }
  4368. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4369. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4370. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4371. continue
  4372. }
  4373. _content = $$("div", {
  4374. className: "U_MD_D_KO",
  4375. "onmousedown": U.UF.C.closure(function (obj) {
  4376. //防止拖動圖標即打開了桌面應用
  4377. U.MD.D.click(this, obj);
  4378. }, [_x010611TeacherDeskIconInfo[i]]),
  4379. "onclick": U.UF.C.closure(function (obj) {
  4380. //防止拖動圖標即打開了桌面應用
  4381. U.MD.D.click(this, obj);
  4382. }, [_x010611TeacherDeskIconInfo[i]])
  4383. }, _frag); //
  4384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4387. }
  4388. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4389. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4390. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4391. continue
  4392. }
  4393. _content = $$("div", {
  4394. className: "U_MD_D_KO",
  4395. "onmousedown": U.UF.C.closure(function (obj) {
  4396. //防止拖動圖標即打開了桌面應用
  4397. U.MD.D.click(this, obj);
  4398. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4399. "onclick": U.UF.C.closure(function (obj) {
  4400. //防止拖動圖標即打開了桌面應用
  4401. U.MD.D.click(this, obj);
  4402. }, [_tianyuanTeacherDeskIconInfo[i]])
  4403. }, _frag); //
  4404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4407. }
  4408. } else {
  4409. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4410. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4411. continue
  4412. }
  4413. _content = $$("div", {
  4414. className: "U_MD_D_KO",
  4415. "onmousedown": U.UF.C.closure(function (obj) {
  4416. //防止拖動圖標即打開了桌面應用
  4417. U.MD.D.click(this, obj);
  4418. }, [_teacherDesktopIconInfo[i]]),
  4419. "onclick": U.UF.C.closure(function (obj) {
  4420. //防止拖動圖標即打開了桌面應用
  4421. U.MD.D.click(this, obj);
  4422. }, [_teacherDesktopIconInfo[i]])
  4423. }, _frag); //
  4424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4427. }
  4428. }
  4429. } else {
  4430. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4431. _content = $$("div", {
  4432. className: "U_MD_D_KO",
  4433. style: { 'width': '124px', 'height': '145px' },
  4434. "onmousedown": U.UF.C.closure(function (obj) {
  4435. //防止拖動圖標即打開了桌面應用
  4436. U.MD.D.click(this, obj);
  4437. }, [_easyDesktopIconInfo[i]]),
  4438. "onclick": U.UF.C.closure(function (obj) {
  4439. //防止拖動圖標即打開了桌面應用
  4440. U.MD.D.click(this, obj);
  4441. }, [_easyDesktopIconInfo[i]])
  4442. }, _frag); //
  4443. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4446. }
  4447. }
  4448. if (type == 1) {
  4449. //加載好後給圖標定位
  4450. U.MD.D.iconPostion($(_frag).Child());
  4451. } else {
  4452. //加載好後給圖標定位
  4453. U.MD.D.iconPostion2($(_frag).Child());
  4454. }
  4455. //把圖標加載到頁面
  4456. el.appendChild(_frag);
  4457. }
  4458. /**
  4459. * 顯示任務欄
  4460. *
  4461. * @param {element} 桌面元素
  4462. */
  4463. U.MD.D.I.displayTaskbar = function (el) {
  4464. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4465. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4466. //任務欄位置變化
  4467. U.selectEl(el).css({ "bottom": "0px" });
  4468. //桌面位置變話
  4469. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4470. }
  4471. }
  4472. //#region 桌面圖標拖動邏輯
  4473. /**
  4474. * 桌面排列圖標
  4475. *
  4476. * @param {element} 桌面元素
  4477. * @param {object} 上下相距的距離
  4478. * @param {object} 左右相距的距離
  4479. * @return {object} 命名空間
  4480. */
  4481. U.MD.D.iconPostion = function (childs, top, left) {
  4482. var i; //用於循環處理
  4483. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4484. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4485. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4486. for (i = 0; i < childs.length; i++) {
  4487. //如果豎排top超過了範圍處理
  4488. if (top + 95 > US.height - 10) {
  4489. //left超過了頁面範圍處理,則向上重疊打印處理
  4490. if ((left + 180) > US.width) {
  4491. top -= 110;
  4492. left -= 90;
  4493. }
  4494. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4495. else {
  4496. left += 90;
  4497. top = 15;
  4498. };
  4499. }
  4500. //給圖標的位置賦值
  4501. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4502. if (i < childs.length - 1) {
  4503. //頁面圖標每次向下加95
  4504. top += 95;
  4505. }
  4506. }
  4507. //返回最後調用的圖標的位置
  4508. return [top, left];
  4509. }
  4510. /**
  4511. * 桌面排列圖標
  4512. *
  4513. * @param {element} 桌面元素
  4514. * @param {object} 上下相距的距離
  4515. * @param {object} 左右相距的距離
  4516. * @return {object} 命名空間
  4517. */
  4518. U.MD.D.iconPostion2 = function (childs, top, left) {
  4519. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4520. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4521. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4522. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4523. for (i = 0; i < childs.length; i++) {
  4524. //如果豎排top超過了範圍處理
  4525. if (left + 150 > US.width - 10) {
  4526. //left超過了頁面範圍處理,則向上重疊打印處理
  4527. if ((top + 180) > US.Height) {
  4528. top -= 150;
  4529. left -= 150;
  4530. }
  4531. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4532. else {
  4533. top += 150;
  4534. left = ol;
  4535. };
  4536. }
  4537. //給圖標的位置賦值
  4538. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4539. if (i < childs.length - 1) {
  4540. //頁面圖標每次向下加95
  4541. left += 150;
  4542. }
  4543. }
  4544. //返回最後調用的圖標的位置
  4545. return [top, left];
  4546. }
  4547. /**
  4548. * 桌面點擊事件邏輯
  4549. *
  4550. * @param {element} 桌面元素
  4551. * @param {object} 上下相距的距離
  4552. * @param {object} 左右相距的距離
  4553. * @return {object} 命名空間
  4554. */
  4555. U.MD.D.click = function (el, obj) {
  4556. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4557. var _userinfo = US.userInfo;
  4558. U.UF.EV.stopBubble(); //阻止向上冒泡
  4559. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4560. if (_buttonnumber < 2) {
  4561. //如果是click事件的處理
  4562. if (event.type == "click") {
  4563. //如果元素在mousemove事件中沒有移動則出發click事件
  4564. if (!U.MD.D.I.IsDrag) {
  4565. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4566. U.alert("請先登錄您的賬號!");
  4567. setTimeout(() => {
  4568. U.MD.U.L.login();
  4569. }, 2000);
  4570. } else {
  4571. //打開應用處理
  4572. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4573. }
  4574. }
  4575. }
  4576. //如果是mouse事件的處理
  4577. else {
  4578. if (US.Config.type == '1') {
  4579. //拖動處理,添加拖動和拖動結束事件
  4580. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4581. }
  4582. }
  4583. U.MD.D.I.IsDrag = false;
  4584. }
  4585. }
  4586. /**
  4587. * 拖動的處理
  4588. *
  4589. */
  4590. U.MD.D.iconMove = function () {
  4591. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4592. U.MD.D.I.IsDrag = true;
  4593. }
  4594. /**
  4595. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4596. *
  4597. * @param {element} 拖動的元素
  4598. * @return {object} 命名空間
  4599. */
  4600. U.MD.D.iconUp = function (el) {
  4601. var _top = 15,
  4602. _left = 20,
  4603. _margin,
  4604. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4605. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4606. if (_positioninfo["OT"] > 15) {
  4607. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4608. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4609. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4610. }
  4611. if (_positioninfo["OL"] > 20) {
  4612. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4613. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4614. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4615. }
  4616. //while循環判斷麼一個重疊的元素
  4617. do {
  4618. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4619. _top = _positioninfo[0] + 95; //得到定位後的top
  4620. _left = _positioninfo[1]; //得到定位後的left
  4621. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4622. }
  4623. /**
  4624. * 判斷拖動後圖標是否重疊
  4625. *
  4626. * @param {element} 拖動的元素
  4627. * @param {element} 桌面所有的元素
  4628. * @param {array} 拖動元素的位置
  4629. ----------[0] 上 top
  4630. ----------[1] 左 left
  4631. * @return {object} 命名空間
  4632. */
  4633. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4634. //循環所有的圖標
  4635. for (var i = 0; i < childs.length; i++) {
  4636. //判斷有沒有和該圖標誒子重疊的元素
  4637. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4638. return childs[i]; //如果有返回
  4639. }
  4640. }
  4641. }
  4642. //#endregion
  4643. //#endregion
  4644. //#region 桌面應用
  4645. /**
  4646. * 打開應用
  4647. *
  4648. * @param {string} 類型
  4649. -----------------Disk 網盤系統
  4650. -----------------PDisk 學習系統網盤
  4651. -----------------Poto 圖片
  4652. -----------------Video 視頻
  4653. -----------------Music 音樂
  4654. -----------------Word word
  4655. -----------------Excel excel
  4656. -----------------Txt 記事本
  4657. -----------------PB 學習系統
  4658. -----------------Blog 朋友圈系統
  4659. -----------------FTP ftp系統
  4660. -----------------Group 好友群
  4661. -----------------SY 首頁系統
  4662. -----------------Set 個人設置
  4663. -----------------XSet 系統設置
  4664. -----------------App 我們所有的app
  4665. -----------------BC c.1473.cn 平臺
  4666. -----------------CWeb d.1473.cn 變成平臺
  4667. -----------------其他的外聯系統 我們統一用iframe打開
  4668. * @param {array} 類型
  4669. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4670. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4671. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4672. 如果第一個參數為其他,則無第二個參數
  4673. * @returns {array}
  4674. */
  4675. window.addEventListener('message', function (e) { // 監聽 message 事件
  4676. // alert(e.data.type);
  4677. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4678. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4679. //3是展示全部階段 2學生 1老師 4專家
  4680. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4681. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4682. //3是展示全部階段 2學生 1老師 4專家
  4683. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4684. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4685. //3是展示全部階段 2學生 1老師 4專家
  4686. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4687. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4688. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4689. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4690. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4691. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4692. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4693. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4694. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4695. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4696. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4697. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4698. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4699. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4700. //3是展示全部階段 2學生 1老師 4專家
  4701. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4702. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4703. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4704. U.MD.D.I.selectUser();
  4705. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4706. var _formel = document.getElementById("study");
  4707. U.UF.F.windowZooming(_formel);
  4708. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4709. var _formel = document.getElementById("studyDetail");
  4710. U.UF.F.windowZooming(_formel);
  4711. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4712. var _formel = document.getElementById("studyDetail");
  4713. U.UF.F.windowZooming(_formel);
  4714. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4715. var _formel = document.getElementById("studentStudy");
  4716. U.UF.F.windowZooming(_formel);
  4717. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4718. // var _formel = document.getElementById("study");
  4719. //如果最大化了,那麼就把他縮小
  4720. // if (_formel.ismaximize) {
  4721. // return;
  4722. // }
  4723. // U.UF.F.windowZooming(_formel);
  4724. // U.UF.F.topWindow(_formel);
  4725. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4726. // var _formel = document.getElementById("studyDetail");
  4727. //如果最大化了,那麼就把他縮小
  4728. // if (_formel.ismaximize) {
  4729. // return;
  4730. // }
  4731. // U.UF.F.windowZooming(_formel);
  4732. // U.UF.F.topWindow(_formel);
  4733. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4734. // var _formel = document.getElementById("studentStudy");
  4735. // if (_formel.ismaximize) {
  4736. // return;
  4737. // }
  4738. // U.UF.F.windowZooming(_formel);
  4739. // U.UF.F.topWindow(_formel);
  4740. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4741. var _formel = document.getElementById("study");
  4742. // if (_formel.ismaximize) {
  4743. // return;
  4744. // }
  4745. // U.UF.F.windowZooming(_formel);
  4746. U.UF.F.topWindow(_formel);
  4747. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4748. var _formel = document.getElementById("studentIndex");
  4749. U.UF.F.windowZooming(_formel);
  4750. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4751. var _formel = document.getElementById("studyDetailS");
  4752. U.UF.F.windowZooming(_formel);
  4753. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4754. var _formel = document.getElementById("studioIndex");
  4755. U.UF.F.windowZooming(_formel);
  4756. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4757. var _formel = document.getElementById("studyDetailStudio");
  4758. U.UF.F.windowZooming(_formel);
  4759. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4760. var _formel = document.getElementById("studyDetailStudio");
  4761. U.UF.F.windowZooming(_formel);
  4762. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4763. var _formel = document.getElementById("studyDetailNT");
  4764. U.UF.F.windowZooming(_formel);
  4765. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4766. var _formel = document.getElementById("studyDetailS");
  4767. U.UF.F.windowZooming(_formel);
  4768. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4769. var _formel = document.getElementById("studyDetailS");
  4770. U.UF.F.topWindow(_formel);
  4771. } else if (e.data.tools && e.data.tools == "1") {
  4772. // U.MD.D.I.openApplication("whiteboard")
  4773. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4774. } else if (e.data.tools && e.data.tools == "2") {
  4775. U.MD.D.I.openApplication("note")
  4776. } else if (e.data.tools && e.data.tools == "3") {
  4777. // U.MD.D.I.openApplication("mind")
  4778. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4779. } else if (e.data.tools && e.data.tools == "4") {
  4780. U.MD.D.I.openApplication("investigation")
  4781. } else if (e.data.tools && e.data.tools == "6") {
  4782. // U.MD.D.I.openApplication("doc")
  4783. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4784. } else if (e.data.tools && e.data.tools == "7") {
  4785. // U.MD.D.I.openApplication("mindNetwork")
  4786. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4787. } else if (e.data.tools && e.data.tools == "8") {
  4788. U.MD.D.I.openApplication("library")
  4789. } else if (e.data.tools && e.data.tools == "17") {
  4790. U.MD.D.I.openApplication("stuLibrary")
  4791. } else if (e.data.tools && e.data.tools == "18") {
  4792. U.MD.D.I.openApplication("train")
  4793. } else if (e.data.tools && e.data.tools == "21") {
  4794. U.MD.D.I.openApplication("program")
  4795. } else if (e.data.tools && e.data.tools == "22") {
  4796. U.MD.D.I.openApplication("AIprogram2")
  4797. } else if (e.data.tools && e.data.tools == "23") {
  4798. U.MD.D.I.openApplication("Pythonprogram")
  4799. } else if (e.data.tools && e.data.tools == "24") {
  4800. U.MD.D.I.openApplication("AIprogram")
  4801. } else if (e.data.tools && e.data.tools == "25") {
  4802. U.MD.D.I.openApplication("sys")
  4803. } else if (e.data.tools && e.data.tools == "26") {
  4804. // U.MD.D.I.openApplication("courseDesign")
  4805. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4806. } else if (e.data.tools && e.data.tools == "31") {
  4807. U.MD.D.I.openApplication("netWorkPanel")
  4808. } else if (e.data.tools && e.data.tools == "32") {
  4809. U.MD.D.I.openApplication("codeEdit")
  4810. } else if (e.data.tools && e.data.tools == "57") {
  4811. U.MD.D.I.openApplication("CocoPi")
  4812. } else if (e.data.tools && e.data.tools == "63") {
  4813. U.MD.D.I.openApplication("Wood")
  4814. } else if (e.data.tools && e.data.tools == "58") {
  4815. U.MD.D.I.openApplication("car")
  4816. } else if (e.data.tools && e.data.tools == "59") {
  4817. U.MD.D.I.openApplication("lineSearch")
  4818. } else if (e.data.tools && e.data.tools == "60") {
  4819. U.MD.D.I.openApplication("deepLearning")
  4820. } else if (e.data.tools && e.data.tools == "61") {
  4821. U.MD.D.I.openApplication("allHistory")
  4822. } else if (e.data.tools && e.data.tools == "28") {
  4823. U.MD.D.I.openApplication("translation")
  4824. } else if (e.data.tools && e.data.tools == "37") {
  4825. U.MD.D.I.openApplication("mohe")
  4826. } else if (e.data.tools && e.data.tools == "38") {
  4827. U.MD.D.I.openApplication("24game")
  4828. } else if (e.data.tools && e.data.tools == "39") {
  4829. U.MD.D.I.openApplication("GeoGebra")
  4830. } else if (e.data.tools && e.data.tools == "43") {
  4831. U.MD.D.I.openApplication("studentEvaluate")
  4832. } else if (e.data.tools && e.data.tools == "44") {
  4833. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4834. } else if (e.data.tools && e.data.tools == "46") {
  4835. U.MD.D.I.openApplication("project")
  4836. } else if (e.data.tools && e.data.tools == "71") {
  4837. U.MD.D.I.openApplication("aigptCourse")
  4838. } else if (e.data.tools && e.data.tools == "1s") {
  4839. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4840. } else if (e.data.tools && e.data.tools == "3s") {
  4841. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4842. } else if (e.data.tools && e.data.tools == "6s") {
  4843. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4844. } else if (e.data.tools && e.data.tools == "1studio") {
  4845. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4846. } else if (e.data.tools && e.data.tools == "3studio") {
  4847. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4848. } else if (e.data.tools && e.data.tools == "6studio") {
  4849. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4850. } else if (e.data.tools && e.data.tools == "3y") {
  4851. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4852. } else if (e.data.tools && e.data.tools == "1y") {
  4853. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4854. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4855. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4856. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4857. U.MD.D.I.openApplication("AIAnalyse")
  4858. } else if (e.data.tools && e.data.tools == "1teacher") {
  4859. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4860. } else if (e.data.tools && e.data.tools == "3teacher") {
  4861. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4862. } else if (e.data.tools && e.data.tools == "7teacher") {
  4863. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4864. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4865. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4866. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4867. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4868. } else if (e.data.tools && e.data.tools == "1E") {
  4869. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4870. } else if (e.data.tools && e.data.tools == "3E") {
  4871. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4872. } else if (e.data.tools && e.data.tools == "57y") {
  4873. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4874. } else if (e.data.tools && e.data.tools == "57u") {
  4875. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4876. } else if (e.data.tools && e.data.tools == "57teacher") {
  4877. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4878. } else if (e.data.tools && e.data.tools == "64") {
  4879. U.MD.D.I.openApplication("AIChat")
  4880. } else if (e.data.tools && e.data.tools == "66") {
  4881. U.MD.D.I.openApplication("formulaEdi")
  4882. } else if (e.data.tools && e.data.tools == "67") {
  4883. U.MD.D.I.openApplication("molStr")
  4884. } else if (e.data.tools && e.data.tools == "68") {
  4885. U.MD.D.I.openApplication("timeAxis")
  4886. } else if (e.data.tools && e.data.tools == "openCourse") {
  4887. let _data = {
  4888. typea: e.data.typea || '',
  4889. typeb: e.data.typeb || '',
  4890. typed: e.data.typed || '',
  4891. }
  4892. U.MD.D.I.openInApplication("index", _data)
  4893. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4894. let _data = {
  4895. classid: e.data.classid || '',
  4896. }
  4897. U.MD.D.I.openInApplication("dataClass", _data)
  4898. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4899. let _data = {
  4900. cid: e.data.cid || '',
  4901. gid: e.data.gid || '',
  4902. }
  4903. U.MD.D.I.openInApplication("opencCscl", _data)
  4904. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4905. U.MD.D.I.openApplication("dataBoardTest")
  4906. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4907. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4908. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4909. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4910. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4911. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4912. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4913. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4914. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4915. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4916. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4917. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4918. }else if (e.data.tools && e.data.tools == "loginSz") {
  4919. U.MD.D.I.openInApplication("loginSz")
  4920. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4921. if($('#classroom_observation_board')[0]){
  4922. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4923. }
  4924. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4925. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4926. if($('#classroom_observation_ob_comment')[0]){
  4927. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4928. }
  4929. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4930. }else if (e.data.tools && e.data.tools == "logout"){
  4931. U.MD.U.LO.logoutSystem()
  4932. }else if (e.data.tools && e.data.tools == "getLogin"){
  4933. let _iframe = $('#UI_Login')[0];
  4934. if (_iframe) {
  4935. var userInfo = US.userInfo;
  4936. var type = 2
  4937. if(userInfo && userInfo.userid){
  4938. type = 1
  4939. }
  4940. _contentWindow = _iframe.contentWindow;
  4941. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4942. }
  4943. }
  4944. });
  4945. U.MD.D.I.selectUser = function () {
  4946. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4947. if (res.value[0].length > 0) {
  4948. US.userInfo = res.value[0][0];
  4949. $(".userName")[0].innerHTML = US.userInfo.username;
  4950. }
  4951. }, [], { "type": "GET", "withCredentials": true });
  4952. }
  4953. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4954. var _userinfo = US.userInfo, //登錄用戶信息
  4955. _userid = US.userInfo.userid, //登錄用戶id
  4956. _oid = _userinfo.organizeid,
  4957. _type = US.userInfo.type,
  4958. _org = US.userInfo.org,
  4959. _role = US.userInfo.role,
  4960. _classId = US.userInfo.classid;
  4961. if (_type == 4) {
  4962. tType = 4
  4963. }
  4964. switch (str) {
  4965. case "studyDetailNT": //無終端模式
  4966. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4967. setTimeout(() => {
  4968. U.MD.U.L.login();
  4969. }, 2000);
  4970. } else {
  4971. _formdiv = new U.UF.UI.form(
  4972. "課程詳情",
  4973. $$("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 }), {
  4974. "id": "studyDetailNT",
  4975. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4976. "onresize": function () { }
  4977. }, {
  4978. closecallback: function () { }
  4979. }, { "style": { "height": "36px" } }).form; //創建窗體
  4980. _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); } }
  4981. break;
  4982. }
  4983. case "studyDetail":
  4984. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4985. setTimeout(() => {
  4986. U.MD.U.L.login();
  4987. }, 2000);
  4988. } else {
  4989. _formdiv = new U.UF.UI.form(
  4990. "課程詳情",
  4991. $$("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 }), {
  4992. "id": "studyDetail",
  4993. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4994. "onresize": function () { }
  4995. }, {
  4996. closecallback: function () { }
  4997. }, { "style": { "height": "36px" } }).form; //創建窗體
  4998. _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); } }
  4999. break;
  5000. }
  5001. case "studyDetailTrain":
  5002. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5003. setTimeout(() => {
  5004. U.MD.U.L.login();
  5005. }, 2000);
  5006. } else {
  5007. _formdiv = new U.UF.UI.form(
  5008. "培訓詳情",
  5009. $$("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 }), {
  5010. "id": "studyDetailTrain",
  5011. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5012. "onresize": function () { }
  5013. }, {
  5014. closecallback: function () { }
  5015. }, { "style": { "height": "36px" } }).form; //創建窗體
  5016. _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); } }
  5017. break;
  5018. }
  5019. case "studyDetailS":
  5020. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5021. setTimeout(() => {
  5022. U.MD.U.L.login();
  5023. }, 2000);
  5024. } else {
  5025. _formdiv = new U.UF.UI.form(
  5026. "項目詳情",
  5027. $$("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 }), {
  5028. "id": "studyDetailS",
  5029. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5030. "onresize": function () { }
  5031. }, {
  5032. closecallback: function () { }
  5033. }, { "style": { "height": "36px" } }).form; //創建窗體
  5034. _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); } }
  5035. break;
  5036. }
  5037. case "studyDetailStudio":
  5038. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5039. setTimeout(() => {
  5040. U.MD.U.L.login();
  5041. }, 2000);
  5042. } else {
  5043. _formdiv = new U.UF.UI.form(
  5044. "工作詳情",
  5045. $$("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 }), {
  5046. "id": "studyDetailStudio",
  5047. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5048. "onresize": function () { }
  5049. }, {
  5050. closecallback: function () { }
  5051. }, { "style": { "height": "36px" } }).form; //創建窗體
  5052. _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); } }
  5053. break;
  5054. }
  5055. case "studyDetailS5":
  5056. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5057. setTimeout(() => {
  5058. U.MD.U.L.login();
  5059. }, 2000);
  5060. } else {
  5061. _formdiv = new U.UF.UI.form(
  5062. "項目詳情",
  5063. $$("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 }), {
  5064. "id": "studyDetailS",
  5065. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5066. "onresize": function () { }
  5067. }, {
  5068. closecallback: function () { }
  5069. }, { "style": { "height": "36px" } }).form; //創建窗體
  5070. _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); } }
  5071. break;
  5072. }
  5073. case "studyDetailGM":
  5074. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5075. setTimeout(() => {
  5076. U.MD.U.L.login();
  5077. }, 2000);
  5078. } else {
  5079. _formdiv = new U.UF.UI.form(
  5080. "課程詳情",
  5081. $$("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 }), {
  5082. "id": "studyDetail",
  5083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5084. "onresize": function () { }
  5085. }, {
  5086. closecallback: function () { }
  5087. }, { "style": { "height": "36px" } }).form; //創建窗體
  5088. _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); } }
  5089. break;
  5090. }
  5091. case "hanUrl":
  5092. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5093. setTimeout(() => {
  5094. U.MD.U.L.login();
  5095. }, 2000);
  5096. } else {
  5097. _formdiv = new U.UF.UI.form(
  5098. "漢字宮",
  5099. $$("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" }), {
  5100. "id": "hanUrl",
  5101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //創建窗體
  5106. _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); } }
  5107. break;
  5108. }
  5109. case "index":
  5110. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5111. setTimeout(() => {
  5112. U.MD.U.L.login();
  5113. }, 2000);
  5114. } else {
  5115. _formdiv = new U.UF.UI.form(
  5116. "課程中心",
  5117. $$("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 }), {
  5118. "id": "study",
  5119. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5120. "onresize": function () { }
  5121. }, {
  5122. closecallback: function () { }
  5123. }, { "style": { "height": "36px" } }).form; //創建窗體
  5124. _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); } }
  5125. break;
  5126. }
  5127. case "dataClass":
  5128. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5129. setTimeout(() => {
  5130. U.MD.U.L.login();
  5131. }, 2000);
  5132. } else {
  5133. _formdiv = new U.UF.UI.form(
  5134. "數據報告",
  5135. $$("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 }), {
  5136. "id": "dataClass",
  5137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //創建窗體
  5142. _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); } }
  5143. break;
  5144. }
  5145. case "opencCscl":
  5146. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5147. setTimeout(() => {
  5148. U.MD.U.L.login();
  5149. }, 2000);
  5150. } else {
  5151. _formdiv = new U.UF.UI.form(
  5152. "協同建構",
  5153. $$("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 }), {
  5154. "id": "futureClass",
  5155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5159. }, { "style": { "height": "36px" } }).form; //創建窗體
  5160. _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); } }
  5161. break;
  5162. }
  5163. case "openCourseUpdate":
  5164. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5165. setTimeout(() => {
  5166. U.MD.U.L.login();
  5167. }, 2000);
  5168. } else {
  5169. _formdiv = new U.UF.UI.form(
  5170. "課程管理",
  5171. $$("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 }), {
  5172. "id": "openCourseUpdate",
  5173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //創建窗體
  5178. break;
  5179. }
  5180. case "openNewCourseUpdate":
  5181. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5182. setTimeout(() => {
  5183. U.MD.U.L.login();
  5184. }, 2000);
  5185. } else {
  5186. _formdiv = new U.UF.UI.form(
  5187. "課程管理",
  5188. $$("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 }), {
  5189. "id": "openCourseUpdate",
  5190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5191. "onresize": function () { }
  5192. }, {
  5193. closecallback: function () { }
  5194. }, { "style": { "height": "36px" } }).form; //創建窗體
  5195. break;
  5196. }
  5197. case "openCourseEUpdate":
  5198. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5199. setTimeout(() => {
  5200. U.MD.U.L.login();
  5201. }, 2000);
  5202. } else {
  5203. _formdiv = new U.UF.UI.form(
  5204. "課程管理",
  5205. $$("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 }), {
  5206. "id": "openCourseUpdate",
  5207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5208. "onresize": function () { }
  5209. }, {
  5210. closecallback: function () { }
  5211. }, { "style": { "height": "36px" } }).form; //創建窗體
  5212. break;
  5213. }
  5214. case "openCourseAiUpdate":
  5215. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5216. setTimeout(() => {
  5217. U.MD.U.L.login();
  5218. }, 2000);
  5219. } else {
  5220. _formdiv = new U.UF.UI.form(
  5221. "課程管理",
  5222. $$("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 }), {
  5223. "id": "openCourseUpdate",
  5224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //創建窗體
  5229. break;
  5230. }
  5231. case "openCourseAiUpdate2":
  5232. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5233. setTimeout(() => {
  5234. U.MD.U.L.login();
  5235. }, 2000);
  5236. } else {
  5237. _formdiv = new U.UF.UI.form(
  5238. "課程管理",
  5239. $$("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 }), {
  5240. "id": "openCourseUpdate",
  5241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //創建窗體
  5246. break;
  5247. }
  5248. case "openCourseNewUpdate":
  5249. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5250. setTimeout(() => {
  5251. U.MD.U.L.login();
  5252. }, 2000);
  5253. } else {
  5254. _formdiv = new U.UF.UI.form(
  5255. "課程管理",
  5256. $$("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 }), {
  5257. "id": "openCourseUpdate",
  5258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5259. "onresize": function () { }
  5260. }, {
  5261. closecallback: function () { }
  5262. }, { "style": { "height": "36px" } }).form; //創建窗體
  5263. break;
  5264. }
  5265. case "inviteLoginSz":
  5266. _formdiv = new U.UF.UI.form(
  5267. "隨機碼登錄",
  5268. $$("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 }), {
  5269. "id": "loginSz",
  5270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //創建窗體
  5275. break;
  5276. case "loginSz":
  5277. _formdiv = new U.UF.UI.form(
  5278. "教師登錄",
  5279. $$("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" }), {
  5280. "id": "loginSz",
  5281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //創建窗體
  5286. break;
  5287. case "teacher":
  5288. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5289. setTimeout(() => {
  5290. U.MD.U.L.login();
  5291. }, 2000);
  5292. } else {
  5293. _formdiv = new U.UF.UI.form(
  5294. "教師管理",
  5295. $$("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 }), {
  5296. "id": "teacher",
  5297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //創建窗體
  5302. break;
  5303. }
  5304. case "dataBoardSZArea":
  5305. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5306. setTimeout(() => {
  5307. U.MD.U.L.login();
  5308. }, 2000);
  5309. } else {
  5310. _formdiv = new U.UF.UI.form(
  5311. "綜合數據看板",
  5312. $$("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 }), {
  5313. "id": "dataBoardSZArea",
  5314. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //創建窗體
  5319. break;
  5320. }
  5321. case "dataBoardSZCity":
  5322. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5323. setTimeout(() => {
  5324. U.MD.U.L.login();
  5325. }, 2000);
  5326. } else {
  5327. _formdiv = new U.UF.UI.form(
  5328. "綜合數據看板",
  5329. $$("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 }), {
  5330. "id": "dataBoardSZCity",
  5331. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5332. "onresize": function () { }
  5333. }, {
  5334. closecallback: function () { }
  5335. }, { "style": { "height": "36px" } }).form; //創建窗體
  5336. break;
  5337. }
  5338. case "classroom_observation_board":
  5339. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5340. setTimeout(() => {
  5341. U.MD.U.L.login();
  5342. }, 2000);
  5343. } else {
  5344. _formdiv = new U.UF.UI.form(
  5345. "課堂觀察",
  5346. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5347. "id": "classroom_observation_board",
  5348. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //創建窗體
  5353. break;
  5354. }
  5355. case "classroom_observation_ob_comment":
  5356. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5357. setTimeout(() => {
  5358. U.MD.U.L.login();
  5359. }, 2000);
  5360. } else {
  5361. _formdiv = new U.UF.UI.form(
  5362. "課堂審核",
  5363. $$("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 }), {
  5364. "id": "classroom_observation_ob_comment",
  5365. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //創建窗體
  5370. break;
  5371. }
  5372. }
  5373. }
  5374. U.MD.D.I.openApplication = function (str, obj, info) {
  5375. obj = obj || {};
  5376. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5377. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5378. _userinfo = US.userInfo, //登錄用戶信息
  5379. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5380. _oid = obj.organizeid || _userinfo.organizeid,
  5381. _type = US.userInfo.type,
  5382. _org = US.userInfo.org,
  5383. _role = US.userInfo.role,
  5384. _classId = US.userInfo.classid,
  5385. _TscreenType = 1
  5386. _screenType = 2,
  5387. _SscreenType = 3;
  5388. let iframeBool = true
  5389. if(U.UF.UI.form.allForm[str]){
  5390. iframeBool = false
  5391. }
  5392. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5393. return;
  5394. }
  5395. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5396. switch (str) {
  5397. case "studnetProject": //好友打開
  5398. _formdiv = new U.UF.UI.form(
  5399. "我的項目",
  5400. $$("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 }), {
  5401. "id": "studnetProject",
  5402. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5403. "onresize": function () { }
  5404. }, {
  5405. closecallback: function () { }
  5406. }, { "style": { "height": "36px" } }).form; //創建窗體
  5407. _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); } }
  5408. break;
  5409. case "studentEvaluate": //好友打開
  5410. _formdiv = new U.UF.UI.form(
  5411. "我的評價",
  5412. $$("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 }), {
  5413. "id": "studentEvaluate",
  5414. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5415. "onresize": function () { }
  5416. }, {
  5417. closecallback: function () { }
  5418. }, { "style": { "height": "36px" } }).form; //創建窗體
  5419. _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); } }
  5420. break;
  5421. case "my":
  5422. _formdiv = new U.UF.UI.form(
  5423. "我的資料",
  5424. $$("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 }), {
  5425. "id": "my",
  5426. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5427. "onresize": function () { }
  5428. }, {
  5429. closecallback: function () { }
  5430. }, { "style": { "height": "36px" } }).form; //創建窗體
  5431. _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); } }
  5432. break;
  5433. case "program":
  5434. _formdiv = new U.UF.UI.form(
  5435. "編程平臺",
  5436. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5437. "id": "program",
  5438. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5439. "onresize": function () { }
  5440. }, {
  5441. closecallback: function () { }
  5442. }, { "style": { "height": "36px" } }).form; //創建窗體
  5443. _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); } }
  5444. break;
  5445. case "library":
  5446. _formdiv = new U.UF.UI.form(
  5447. "素材庫",
  5448. $$("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 }), {
  5449. "id": "library",
  5450. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5451. "onresize": function () { }
  5452. }, {
  5453. closecallback: function () { }
  5454. }, { "style": { "height": "36px" } }).form; //創建窗體
  5455. _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); } }
  5456. break;
  5457. case "whiteboard":
  5458. _formdiv = new U.UF.UI.form(
  5459. "電子白板",
  5460. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5461. "id": "whiteboard",
  5462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //創建窗體
  5467. _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); } }
  5468. break;
  5469. case "investigation":
  5470. _formdiv = new U.UF.UI.form(
  5471. "問卷調查",
  5472. $$("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 }), {
  5473. "id": "investigation",
  5474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //創建窗體
  5479. _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); } }
  5480. break;
  5481. case "note":
  5482. _formdiv = new U.UF.UI.form(
  5483. "便簽分類",
  5484. $$("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 }), {
  5485. "id": "note",
  5486. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //創建窗體
  5491. _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); } }
  5492. break;
  5493. // case "score":
  5494. // _formdiv = new U.UF.UI.form(
  5495. // "量規評分",
  5496. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5497. // "id": "score",
  5498. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. // "onresize": function() {}
  5500. // }, {
  5501. // closecallback: function() {}
  5502. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5503. // _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); } }
  5504. // break;
  5505. case "mind":
  5506. _formdiv = new U.UF.UI.form(
  5507. "思維導圖",
  5508. $$("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"
  5509. "id": "mind",
  5510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //創建窗體
  5515. _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); } }
  5516. break;
  5517. case "doc":
  5518. // U.MD.D.I.isRoom();
  5519. _formdiv = new U.UF.UI.form(
  5520. "協同文檔",
  5521. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5522. "id": "doc",
  5523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5524. "onresize": function () { }
  5525. }, {
  5526. closecallback: function () { }
  5527. }, { "style": { "height": "36px" } }).form; //創建窗體
  5528. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5529. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5530. // })
  5531. _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); } }
  5532. break;
  5533. case "studentStudy":
  5534. _formdiv = new U.UF.UI.form(
  5535. "課程中心",
  5536. $$("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
  5537. "id": "studentStudy",
  5538. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //創建窗體
  5543. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5544. break;
  5545. case "train": //好友打開
  5546. _formdiv = new U.UF.UI.form(
  5547. "訓練平臺",
  5548. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5549. "id": "train",
  5550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //創建窗體
  5555. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5556. break;
  5557. case "mindNetwork": //好友打開
  5558. _formdiv = new U.UF.UI.form(
  5559. "思維網格",
  5560. $$("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 }), {
  5561. "id": "mindNetwork",
  5562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. "onresize": function () { }
  5564. }, {
  5565. closecallback: function () { }
  5566. }, { "style": { "height": "36px" } }).form; //創建窗體
  5567. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5568. break;
  5569. case "studentClassRoom": //好友打開
  5570. _formdiv = new U.UF.UI.form(
  5571. "實時課堂",
  5572. $$("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 }), {
  5573. "id": "studentClassRoom",
  5574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5575. "onresize": function () { }
  5576. }, {
  5577. closecallback: function () { }
  5578. }, { "style": { "height": "36px" } }).form; //創建窗體
  5579. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5580. setTimeout(() => {
  5581. U.UF.F.windowZooming(_formdiv)
  5582. }, 0);
  5583. break;
  5584. }
  5585. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5586. switch (str) {
  5587. case "studnetProject": //好友打開
  5588. _formdiv = new U.UF.UI.form(
  5589. "我的項目",
  5590. $$("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 }), {
  5591. "id": "studnetProject",
  5592. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //創建窗體
  5597. _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); } }
  5598. break;
  5599. case "studentEvaluate": //好友打開
  5600. _formdiv = new U.UF.UI.form(
  5601. "我的評價",
  5602. $$("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 }), {
  5603. "id": "studentEvaluate",
  5604. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //創建窗體
  5609. _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); } }
  5610. break;
  5611. case "my":
  5612. _formdiv = new U.UF.UI.form(
  5613. "我的資料",
  5614. $$("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 }), {
  5615. "id": "my",
  5616. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //創建窗體
  5621. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5622. break;
  5623. case "program":
  5624. _formdiv = new U.UF.UI.form(
  5625. "編程平臺",
  5626. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5627. "id": "program",
  5628. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //創建窗體
  5633. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5634. break;
  5635. case "library":
  5636. _formdiv = new U.UF.UI.form(
  5637. "素材庫",
  5638. $$("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 }), {
  5639. "id": "library",
  5640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5641. "onresize": function () { }
  5642. }, {
  5643. closecallback: function () { }
  5644. }, { "style": { "height": "36px" } }).form; //創建窗體
  5645. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材庫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5646. break;
  5647. case "whiteboard":
  5648. _formdiv = new U.UF.UI.form(
  5649. "電子白板",
  5650. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5651. "id": "whiteboard",
  5652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, { "style": { "height": "36px" } }).form; //創建窗體
  5657. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "電子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5658. break;
  5659. case "investigation":
  5660. _formdiv = new U.UF.UI.form(
  5661. "問卷調查",
  5662. $$("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 }), {
  5663. "id": "investigation",
  5664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //創建窗體
  5669. _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); } }
  5670. break;
  5671. case "note":
  5672. _formdiv = new U.UF.UI.form(
  5673. "便簽分類",
  5674. $$("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 }), {
  5675. "id": "note",
  5676. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5677. "onresize": function () { }
  5678. }, {
  5679. closecallback: function () { }
  5680. }, { "style": { "height": "36px" } }).form; //創建窗體
  5681. _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); } }
  5682. break;
  5683. // case "score":
  5684. // _formdiv = new U.UF.UI.form(
  5685. // "量規評分",
  5686. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5687. // "id": "score",
  5688. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5689. // "onresize": function() {}
  5690. // }, {
  5691. // closecallback: function() {}
  5692. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5693. // _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); } }
  5694. // break;
  5695. case "mind":
  5696. _formdiv = new U.UF.UI.form(
  5697. "思維導圖",
  5698. $$("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"
  5699. "id": "mind",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //創建窗體
  5705. _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); } }
  5706. break;
  5707. case "doc":
  5708. // U.MD.D.I.isRoom();
  5709. _formdiv = new U.UF.UI.form(
  5710. "協同文檔",
  5711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5712. "id": "doc",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //創建窗體
  5718. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5719. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5720. })
  5721. _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); } }
  5722. break;
  5723. case "train": //好友打開
  5724. _formdiv = new U.UF.UI.form(
  5725. "訓練平臺",
  5726. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5727. "id": "train",
  5728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //創建窗體
  5733. _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); } }
  5734. break;
  5735. case "studentStudy":
  5736. _formdiv = new U.UF.UI.form(
  5737. "課程中心",
  5738. $$("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
  5739. "id": "studentStudy",
  5740. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //創建窗體
  5745. _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); } }
  5746. break;
  5747. case "mindNetwork": //好友打開
  5748. _formdiv = new U.UF.UI.form(
  5749. "思維網格",
  5750. $$("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 }), {
  5751. "id": "mindNetwork",
  5752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //創建窗體
  5757. _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); } }
  5758. break;
  5759. case "studentClassRoom": //好友打開
  5760. _formdiv = new U.UF.UI.form(
  5761. "實時課堂",
  5762. $$("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 }), {
  5763. "id": "studentClassRoom",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //創建窗體
  5769. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5770. setTimeout(() => {
  5771. U.UF.F.windowZooming(_formdiv)
  5772. }, 0);
  5773. break;
  5774. }
  5775. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5776. //選擇應用處理
  5777. switch (str) {
  5778. case "project": //好友打開
  5779. _formdiv = new U.UF.UI.form(
  5780. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5781. $$("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 }), {
  5782. "id": "project",
  5783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5784. "onresize": function () { }
  5785. }, {
  5786. closecallback: function () { }
  5787. }, { "style": { "height": "36px" } }).form; //創建窗體
  5788. _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); } }
  5789. break;
  5790. case "student":
  5791. _formdiv = new U.UF.UI.form(
  5792. "學生管理",
  5793. $$("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 }), {
  5794. "id": "student",
  5795. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5796. "onresize": function () { }
  5797. }, {
  5798. closecallback: function () { }
  5799. }, { "style": { "height": "36px" } }).form; //創建窗體
  5800. _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); } }
  5801. break;
  5802. case "evaluate":
  5803. _formdiv = new U.UF.UI.form(
  5804. "學生評價",
  5805. $$("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 }), {
  5806. "id": "evaluate",
  5807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //創建窗體
  5812. _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); } }
  5813. break;
  5814. case "sys":
  5815. _formdiv = new U.UF.UI.form(
  5816. "目標管理",
  5817. $$("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 }), {
  5818. "id": "sys",
  5819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //創建窗體
  5824. _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); } }
  5825. break;
  5826. case "courseDesign":
  5827. _formdiv = new U.UF.UI.form(
  5828. "項目設計",
  5829. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5830. "id": "courseDesign",
  5831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5832. "onresize": function () { }
  5833. }, {
  5834. closecallback: function () { }
  5835. }, { "style": { "height": "36px" } }).form; //創建窗體
  5836. _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); } }
  5837. break;
  5838. case "program":
  5839. _formdiv = new U.UF.UI.form(
  5840. "編程平臺",
  5841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5842. "id": "program",
  5843. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //創建窗體
  5848. _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); } }
  5849. break;
  5850. case "class":
  5851. _formdiv = new U.UF.UI.form(
  5852. "班級管理",
  5853. $$("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 }), {
  5854. "id": "class",
  5855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //創建窗體
  5860. _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); } }
  5861. break;
  5862. case "Grade":
  5863. _formdiv = new U.UF.UI.form(
  5864. "年級管理",
  5865. $$("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 }), {
  5866. "id": "Grade",
  5867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //創建窗體
  5872. _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); } }
  5873. break;
  5874. case "teacherOffice":
  5875. _formdiv = new U.UF.UI.form(
  5876. "教研室",
  5877. $$("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 }), {
  5878. "id": "teacherOffice",
  5879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //創建窗體
  5884. _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); } }
  5885. break;
  5886. case "my":
  5887. _formdiv = new U.UF.UI.form(
  5888. "我的資料",
  5889. $$("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 }), {
  5890. "id": "my",
  5891. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //創建窗體
  5896. _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); } }
  5897. break;
  5898. case "notice":
  5899. _formdiv = new U.UF.UI.form(
  5900. "通知公告",
  5901. $$("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 }), {
  5902. "id": "notice",
  5903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //創建窗體
  5908. _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); } }
  5909. break;
  5910. case "library":
  5911. _formdiv = new U.UF.UI.form(
  5912. "素材庫",
  5913. $$("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 }), {
  5914. "id": "library",
  5915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5916. "onresize": function () { }
  5917. }, {
  5918. closecallback: function () { }
  5919. }, { "style": { "height": "36px" } }).form; //創建窗體
  5920. _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); } }
  5921. break;
  5922. case "whiteboard":
  5923. _formdiv = new U.UF.UI.form(
  5924. "電子白板",
  5925. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5926. "id": "whiteboard",
  5927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5928. "onresize": function () { }
  5929. }, {
  5930. closecallback: function () { }
  5931. }, { "style": { "height": "36px" } }).form; //創建窗體
  5932. _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); } }
  5933. break;
  5934. case "investigation":
  5935. _formdiv = new U.UF.UI.form(
  5936. "問卷調查",
  5937. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5938. "id": "investigation",
  5939. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //創建窗體
  5944. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5945. break;
  5946. case "note":
  5947. _formdiv = new U.UF.UI.form(
  5948. "便簽分類",
  5949. $$("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 }), {
  5950. "id": "note",
  5951. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, { "style": { "height": "36px" } }).form; //創建窗體
  5956. _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); } }
  5957. break;
  5958. // case "score":
  5959. // _formdiv = new U.UF.UI.form(
  5960. // "量規評分",
  5961. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5962. // "id": "score",
  5963. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5964. // "onresize": function() {}
  5965. // }, {
  5966. // closecallback: function() {}
  5967. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5968. // _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); } }
  5969. // break;
  5970. case "mind":
  5971. _formdiv = new U.UF.UI.form(
  5972. "思維導圖",
  5973. $$("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"
  5974. "id": "mind",
  5975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //創建窗體
  5980. _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); } }
  5981. break;
  5982. case "doc":
  5983. // U.MD.D.I.isRoom();
  5984. _formdiv = new U.UF.UI.form(
  5985. "協同文檔",
  5986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5987. "id": "doc",
  5988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5989. "onresize": function () { }
  5990. }, {
  5991. closecallback: function () { }
  5992. }, { "style": { "height": "36px" } }).form; //創建窗體
  5993. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5994. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5995. })
  5996. _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); } }
  5997. break;
  5998. case "study":
  5999. _formdiv = new U.UF.UI.form(
  6000. "課程中心",
  6001. $$("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
  6002. "id": "study",
  6003. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //創建窗體
  6008. _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); } }
  6009. break;
  6010. case "mindNetwork": //好友打開
  6011. _formdiv = new U.UF.UI.form(
  6012. "思維網格",
  6013. $$("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 }), {
  6014. "id": "mindNetwork",
  6015. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //創建窗體
  6020. _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); } }
  6021. break;
  6022. case "train": //好友打開
  6023. _formdiv = new U.UF.UI.form(
  6024. "訓練平臺",
  6025. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6026. "id": "mindNetwork",
  6027. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6028. "onresize": function () { }
  6029. }, {
  6030. closecallback: function () { }
  6031. }, { "style": { "height": "36px" } }).form; //創建窗體
  6032. _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); } }
  6033. break;
  6034. case "teacherClassRoom": //好友打開
  6035. _formdiv = new U.UF.UI.form(
  6036. "實時課堂",
  6037. $$("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 }), {
  6038. "id": "teacherClassRoom",
  6039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //創建窗體
  6044. _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); } }
  6045. setTimeout(() => {
  6046. U.UF.F.windowZooming(_formdiv)
  6047. }, 0);
  6048. break;
  6049. }
  6050. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6051. switch (str) {
  6052. case "project": //好友打開
  6053. _formdiv = new U.UF.UI.form(
  6054. "課程管理",
  6055. $$("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 }), {
  6056. "id": "project",
  6057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //創建窗體
  6062. _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); } }
  6063. break;
  6064. case "evaluate":
  6065. _formdiv = new U.UF.UI.form(
  6066. "學生評價",
  6067. $$("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 }), {
  6068. "id": "evaluate",
  6069. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //創建窗體
  6074. _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); } }
  6075. break;
  6076. case "notice":
  6077. _formdiv = new U.UF.UI.form(
  6078. "通知公告",
  6079. $$("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 }), {
  6080. "id": "notice",
  6081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //創建窗體
  6086. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6087. break;
  6088. case "stuLibrary":
  6089. _formdiv = new U.UF.UI.form(
  6090. "學習資料",
  6091. $$("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 }), {
  6092. "id": "stuLibrary",
  6093. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //創建窗體
  6098. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "學習資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6099. break;
  6100. case "program":
  6101. _formdiv = new U.UF.UI.form(
  6102. "編程平臺",
  6103. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6104. "id": "program",
  6105. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, { "style": { "height": "36px" } }).form; //創建窗體
  6110. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6111. break;
  6112. case "whiteboard":
  6113. _formdiv = new U.UF.UI.form(
  6114. "電子白板",
  6115. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6116. "id": "whiteboard",
  6117. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //創建窗體
  6122. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "電子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6123. break;
  6124. case "investigation":
  6125. _formdiv = new U.UF.UI.form(
  6126. "問卷調查",
  6127. $$("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 }), {
  6128. "id": "investigation",
  6129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, { "style": { "height": "36px" } }).form; //創建窗體
  6134. _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); } }
  6135. break;
  6136. case "mind":
  6137. _formdiv = new U.UF.UI.form(
  6138. "思維導圖",
  6139. $$("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"
  6140. "id": "mind",
  6141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6142. "onresize": function () { }
  6143. }, {
  6144. closecallback: function () { }
  6145. }, { "style": { "height": "36px" } }).form; //創建窗體
  6146. _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); } }
  6147. break;
  6148. case "doc":
  6149. // U.MD.D.I.isRoom();
  6150. _formdiv = new U.UF.UI.form(
  6151. "協同文檔",
  6152. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6153. "id": "doc",
  6154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //創建窗體
  6159. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6160. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6161. })
  6162. _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); } }
  6163. break;
  6164. case "study":
  6165. _formdiv = new U.UF.UI.form(
  6166. "課程中心",
  6167. $$("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
  6168. "id": "study",
  6169. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, { "style": { "height": "36px" } }).form; //創建窗體
  6174. _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); } }
  6175. break;
  6176. case "mindNetwork": //好友打開
  6177. _formdiv = new U.UF.UI.form(
  6178. "思維網格",
  6179. $$("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 }), {
  6180. "id": "mindNetwork",
  6181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6182. "onresize": function () { }
  6183. }, {
  6184. closecallback: function () { }
  6185. }, { "style": { "height": "36px" } }).form; //創建窗體
  6186. _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); } }
  6187. break;
  6188. case "train": //好友打開
  6189. _formdiv = new U.UF.UI.form(
  6190. "訓練平臺",
  6191. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6192. "id": "train",
  6193. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6194. "onresize": function () { }
  6195. }, {
  6196. closecallback: function () { }
  6197. }, { "style": { "height": "36px" } }).form; //創建窗體
  6198. _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); } }
  6199. break;
  6200. case "sys":
  6201. _formdiv = new U.UF.UI.form(
  6202. "目標管理",
  6203. $$("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 }), {
  6204. "id": "sys",
  6205. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6206. "onresize": function () { }
  6207. }, {
  6208. closecallback: function () { }
  6209. }, { "style": { "height": "36px" } }).form; //創建窗體
  6210. _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); } }
  6211. break;
  6212. case "courseDesign":
  6213. _formdiv = new U.UF.UI.form(
  6214. "項目設計",
  6215. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6216. "id": "courseDesign",
  6217. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6218. "onresize": function () { }
  6219. }, {
  6220. closecallback: function () { }
  6221. }, { "style": { "height": "36px" } }).form; //創建窗體
  6222. _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); } }
  6223. break;
  6224. }
  6225. } else if (!_type) {
  6226. switch (str) {
  6227. case "my":
  6228. _formdiv = new U.UF.UI.form(
  6229. "我的資料",
  6230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6231. "id": "my",
  6232. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //創建窗體
  6237. _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); } }
  6238. break;
  6239. }
  6240. }
  6241. switch (str) {
  6242. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6243. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6244. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6245. case "formulaEdi": //公式編輯
  6246. _formdiv = new U.UF.UI.form(
  6247. "公式編輯",
  6248. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6249. "id": "formulaEdi",
  6250. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //創建窗體
  6255. _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); } }
  6256. break;
  6257. case "molStr": //分子結構
  6258. _formdiv = new U.UF.UI.form(
  6259. "分子結構",
  6260. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6261. "id": "molStr",
  6262. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //創建窗體
  6267. _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); } }
  6268. break;
  6269. case "timeAxis": //時間軸
  6270. _formdiv = new U.UF.UI.form(
  6271. "時間軸",
  6272. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6273. "id": "timeAxis",
  6274. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //創建窗體
  6279. _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); } }
  6280. break;
  6281. case "AIprogram2": //AI體驗
  6282. _formdiv = new U.UF.UI.form(
  6283. "AI體驗",
  6284. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6285. "id": "AIprogram2",
  6286. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //創建窗體
  6291. _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); } }
  6292. break;
  6293. case "Pythonprogram": //python編程
  6294. _formdiv = new U.UF.UI.form(
  6295. "Python編程",
  6296. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6297. "id": "Pythonprogram",
  6298. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //創建窗體
  6303. _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); } }
  6304. break;
  6305. case "AIprogram": //ai編程
  6306. _formdiv = new U.UF.UI.form(
  6307. "AI編程平臺",
  6308. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6309. "id": "AIprogram",
  6310. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //創建窗體
  6315. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6316. break;
  6317. case "CocoPi": //CocoPi
  6318. _formdiv = new U.UF.UI.form(
  6319. "CocoPi",
  6320. $$("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" }), {
  6321. "id": "CocoPi",
  6322. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //創建窗體
  6327. _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); } }
  6328. break;
  6329. case "Wood": //Wood
  6330. _formdiv = new U.UF.UI.form(
  6331. "海龜編程",
  6332. $$("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/" }), {
  6333. "id": "Wood",
  6334. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //創建窗體
  6339. _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); } }
  6340. break;
  6341. case "car": //模擬駕駛
  6342. _formdiv = new U.UF.UI.form(
  6343. "模擬駕駛",
  6344. $$("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/" }), {
  6345. "id": "car",
  6346. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //創建窗體
  6351. _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); } }
  6352. break;
  6353. case "lineSearch": //路徑搜索
  6354. _formdiv = new U.UF.UI.form(
  6355. "路徑搜索",
  6356. $$("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/" }), {
  6357. "id": "lineSearch",
  6358. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //創建窗體
  6363. _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); } }
  6364. break;
  6365. case "deepLearning": //深度學習
  6366. _formdiv = new U.UF.UI.form(
  6367. "深度學習",
  6368. $$("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/#" }), {
  6369. "id": "deepLearning",
  6370. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //創建窗體
  6375. _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); } }
  6376. break;
  6377. case "allHistory": //深度學習
  6378. _formdiv = new U.UF.UI.form(
  6379. "全歷史",
  6380. $$("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/" }), {
  6381. "id": "allHistory",
  6382. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //創建窗體
  6387. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全歷史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6388. break;
  6389. case "chatPDF": //ai編程
  6390. _formdiv = new U.UF.UI.form(
  6391. "chatPDF",
  6392. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6393. "id": "chatPDF",
  6394. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //創建窗體
  6399. _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); } }
  6400. break;
  6401. case "resources": //國家教育
  6402. _formdiv = new U.UF.UI.form(
  6403. "國家教育",
  6404. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6405. "id": "resources",
  6406. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //創建窗體
  6411. _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); } }
  6412. break;
  6413. case "codeEdit": //源碼編輯
  6414. _formdiv = new U.UF.UI.form(
  6415. "源碼編輯",
  6416. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6417. "id": "codeEdit",
  6418. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //創建窗體
  6423. _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); } }
  6424. break; //
  6425. case "MindMap": //MindMap
  6426. _formdiv = new U.UF.UI.form(
  6427. "MindMap",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6429. "id": "MindMap",
  6430. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //創建窗體
  6435. _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); } }
  6436. break;
  6437. case "netWorkPanel": //netWorkPanel
  6438. _formdiv = new U.UF.UI.form(
  6439. "netWorkPanel",
  6440. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6441. "id": "netWorkPanel",
  6442. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6443. "onresize": function () { }
  6444. }, {
  6445. closecallback: function () { }
  6446. }, { "style": { "height": "36px" } }).form; //創建窗體
  6447. _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); } }
  6448. break;
  6449. case "GeoGebra": //GeoGebra
  6450. _formdiv = new U.UF.UI.form(
  6451. "GeoGebra",
  6452. $$("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" }), {
  6453. "id": "GeoGebra",
  6454. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6455. "onresize": function () { }
  6456. }, {
  6457. closecallback: function () { }
  6458. }, { "style": { "height": "36px" } }).form; //創建窗體
  6459. _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); } }
  6460. break;
  6461. case "translation": //翻譯
  6462. _formdiv = new U.UF.UI.form(
  6463. "翻譯",
  6464. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6465. "id": "translation",
  6466. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6467. "onresize": function () { }
  6468. }, {
  6469. closecallback: function () { }
  6470. }, { "style": { "height": "36px" } }).form; //創建窗體
  6471. _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); } }
  6472. break;
  6473. case "mohe": //魔盒
  6474. _formdiv = new U.UF.UI.form(
  6475. "魔盒識字",
  6476. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6477. "id": "mohe",
  6478. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6479. "onresize": function () { }
  6480. }, {
  6481. closecallback: function () { }
  6482. }, { "style": { "height": "36px" } }).form; //創建窗體
  6483. _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); } }
  6484. break;
  6485. case "24game": //24點
  6486. _formdiv = new U.UF.UI.form(
  6487. "24點",
  6488. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6489. "id": "24game",
  6490. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6491. "onresize": function () { }
  6492. }, {
  6493. closecallback: function () { }
  6494. }, { "style": { "height": "36px" } }).form; //創建窗體
  6495. _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); } }
  6496. break;
  6497. case "case":
  6498. _formdiv = new U.UF.UI.form(
  6499. "課程進展",
  6500. $$("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 }), {
  6501. "id": "case",
  6502. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //創建窗體
  6507. _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); } }
  6508. break;
  6509. case "snf":
  6510. _formdiv = new U.UF.UI.form(
  6511. "賽諾梵",
  6512. $$("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" }), {
  6513. "id": "snf",
  6514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, { "style": { "height": "36px" } }).form; //創建窗體
  6519. _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); } }
  6520. break;
  6521. case "hanFamily":
  6522. _formdiv = new U.UF.UI.form(
  6523. "漢字家族",
  6524. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6525. "id": "hanFamily",
  6526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //創建窗體
  6531. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "漢字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6532. break;
  6533. case "hanClassics":
  6534. _formdiv = new U.UF.UI.form(
  6535. "國學經典",
  6536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6537. "id": "hanClassics",
  6538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //創建窗體
  6543. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "國學經典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6544. break;
  6545. case "hanTraining":
  6546. _formdiv = new U.UF.UI.form(
  6547. "筆畫訓練",
  6548. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6549. "id": "hanTraining",
  6550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6551. "onresize": function () { }
  6552. }, {
  6553. closecallback: function () { }
  6554. }, { "style": { "height": "36px" } }).form; //創建窗體
  6555. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "筆畫訓練", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6556. break;
  6557. case "hanClass":
  6558. _formdiv = new U.UF.UI.form(
  6559. "書法課堂",
  6560. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6561. "id": "hanClass",
  6562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6563. "onresize": function () { }
  6564. }, {
  6565. closecallback: function () { }
  6566. }, { "style": { "height": "36px" } }).form; //創建窗體
  6567. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "書法課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6568. break;
  6569. case "han":
  6570. _formdiv = new U.UF.UI.form(
  6571. "漢字宮",
  6572. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6573. "id": "han",
  6574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6575. "onresize": function () { }
  6576. }, {
  6577. closecallback: function () { }
  6578. }, { "style": { "height": "36px" } }).form; //創建窗體
  6579. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "漢字宮", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6580. break;
  6581. case "projectGM": //課程管理
  6582. _formdiv = new U.UF.UI.form(
  6583. "課程管理",
  6584. $$("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 }), {
  6585. "id": "projectGM",
  6586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, { "style": { "height": "36px" } }).form; //創建窗體
  6591. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6592. break;
  6593. case "studyGM": //課程中心
  6594. _formdiv = new U.UF.UI.form(
  6595. "課程中心",
  6596. $$("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
  6597. "id": "study",
  6598. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () { }
  6602. }, { "style": { "height": "36px" } }).form; //創建窗體
  6603. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6604. break;
  6605. // studentGM
  6606. case "studentGM": //學生管理
  6607. _formdiv = new U.UF.UI.form(
  6608. "學生管理",
  6609. $$("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 }), {
  6610. "id": "studentGM",
  6611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //創建窗體
  6616. _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); } }
  6617. break;
  6618. case "evaluateGM": //學生評價
  6619. _formdiv = new U.UF.UI.form(
  6620. "學生評價",
  6621. $$("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 }), {
  6622. "id": "evaluateGM",
  6623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //創建窗體
  6628. _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); } }
  6629. break;
  6630. // classGM
  6631. case "classGM": //班級管理
  6632. _formdiv = new U.UF.UI.form(
  6633. "班級管理",
  6634. $$("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 }), {
  6635. "id": "classGM",
  6636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6637. "onresize": function () { }
  6638. }, {
  6639. closecallback: function () { }
  6640. }, { "style": { "height": "36px" } }).form; //創建窗體
  6641. _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); } }
  6642. break;
  6643. // dataGM
  6644. case "dataGM":
  6645. _formdiv = new U.UF.UI.form(
  6646. "我的資料",
  6647. $$("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 }), {
  6648. "id": "dataGM",
  6649. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6650. "onresize": function () { }
  6651. }, {
  6652. closecallback: function () { }
  6653. }, { "style": { "height": "36px" } }).form; //創建窗體
  6654. _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); } }
  6655. break;
  6656. // caseGM
  6657. case "caseGM": //課程進展
  6658. _formdiv = new U.UF.UI.form(
  6659. "課程進展",
  6660. $$("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 }), {
  6661. "id": "caseGM",
  6662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //創建窗體
  6667. _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); } }
  6668. break;
  6669. // meterialGM
  6670. case "meterialGM": //素材庫
  6671. _formdiv = new U.UF.UI.form(
  6672. "素材庫",
  6673. $$("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 }), {
  6674. "id": "meterialGM",
  6675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //創建窗體
  6680. _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); } }
  6681. break;
  6682. // evaluateSGM
  6683. case "evaluateSGM": //我的評價
  6684. _formdiv = new U.UF.UI.form(
  6685. "我的評價",
  6686. $$("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 }), {
  6687. "id": "evaluateSGM",
  6688. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //創建窗體
  6693. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6694. break;
  6695. case "jupyter": //jupyter
  6696. _formdiv = new U.UF.UI.form(
  6697. "jupyter",
  6698. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6699. "id": "jupyter",
  6700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //創建窗體
  6705. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6706. break;
  6707. case "number": //數字實驗室
  6708. _formdiv = new U.UF.UI.form(
  6709. "數字實驗室",
  6710. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6711. "id": "number",
  6712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //創建窗體
  6717. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "數字實驗室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6718. break;
  6719. case "studentCourse": //項目管理 學生
  6720. _formdiv = new U.UF.UI.form(
  6721. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6722. $$("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 }), {
  6723. "id": "studentCourse",
  6724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //創建窗體
  6729. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6730. break;
  6731. case "studentCourseS": //項目管理 老師
  6732. _formdiv = new U.UF.UI.form(
  6733. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6734. $$("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 }), {
  6735. "id": "studentCourseS",
  6736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //創建窗體
  6741. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6742. break;
  6743. case "studentIndex": //項目中心
  6744. _formdiv = new U.UF.UI.form(
  6745. "項目中心",
  6746. $$("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 }), {
  6747. "id": "studentIndex",
  6748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //創建窗體
  6753. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6754. break;
  6755. case "CaseDesignS":
  6756. _formdiv = new U.UF.UI.form(
  6757. "項目進展",
  6758. $$("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 }), {
  6759. "id": "case",
  6760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //創建窗體
  6765. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "項目進展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6766. break;
  6767. case "tcStudent": //騰訊學生管理
  6768. _formdiv = new U.UF.UI.form(
  6769. "學生管理",
  6770. $$("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 }), {
  6771. "id": "tcStudent",
  6772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, { "style": { "height": "36px" } }).form; //創建窗體
  6777. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "學生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6778. break;
  6779. case "tcSchool": //騰訊學校管理
  6780. _formdiv = new U.UF.UI.form(
  6781. "學校管理",
  6782. $$("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 }), {
  6783. "id": "tcSchool",
  6784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //創建窗體
  6789. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "學校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6790. break;
  6791. case "tcTeacher": //騰訊學校管理
  6792. _formdiv = new U.UF.UI.form(
  6793. "教師管理",
  6794. $$("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 }), {
  6795. "id": "tcTeacher",
  6796. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //創建窗體
  6801. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教師管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6802. break;
  6803. case "teacher":
  6804. _formdiv = new U.UF.UI.form(
  6805. "教師管理",
  6806. $$("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 }), {
  6807. "id": "teacher",
  6808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6809. "onresize": function () { }
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //創建窗體
  6813. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教師管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6814. break;
  6815. case "tcData": //騰訊我的資料
  6816. _formdiv = new U.UF.UI.form(
  6817. "我的資料",
  6818. $$("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 }), {
  6819. "id": "tcData",
  6820. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //創建窗體
  6825. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6826. break;
  6827. case "tcNotice": //騰訊消息通知
  6828. _formdiv = new U.UF.UI.form(
  6829. "消息通知",
  6830. $$("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 }), {
  6831. "id": "tcNotice",
  6832. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //創建窗體
  6837. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6838. break;
  6839. case "myReport": //好友打開
  6840. _formdiv = new U.UF.UI.form(
  6841. "我的評價",
  6842. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6843. "id": "myReport",
  6844. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //創建窗體
  6849. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6850. break;
  6851. case "learnAna": //好友打開
  6852. _formdiv = new U.UF.UI.form(
  6853. "學習分析",
  6854. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6855. "id": "learnAna",
  6856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //創建窗體
  6861. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "學習分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6862. break;
  6863. case "AIChat": //AI共創
  6864. _formdiv = new U.UF.UI.form(
  6865. "AI共創",
  6866. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  6867. "id": "AIChat",
  6868. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. istop: true,
  6872. closecallback: function () { $("#aichat_icon").remove(); },
  6873. narrowcallback: function () {
  6874. if (!$("#aichat_icon")[0]) {
  6875. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6876. }
  6877. },
  6878. }, { "style": { "height": "36px" } }).form; //創建窗體
  6879. _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); } }
  6880. break;
  6881. case "ainew": //AI共創
  6882. _formdiv = new U.UF.UI.form(
  6883. "AI協同",
  6884. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  6885. "id": "ainew",
  6886. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6887. "onresize": function () { }
  6888. }, {
  6889. closecallback: function () { }
  6890. }, { "style": { "height": "36px" } }).form; //創建窗體
  6891. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI協同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6892. break;
  6893. case "gpt4": //gpt4
  6894. _formdiv = new U.UF.UI.form(
  6895. "AI助手",
  6896. $$("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 }), {
  6897. "id": "gpt4",
  6898. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //創建窗體
  6903. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6904. break;
  6905. case "aigpt": //gpt4
  6906. _formdiv = new U.UF.UI.form(
  6907. "AI助手+",
  6908. $$("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 }), {
  6909. "id": "aigpt",
  6910. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6911. "onresize": function () { }
  6912. }, {
  6913. closecallback: function () {
  6914. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6915. }
  6916. }, { "style": { "height": "36px" } }).form; //創建窗體
  6917. _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); } }
  6918. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6919. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6920. })
  6921. break;
  6922. case "aiKnowledge": //aiKnowledge
  6923. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  6924. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6925. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6926. }
  6927. _formdiv = new U.UF.UI.form(
  6928. "知識建構",
  6929. $$("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 }), {
  6930. "id": "aiKnowledge",
  6931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6932. "onresize": function () { }
  6933. }, {
  6934. closecallback: function () { }
  6935. }, { "style": { "height": "36px" } }).form; //創建窗體
  6936. _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); } }
  6937. break;
  6938. case "futureClass": //AI共創
  6939. _formdiv = new U.UF.UI.form(
  6940. "協同建構",
  6941. $$("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
  6942. "id": "synergyCourse",
  6943. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6944. "onresize": function () { }
  6945. }, {
  6946. closecallback: function () {
  6947. $("iframe", _formdiv)[0].contentWindow.loginout();
  6948. }
  6949. }, { "style": { "height": "36px" } }).form; //創建窗體
  6950. _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); } }
  6951. break;
  6952. case "aiagent": //ai agent
  6953. _formdiv = new U.UF.UI.form(
  6954. "AI Agent",
  6955. $$("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" }), {
  6956. "id": "AIAgent",
  6957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //創建窗體
  6962. _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); } }
  6963. break;
  6964. case "dataBoard": //數據看板
  6965. _formdiv = new U.UF.UI.form(
  6966. "數據看板",
  6967. $$("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 }), {
  6968. "id": "dataBoard",
  6969. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //創建窗體
  6974. _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); } }
  6975. break;
  6976. case "dataBoardSies": //數據融合
  6977. _formdiv = new U.UF.UI.form(
  6978. "數據融合",
  6979. $$("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 }), {
  6980. "id": "dataBoardSies",
  6981. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //創建窗體
  6986. _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); } }
  6987. break;
  6988. case "dataBoardNew": //數據看板
  6989. _formdiv = new U.UF.UI.form(
  6990. "綜合看板",
  6991. $$("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 }), {
  6992. "id": "dataBoardNew",
  6993. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6994. "onresize": function () { }
  6995. }, {
  6996. closecallback: function () { }
  6997. }, { "style": { "height": "36px" } }).form; //創建窗體
  6998. _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); } }
  6999. break;
  7000. case "dataBoardTest": //數據看板
  7001. _formdiv = new U.UF.UI.form(
  7002. "評測看板",
  7003. $$("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 }), {
  7004. "id": "dataBoardTest",
  7005. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7006. "onresize": function () { }
  7007. }, {
  7008. closecallback: function () { }
  7009. }, { "style": { "height": "36px" } }).form; //創建窗體
  7010. _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); } }
  7011. break;
  7012. case "AIAnalyse": //AI共創
  7013. _formdiv = new U.UF.UI.form(
  7014. "AI分析",
  7015. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  7016. "id": "AIAnalyse",
  7017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7018. "onresize": function () { }
  7019. }, {
  7020. closecallback: function () { }
  7021. }, { "style": { "height": "36px" } }).form; //創建窗體
  7022. _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); } }
  7023. break;
  7024. case "studioCourse": //AI共創
  7025. _formdiv = new U.UF.UI.form(
  7026. "工作管理",
  7027. $$("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 }), {
  7028. "id": "studioCourse",
  7029. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7030. "onresize": function () { }
  7031. }, {
  7032. closecallback: function () { }
  7033. }, { "style": { "height": "36px" } }).form; //創建窗體
  7034. _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); } }
  7035. break;
  7036. case "studioIndex": //AI共創
  7037. _formdiv = new U.UF.UI.form(
  7038. "工作中心",
  7039. $$("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 }), {
  7040. "id": "studioIndex",
  7041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7042. "onresize": function () { }
  7043. }, {
  7044. closecallback: function () { }
  7045. }, { "style": { "height": "36px" } }).form; //創建窗體
  7046. _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); } }
  7047. break;
  7048. case "source":
  7049. _formdiv = new U.UF.UI.form(
  7050. "教學資源",
  7051. $$("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 }), {
  7052. "id": "source",
  7053. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7054. "onresize": function () { }
  7055. }, {
  7056. closecallback: function () { }
  7057. }, { "style": { "height": "36px" } }).form; //創建窗體
  7058. _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); } }
  7059. break;
  7060. case "testTeacher":
  7061. _formdiv = new U.UF.UI.form(
  7062. "智能表單",
  7063. $$("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 }), {
  7064. "id": "testTeacher",
  7065. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7066. "onresize": function () { }
  7067. }, {
  7068. closecallback: function () { }
  7069. }, { "style": { "height": "36px" } }).form; //創建窗體
  7070. _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); } }
  7071. break;
  7072. case "testStudent":
  7073. _formdiv = new U.UF.UI.form(
  7074. "教師中心",
  7075. $$("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 }), {
  7076. "id": "testStudent",
  7077. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7078. "onresize": function () { }
  7079. }, {
  7080. closecallback: function () { }
  7081. }, { "style": { "height": "36px" } }).form; //創建窗體
  7082. _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); } }
  7083. break;
  7084. case "testTeacherSies":
  7085. _formdiv = new U.UF.UI.form(
  7086. "教師管理",
  7087. $$("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 }), {
  7088. "id": "testTeacherSies",
  7089. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7090. "onresize": function () { }
  7091. }, {
  7092. closecallback: function () { }
  7093. }, { "style": { "height": "36px" } }).form; //創建窗體
  7094. _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); } }
  7095. break;
  7096. case "testStudentSies":
  7097. _formdiv = new U.UF.UI.form(
  7098. "教師中心",
  7099. $$("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 }), {
  7100. "id": "testStudentSies",
  7101. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7102. "onresize": function () { }
  7103. }, {
  7104. closecallback: function () { }
  7105. }, { "style": { "height": "36px" } }).form; //創建窗體
  7106. _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); } }
  7107. break;
  7108. case "ytpbl": //消息通知
  7109. _formdiv = new U.UF.UI.form(
  7110. "案例征集",
  7111. $$("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 }), {
  7112. "id": "ytpbl",
  7113. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7114. "onresize": function () { }
  7115. }, {
  7116. closecallback: function () { }
  7117. }, { "style": { "height": "36px" } }).form; //創建窗體
  7118. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7119. // 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");
  7120. break;
  7121. case "aiCourseResource": //人工智能窗體
  7122. _formdiv = new U.UF.UI.form(
  7123. false,
  7124. $$("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 }), {
  7125. "id": "aiCourseResource",
  7126. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7127. "onresize": function () { },
  7128. "isdrag": false,
  7129. }, {
  7130. closecallback: function () { }
  7131. }, { "style": { "height": "36px" } }).form; //創建窗體
  7132. _taskbar = ''
  7133. break;
  7134. case "szdjgCocooroboX": //圖形化編程
  7135. _formdiv = new U.UF.UI.form(
  7136. "圖形化編程",
  7137. $$("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" }), {
  7138. "id": "szdjgCocooroboX",
  7139. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7140. "onresize": function () { }
  7141. }, {
  7142. closecallback: function () { }
  7143. }, { "style": { "height": "36px" } }).form; //創建窗體
  7144. _taskbar = ''
  7145. break;
  7146. case "szdjgPython": //python編程
  7147. _formdiv = new U.UF.UI.form(
  7148. "Python編程",
  7149. $$("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" }), {
  7150. "id": "szdjgPython",
  7151. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7152. "onresize": function () { }
  7153. }, {
  7154. closecallback: function () { }
  7155. }, { "style": { "height": "36px" } }).form; //創建窗體
  7156. _taskbar = ''
  7157. break;
  7158. case "Record":
  7159. _formdiv = new U.UF.UI.form(
  7160. "觀察記錄",
  7161. $$("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 }), {
  7162. "id": "Record",
  7163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7164. "onresize": function () { }
  7165. }, {
  7166. closecallback: function () { }
  7167. }, { "style": { "height": "36px" } }).form; //創建窗體
  7168. _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); } }
  7169. break;
  7170. case "aigptCourse":
  7171. _formdiv = new U.UF.UI.form(
  7172. "AI智能體",
  7173. $$("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' }), {
  7174. "id": "aigptCourse",
  7175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7176. "onresize": function () { }
  7177. }, {
  7178. closecallback: function () { }
  7179. }, { "style": { "height": "36px" } }).form; //創建窗體
  7180. _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); } }
  7181. break;
  7182. case "classroomObservation":
  7183. _formdiv = new U.UF.UI.form(
  7184. "課堂觀察",
  7185. $$("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 }), {
  7186. "id": "classroomObservation",
  7187. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7188. "onresize": function () { }
  7189. }, {
  7190. closecallback: function () { }
  7191. }, { "style": { "height": "36px" } }).form; //創建窗體
  7192. _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); } }
  7193. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7194. break;
  7195. case "pblCourse":
  7196. _formdiv = new U.UF.UI.form(
  7197. "學生PBL",
  7198. $$("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 }), {
  7199. "id": "pblCourse",
  7200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7201. "onresize": function () { }
  7202. }, {
  7203. closecallback: function () { }
  7204. }, { "style": { "height": "36px" } }).form; //創建窗體
  7205. _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); } }
  7206. break;
  7207. case "appStore":
  7208. _formdiv = new U.UF.UI.form(
  7209. "CocoFlow",
  7210. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.hk/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7211. "id": "appStore",
  7212. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7213. "onresize": function () { }
  7214. }, {
  7215. closecallback: function () { }
  7216. }, { "style": { "height": "36px" } }).form; //創建窗體
  7217. _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); } }
  7218. break;
  7219. case "sassPlatform":
  7220. _formdiv = new U.UF.UI.form(
  7221. "Sass通用後臺管理",
  7222. $$("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 }), {
  7223. "id": "sassPlatform",
  7224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7225. "onresize": function () { }
  7226. }, {
  7227. closecallback: function () { }
  7228. }, { "style": { "height": "36px" } }).form; //創建窗體
  7229. _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); } }
  7230. break;
  7231. case "EDU":
  7232. _formdiv = new U.UF.UI.form(
  7233. "EDU",
  7234. $$("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" }), {
  7235. "id": "EDU",
  7236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7237. "onresize": function () { }
  7238. }, {
  7239. closecallback: function () { }
  7240. }, { "style": { "height": "36px" } }).form; //創建窗體
  7241. _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); } }
  7242. break;
  7243. case "knowledge":
  7244. _formdiv = new U.UF.UI.form(
  7245. "知識庫",
  7246. $$("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 }), {
  7247. "id": "knowledge",
  7248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7249. "onresize": function () { }
  7250. }, {
  7251. closecallback: function () { }
  7252. }, { "style": { "height": "36px" } }).form; //創建窗體
  7253. _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); } }
  7254. break;
  7255. case "userExamine":
  7256. _formdiv = new U.UF.UI.form(
  7257. "賬號申請",
  7258. $$("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" }), {
  7259. "id": "userExamine",
  7260. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7261. "onresize": function () { }
  7262. }, {
  7263. closecallback: function () { }
  7264. }, { "style": { "height": "36px" } }).form; //創建窗體
  7265. break;
  7266. }
  7267. //U.MD.D.I.openClick(str);
  7268. //如果有任務欄信息
  7269. if (_taskbar) {
  7270. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7271. }
  7272. if(iframeBool){
  7273. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7274. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7275. // console.log("iframe進入");
  7276. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7277. // };
  7278. setTimeout(() => {
  7279. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7280. }, 2000);
  7281. }
  7282. }
  7283. // U.MD.D.I.openClick = function(str){
  7284. // var click = '';
  7285. // switch(str){
  7286. // case 'friend':
  7287. // click = '我的好友';
  7288. // break;
  7289. // case 'domain':
  7290. // click = '域名管理';
  7291. // break;
  7292. // case 'disk':
  7293. // click = '我的雲盤';
  7294. // break;
  7295. // case 'word':
  7296. // click = 'Word';
  7297. // break;
  7298. // case 'excel':
  7299. // click = 'Execl';
  7300. // break;
  7301. // case 'txt':
  7302. // click = '文本文件';
  7303. // break;
  7304. // case 'lookupFriend':
  7305. // click = '查找好友';
  7306. // break;
  7307. // case 'ftp':
  7308. // click = 'FTP';
  7309. // break;
  7310. // case 'group':
  7311. // click = '群組';
  7312. // break;
  7313. // case 'set':
  7314. // click = '我的設置';
  7315. // break;
  7316. // case 'systemSet':
  7317. // click = '系統設置';
  7318. // break;
  7319. // case 'boomYun':
  7320. // click = '互聯辦公';
  7321. // break;
  7322. // case 'xz':
  7323. // click = '雲端下載';
  7324. // break;
  7325. // case 'client':
  7326. // click = '有思瀏覽器';
  7327. // break;
  7328. // case 'backEndProgramming':
  7329. // click = '在線後臺編程';
  7330. // break;
  7331. // case 'frontEndProgramming':
  7332. // click = '在線前端編程';
  7333. // break;
  7334. // default: break;
  7335. // }
  7336. // if(U.MD.D.I.Ip && click){
  7337. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7338. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7339. // })
  7340. // }
  7341. // }
  7342. /**
  7343. *函數作用:ajax簡易函數,使用post格式
  7344. *@param url {data} 後臺地址
  7345. *@param data {data} 參數json
  7346. *@param fn {data} 回調函數
  7347. *
  7348. */
  7349. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7350. // var xhr = new XMLHttpRequest();
  7351. // xhr.open("GET",url,true);
  7352. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7353. // xhr.onreadystatechange = function(){
  7354. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7355. // fn.call(this,xhr.responseText);
  7356. // }
  7357. // };
  7358. // xhr.send();
  7359. // }
  7360. /*判斷是否是內網IP*/
  7361. // U.MD.D.I.isInnerIPFn = function(str){
  7362. // var curPageUrl = str;
  7363. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7364. // curPageUrl =curPageUrl.replace(reg1,'');
  7365. // // console.log('curPageUrl-1 '+curPageUrl);
  7366. // var reg2 = /\:+/g;//替換冒號為一點
  7367. // curPageUrl =curPageUrl.replace(reg2,'.');
  7368. // // console.log('curPageUrl-2 '+curPageUrl);
  7369. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7370. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7371. // if(curPageUrl[2] != '16'){
  7372. // return ipAddress;
  7373. // }else{
  7374. // return false;
  7375. // }
  7376. // }
  7377. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7378. // //compatibility for firefox and chrome
  7379. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7380. // var pc = new myPeerConnection({
  7381. // iceServers: []
  7382. // }),
  7383. // noop = function() {},
  7384. // localIPs = {},
  7385. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7386. // key;
  7387. // function iterateIP(ip) {
  7388. // if (!localIPs[ip]) onNewIP(ip);
  7389. // localIPs[ip] = true;
  7390. // }
  7391. // //create a bogus data channel
  7392. // pc.createDataChannel("");
  7393. // // create offer and set local description
  7394. // pc.createOffer().then(function(sdp) {
  7395. // sdp.sdp.split('\n').forEach(function(line) {
  7396. // if (line.indexOf('candidate') < 0) return;
  7397. // line.match(ipRegex).forEach(iterateIP);
  7398. // });
  7399. // pc.setLocalDescription(sdp, noop, noop);
  7400. // }).catch(function(reason) {
  7401. // // An error occurred, so handle the failure to connect
  7402. // });
  7403. // //sten for candidate events
  7404. // pc.onicecandidate = function(ice) {
  7405. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7406. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7407. // };
  7408. // }
  7409. // U.MD.D.I.getUserIpBool = function(callback){
  7410. // U.MD.D.I.getUserIP(function(ip){
  7411. // alert("Got IP! :" + ip);
  7412. // });
  7413. //}
  7414. //#endregion
  7415. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7416. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7417. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7418. _userinfo = US.userInfo, //登錄用戶信息
  7419. _userid = US.userInfo.userid //登錄用戶id
  7420. let _iframe;
  7421. let _cid = cid,
  7422. _stage = stage,
  7423. _task = task,
  7424. _tool = tool;
  7425. var _jie = $$("div", {
  7426. "style": {
  7427. "position": "absolute",
  7428. "bottom": "50px",
  7429. "right": "50px",
  7430. "zIndex": "9999",
  7431. "backgroundColor": "#2268bc",
  7432. "color": "#fff",
  7433. "padding": "12px 20px",
  7434. "cursor": "pointer",
  7435. "borderRadius": "4px",
  7436. },
  7437. "innerHTML": "提交作業"
  7438. })
  7439. let aTool = ''
  7440. let _loading = document.createElement('div')
  7441. _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;"
  7442. // _loading.id = "";
  7443. let _lchild = document.createElement('div')
  7444. let _limg = document.createElement('img')
  7445. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7446. _limg.style = "width: 26px;margin-right: 10px;"
  7447. _lchild.appendChild(_limg)
  7448. let _lspan = document.createElement('span')
  7449. _lspan.innerHTML = "上傳中..."
  7450. _lchild.appendChild(_lspan)
  7451. _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%);"
  7452. _loading.appendChild(_lchild)
  7453. var _box = $$('div', {
  7454. "style": {
  7455. "position": "relative",
  7456. "width": "100%",
  7457. "height": "100%",
  7458. },
  7459. })
  7460. _box.appendChild(_loading)
  7461. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7462. switch (str) {
  7463. case "whiteboard":
  7464. aTool = 1;
  7465. _iframe = $$("iframe", {
  7466. "frameborder": "no",
  7467. "border": "0",
  7468. "scrolling ": "no",
  7469. "style": {
  7470. "cssText": "border:0;width:100%;height:100%"
  7471. },
  7472. "src": "https://iwb.cocorobo.hk/"
  7473. })
  7474. _box.appendChild(_iframe);
  7475. _box.appendChild(_jie);
  7476. _formdiv = new U.UF.UI.form(
  7477. "電子白板",
  7478. _box, {
  7479. "id": "whiteboard" + cid + stage + task + tool,
  7480. "style": {
  7481. "width": "90%",
  7482. "height": "90%",
  7483. "overflow": 'hidden'
  7484. },
  7485. "onresize": function () { }
  7486. }, {
  7487. closecallback: function () { }
  7488. }, {
  7489. "style": {
  7490. "height": "36px"
  7491. }
  7492. }).form; //創建窗體
  7493. _taskbar = {
  7494. "id": str + _formdiv.id,
  7495. "style": {
  7496. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7497. },
  7498. "name": "電子白板",
  7499. "forms": _formdiv,
  7500. "click": function () {
  7501. U.MD.D.I.openApplication(str, obj, info);
  7502. }
  7503. }
  7504. break;
  7505. case "mind":
  7506. aTool = 3;
  7507. _iframe = $$("iframe", {
  7508. "frameborder": "no",
  7509. "border": "0",
  7510. "scrolling ": "no",
  7511. "style": {
  7512. "cssText": "border:0;width:100%;height:100%"
  7513. },
  7514. "src": "/kityminder-editor/dist/index.html"
  7515. })
  7516. _box.appendChild(_iframe);
  7517. _box.appendChild(_jie);
  7518. _formdiv = new U.UF.UI.form(
  7519. "思維導圖",
  7520. _box, { //"/jsmind/example/demo.html"
  7521. "id": "mind" + cid + stage + task + tool,
  7522. "style": {
  7523. "width": "90%",
  7524. "height": "90%",
  7525. "overflow": 'hidden'
  7526. },
  7527. "onresize": function () { }
  7528. }, {
  7529. closecallback: function () { }
  7530. }, {
  7531. "style": {
  7532. "height": "36px"
  7533. }
  7534. }).form; //創建窗體
  7535. _taskbar = {
  7536. "id": str + _formdiv.id,
  7537. "style": {
  7538. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7539. },
  7540. "name": "思維導圖",
  7541. "forms": _formdiv,
  7542. "click": function () {
  7543. U.MD.D.I.openApplication(str, obj, info);
  7544. }
  7545. }
  7546. break;
  7547. case "MindMap":
  7548. aTool = 3;
  7549. _iframe = $$("iframe", {
  7550. "frameborder": "no",
  7551. "border": "0",
  7552. "scrolling ": "no",
  7553. "style": {
  7554. "cssText": "border:0;width:100%;height:100%"
  7555. },
  7556. "src": "//cloud.cocorobo.hk/mind/"
  7557. })
  7558. _box.appendChild(_iframe);
  7559. _box.appendChild(_jie);
  7560. _formdiv = new U.UF.UI.form(
  7561. "思維導圖",
  7562. _box, { //"/jsmind/example/demo.html"
  7563. "id": "mind" + cid + stage + task + tool,
  7564. "style": {
  7565. "width": "90%",
  7566. "height": "90%",
  7567. "overflow": 'hidden'
  7568. },
  7569. "onresize": function () { }
  7570. }, {
  7571. closecallback: function () { }
  7572. }, {
  7573. "style": {
  7574. "height": "36px"
  7575. }
  7576. }).form; //創建窗體
  7577. _taskbar = {
  7578. "id": str + _formdiv.id,
  7579. "style": {
  7580. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7581. },
  7582. "name": "思維導圖",
  7583. "forms": _formdiv,
  7584. "click": function () {
  7585. U.MD.D.I.openApplication(str, obj, info);
  7586. }
  7587. }
  7588. break;
  7589. case "doc":
  7590. aTool = 6;
  7591. _iframe = $$("iframe", {
  7592. "frameborder": "no",
  7593. "border": "0",
  7594. "scrolling ": "no",
  7595. "style": {
  7596. "cssText": "border:0;width:100%;height:100%"
  7597. },
  7598. "src": "/Office/Word/WordEditArea.htm"
  7599. })
  7600. _box.appendChild(_iframe);
  7601. _box.appendChild(_jie);
  7602. _formdiv = new U.UF.UI.form(
  7603. "協同文檔",
  7604. _box, {
  7605. "id": "doc" + cid + stage + task + tool,
  7606. "style": {
  7607. "width": "90%",
  7608. "height": "90%",
  7609. "overflow": 'hidden'
  7610. },
  7611. "onresize": function () { }
  7612. }, {
  7613. closecallback: function () { }
  7614. }, {
  7615. "style": {
  7616. "height": "36px"
  7617. }
  7618. }).form; //創建窗體
  7619. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7620. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7621. })
  7622. _taskbar = {
  7623. "id": str + _formdiv.id,
  7624. "style": {
  7625. "backgroundImage": "url(/img/icon/doc.png)"
  7626. },
  7627. "name": "協同文檔",
  7628. "forms": _formdiv,
  7629. "click": function () {
  7630. U.MD.D.I.openApplication(str, obj, info);
  7631. }
  7632. }
  7633. break;
  7634. case "mindNetwork": //好友打開
  7635. aTool = 7;
  7636. _iframe = $$("iframe", {
  7637. "webkitallowfullscreen": "",
  7638. "mozallowfullscreen": "",
  7639. "allowfullscreen": "",
  7640. "frameborder": "no",
  7641. "border": "0",
  7642. "scrolling ": "no",
  7643. "style": {
  7644. "cssText": "border:0; width:100%; height:100%;"
  7645. },
  7646. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7647. })
  7648. _box.appendChild(_iframe);
  7649. _box.appendChild(_jie);
  7650. _formdiv = new U.UF.UI.form(
  7651. "思維網格",
  7652. _box, {
  7653. "id": "mindNetwork" + cid + stage + task + tool,
  7654. "style": {
  7655. "width": "90%",
  7656. "height": "90%",
  7657. "overflow": 'hidden'
  7658. },
  7659. "onresize": function () { }
  7660. }, {
  7661. closecallback: function () { }
  7662. }, {
  7663. "style": {
  7664. "height": "36px"
  7665. }
  7666. }).form; //創建窗體
  7667. _taskbar = {
  7668. "id": str + _formdiv.id,
  7669. "style": {
  7670. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7671. },
  7672. "name": "思維網格",
  7673. "forms": _formdiv,
  7674. "click": function () {
  7675. U.MD.D.I.openApplication(str, obj, info);
  7676. }
  7677. }
  7678. break;
  7679. case "courseDesign":
  7680. _iframe = $$("iframe", {
  7681. "webkitallowfullscreen": "",
  7682. "mozallowfullscreen": "",
  7683. "allowfullscreen": "",
  7684. "frameborder": "no",
  7685. "border": "0",
  7686. "scrolling ": "no",
  7687. "style": {
  7688. "cssText": "border:0; width:100%; height:100%;"
  7689. },
  7690. "src": "/course-design-vue"
  7691. })
  7692. _box.appendChild(_iframe);
  7693. _box.appendChild(_jie);
  7694. _formdiv = new U.UF.UI.form(
  7695. "項目設計",
  7696. _box, {
  7697. "id": "courseDesign" + cid + stage + task + tool,
  7698. "style": {
  7699. "width": "90%",
  7700. "height": "90%",
  7701. "overflow": 'hidden'
  7702. },
  7703. "onresize": function () { }
  7704. }, {
  7705. closecallback: function () { }
  7706. }, {
  7707. "style": {
  7708. "height": "36px"
  7709. }
  7710. }).form; //創建窗體
  7711. _taskbar = {
  7712. "id": str + _formdiv.id,
  7713. "style": {
  7714. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7715. },
  7716. "name": "項目設計",
  7717. "forms": _formdiv,
  7718. "click": function () {
  7719. U.MD.D.I.openApplication(str, obj, info);
  7720. }
  7721. }
  7722. break;
  7723. }
  7724. const script1 = document.createElement("script");
  7725. script1.type = "text/javascript";
  7726. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7727. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7728. const script2 = document.createElement("script");
  7729. script2.type = "text/javascript";
  7730. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7731. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7732. const script3 = document.createElement("script");
  7733. script3.type = "text/javascript";
  7734. script3.charset = "UTF-8";
  7735. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7736. const script4 = document.createElement("script");
  7737. script4.type = "text/javascript";
  7738. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7739. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7740. if (_iframe) {
  7741. if (str == 'doc') {
  7742. _iframe = _formdiv.querySelector('iframe')
  7743. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7744. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7745. _iframe.contentWindow.document.body.appendChild(script1);
  7746. _iframe.contentWindow.document.body.appendChild(script2);
  7747. // _iframe.contentWindow.document.body.appendChild(script3);
  7748. _iframe.contentWindow.document.body.appendChild(script4);
  7749. })
  7750. if (onloadListener) {
  7751. _iframe.contentDocument.location.reload()
  7752. } else {
  7753. _iframe.contentDocument.location.reload()
  7754. }
  7755. } else if (str == 'courseDesign') {
  7756. U.UF.DL.iframeLoad(_iframe, function () {
  7757. // _iframe.contentWindow.U.MD.O.W.load();
  7758. // _iframe.contentWindow.document.body.appendChild(script1);
  7759. _iframe.contentWindow.document.body.appendChild(script2);
  7760. _iframe.contentWindow.document.body.appendChild(script4);
  7761. })
  7762. } else if (str == 'mind') {
  7763. _iframe = _formdiv.querySelector('iframe')
  7764. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7765. //
  7766. _iframe.contentWindow.document.body.appendChild(script1);
  7767. _iframe.contentWindow.document.body.appendChild(script2);
  7768. _iframe.contentWindow.document.body.appendChild(script4);
  7769. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7770. })
  7771. if (onloadListener) {
  7772. _iframe.contentDocument.location.reload()
  7773. } else {
  7774. _iframe.contentDocument.location.reload()
  7775. }
  7776. } else if (str == 'whiteboard') {
  7777. _iframe = _formdiv.querySelector('iframe')
  7778. let onloadListener = _iframe.onload = () => {
  7779. _iframe.contentWindow.document.body.appendChild(script1);
  7780. _iframe.contentWindow.document.body.appendChild(script2);
  7781. _iframe.contentWindow.document.body.appendChild(script4);
  7782. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7783. };
  7784. // if (onloadListener) {
  7785. // try {
  7786. // _iframe.src += "?cocorobo="+new Date().getTime()
  7787. // _iframe.contentWindow.document.location.reload()
  7788. // } catch (error) {
  7789. // }
  7790. // } else {
  7791. // _iframe.contentDocument.location.reload()
  7792. // }
  7793. } else {
  7794. _iframe.onload = () => {
  7795. _iframe.contentWindow.document.body.appendChild(script1);
  7796. _iframe.contentWindow.document.body.appendChild(script2);
  7797. // _iframe.contentWindow.document.body.appendChild(script3);
  7798. _iframe.contentWindow.document.body.appendChild(script4);
  7799. };
  7800. }
  7801. _jie.onclick = async () => {
  7802. let text = ''
  7803. if (aTool == 1) {
  7804. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7805. } else if (aTool == 6) {
  7806. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7807. } else if (aTool == 3) {
  7808. text = await U.MD.D.I.getEditorContent(_iframe);
  7809. }
  7810. _loading.style.display = 'flex'
  7811. console.log(_loading);
  7812. var _ajs = _iframe.contentWindow.document.createElement("script");
  7813. _ajs.type = "text/javascript";
  7814. _ajs.innerHTML =
  7815. // 'console.log(' + _loading + ');\n' +
  7816. 'var _js = document.createElement("script");\n' +
  7817. '_js.type="text/javascript";\n' +
  7818. '_js.charset="UTF-8";\n' +
  7819. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7820. "_js.onload = function(){\n" +
  7821. ' var a = document.getElementsByTagName("img")\n' +
  7822. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7823. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7824. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7825. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7826. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7827. "beforeUpload_shishi(file," +
  7828. "'" +
  7829. _userid +
  7830. "'" +
  7831. ", " +
  7832. "'" +
  7833. _cid +
  7834. "'" +
  7835. ", " +
  7836. "'" +
  7837. _stage +
  7838. "'" +
  7839. ", " +
  7840. "'" +
  7841. _task +
  7842. "'" +
  7843. ", " +
  7844. "'" +
  7845. _tool +
  7846. "'" +
  7847. ", " +
  7848. "'" +
  7849. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7850. "'" +
  7851. ", " +
  7852. "'" +
  7853. aTool +
  7854. "'" +
  7855. ", " +
  7856. "`" +
  7857. text +
  7858. "`" +
  7859. ")\n" +
  7860. " });\n" +
  7861. "}\n" +
  7862. "document.head.appendChild(_js);\n";
  7863. _iframe.contentWindow.document.head.appendChild(_ajs);
  7864. }
  7865. }
  7866. //U.MD.D.I.openClick(str);
  7867. //如果有任務欄信息
  7868. // if (_taskbar) {
  7869. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7870. // }
  7871. }
  7872. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7873. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7874. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7875. _userinfo = US.userInfo, //登錄用戶信息
  7876. _userid = US.userInfo.userid //登錄用戶id
  7877. let _iframe;
  7878. let _cid = cid,
  7879. _stage = stage,
  7880. _task = task,
  7881. _tool = tool;
  7882. var _jie = $$("div", {
  7883. "style": {
  7884. "position": "absolute",
  7885. "bottom": "50px",
  7886. "right": "50px",
  7887. "zIndex": "9999",
  7888. "backgroundColor": "#2268bc",
  7889. "color": "#fff",
  7890. "padding": "12px 20px",
  7891. "cursor": "pointer",
  7892. "borderRadius": "4px",
  7893. },
  7894. "innerHTML": "提交作業"
  7895. })
  7896. let aTool = ''
  7897. let _loading = document.createElement('div')
  7898. _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;"
  7899. // _loading.id = "";
  7900. let _lchild = document.createElement('div')
  7901. let _limg = document.createElement('img')
  7902. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7903. _limg.style = "width: 26px;margin-right: 10px;"
  7904. _lchild.appendChild(_limg)
  7905. let _lspan = document.createElement('span')
  7906. _lspan.innerHTML = "上傳中..."
  7907. _lchild.appendChild(_lspan)
  7908. _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%);"
  7909. _loading.appendChild(_lchild)
  7910. let _box = $$('div', {
  7911. "style": {
  7912. "position": "relative",
  7913. "width": "100%",
  7914. "height": "100%",
  7915. },
  7916. })
  7917. _box.appendChild(_loading)
  7918. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7919. switch (str) {
  7920. case "whiteboard":
  7921. aTool = 1;
  7922. _iframe = $$("iframe", {
  7923. "frameborder": "no",
  7924. "border": "0",
  7925. "scrolling ": "no",
  7926. "style": {
  7927. "cssText": "border:0;width:100%;height:100%"
  7928. },
  7929. "src": "https://iwb.cocorobo.hk/"
  7930. })
  7931. _box.appendChild(_iframe);
  7932. _box.appendChild(_jie);
  7933. _formdiv = new U.UF.UI.form(
  7934. "電子白板",
  7935. _box, {
  7936. "id": "whiteboard" + cid + stage + task + tool,
  7937. "style": {
  7938. "width": "90%",
  7939. "height": "90%",
  7940. "overflow": 'hidden'
  7941. },
  7942. "onresize": function () { }
  7943. }, {
  7944. closecallback: function () { }
  7945. }, {
  7946. "style": {
  7947. "height": "36px"
  7948. }
  7949. }).form; //創建窗體
  7950. _taskbar = {
  7951. "id": str + _formdiv.id,
  7952. "style": {
  7953. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7954. },
  7955. "name": "電子白板",
  7956. "forms": _formdiv,
  7957. "click": function () {
  7958. U.MD.D.I.openApplication(str, obj, info);
  7959. }
  7960. }
  7961. break;
  7962. case "mind":
  7963. aTool = 3;
  7964. _iframe = $$("iframe", {
  7965. "frameborder": "no",
  7966. "border": "0",
  7967. "scrolling ": "no",
  7968. "style": {
  7969. "cssText": "border:0;width:100%;height:100%"
  7970. },
  7971. "src": "/kityminder-editor/dist/index.html"
  7972. })
  7973. _box.appendChild(_iframe);
  7974. _box.appendChild(_jie);
  7975. _formdiv = new U.UF.UI.form(
  7976. "思維導圖",
  7977. _box, { //"/jsmind/example/demo.html"
  7978. "id": "mind" + cid + stage + task + tool,
  7979. "style": {
  7980. "width": "90%",
  7981. "height": "90%",
  7982. "overflow": 'hidden'
  7983. },
  7984. "onresize": function () { }
  7985. }, {
  7986. closecallback: function () { }
  7987. }, {
  7988. "style": {
  7989. "height": "36px"
  7990. }
  7991. }).form; //創建窗體
  7992. _taskbar = {
  7993. "id": str + _formdiv.id,
  7994. "style": {
  7995. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7996. },
  7997. "name": "思維導圖",
  7998. "forms": _formdiv,
  7999. "click": function () {
  8000. U.MD.D.I.openApplication(str, obj, info);
  8001. }
  8002. }
  8003. break;
  8004. case "MindMap":
  8005. aTool = 3;
  8006. _iframe = $$("iframe", {
  8007. "frameborder": "no",
  8008. "border": "0",
  8009. "scrolling ": "no",
  8010. "style": {
  8011. "cssText": "border:0;width:100%;height:100%"
  8012. },
  8013. "src": "//cloud.cocorobo.hk/mind/"
  8014. })
  8015. _box.appendChild(_iframe);
  8016. _box.appendChild(_jie);
  8017. _formdiv = new U.UF.UI.form(
  8018. "思維導圖",
  8019. _box, { //"/jsmind/example/demo.html"
  8020. "id": "mind" + cid + stage + task + tool,
  8021. "style": {
  8022. "width": "90%",
  8023. "height": "90%",
  8024. "overflow": 'hidden'
  8025. },
  8026. "onresize": function () { }
  8027. }, {
  8028. closecallback: function () { }
  8029. }, {
  8030. "style": {
  8031. "height": "36px"
  8032. }
  8033. }).form; //創建窗體
  8034. _taskbar = {
  8035. "id": str + _formdiv.id,
  8036. "style": {
  8037. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8038. },
  8039. "name": "思維導圖",
  8040. "forms": _formdiv,
  8041. "click": function () {
  8042. U.MD.D.I.openApplication(str, obj, info);
  8043. }
  8044. }
  8045. break;
  8046. case "doc":
  8047. aTool = 6;
  8048. _iframe = $$("iframe", {
  8049. "frameborder": "no",
  8050. "border": "0",
  8051. "scrolling ": "no",
  8052. "style": {
  8053. "cssText": "border:0;width:100%;height:100%"
  8054. },
  8055. "src": "/Office/Word/WordEditArea.htm"
  8056. })
  8057. _box.appendChild(_iframe);
  8058. _box.appendChild(_jie);
  8059. _formdiv = new U.UF.UI.form(
  8060. "協同文檔",
  8061. _box, {
  8062. "id": "doc" + cid + stage + task + tool,
  8063. "style": {
  8064. "width": "90%",
  8065. "height": "90%",
  8066. "overflow": 'hidden'
  8067. },
  8068. "onresize": function () { }
  8069. }, {
  8070. closecallback: function () { }
  8071. }, {
  8072. "style": {
  8073. "height": "36px"
  8074. }
  8075. }).form; //創建窗體
  8076. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8077. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8078. })
  8079. _taskbar = {
  8080. "id": str + _formdiv.id,
  8081. "style": {
  8082. "backgroundImage": "url(/img/icon/doc.png)"
  8083. },
  8084. "name": "協同文檔",
  8085. "forms": _formdiv,
  8086. "click": function () {
  8087. U.MD.D.I.openApplication(str, obj, info);
  8088. }
  8089. }
  8090. break;
  8091. case "mindNetwork": //好友打開
  8092. aTool = 7;
  8093. _iframe = $$("iframe", {
  8094. "webkitallowfullscreen": "",
  8095. "mozallowfullscreen": "",
  8096. "allowfullscreen": "",
  8097. "frameborder": "no",
  8098. "border": "0",
  8099. "scrolling ": "no",
  8100. "style": {
  8101. "cssText": "border:0; width:100%; height:100%;"
  8102. },
  8103. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8104. })
  8105. _box.appendChild(_iframe);
  8106. _box.appendChild(_jie);
  8107. _formdiv = new U.UF.UI.form(
  8108. "思維網格",
  8109. _box, {
  8110. "id": "mindNetwork" + cid + stage + task + tool,
  8111. "style": {
  8112. "width": "90%",
  8113. "height": "90%",
  8114. "overflow": 'hidden'
  8115. },
  8116. "onresize": function () { }
  8117. }, {
  8118. closecallback: function () { }
  8119. }, {
  8120. "style": {
  8121. "height": "36px"
  8122. }
  8123. }).form; //創建窗體
  8124. _taskbar = {
  8125. "id": str + _formdiv.id,
  8126. "style": {
  8127. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8128. },
  8129. "name": "思維網格",
  8130. "forms": _formdiv,
  8131. "click": function () {
  8132. U.MD.D.I.openApplication(str, obj, info);
  8133. }
  8134. }
  8135. break;
  8136. case "courseDesign":
  8137. _iframe = $$("iframe", {
  8138. "webkitallowfullscreen": "",
  8139. "mozallowfullscreen": "",
  8140. "allowfullscreen": "",
  8141. "frameborder": "no",
  8142. "border": "0",
  8143. "scrolling ": "no",
  8144. "style": {
  8145. "cssText": "border:0; width:100%; height:100%;"
  8146. },
  8147. "src": "/course-design-vue"
  8148. })
  8149. _box.appendChild(_iframe);
  8150. _box.appendChild(_jie);
  8151. _formdiv = new U.UF.UI.form(
  8152. "項目設計",
  8153. _box, {
  8154. "id": "courseDesign" + cid + stage + task + tool,
  8155. "style": {
  8156. "width": "90%",
  8157. "height": "90%",
  8158. "overflow": 'hidden'
  8159. },
  8160. "onresize": function () { }
  8161. }, {
  8162. closecallback: function () { }
  8163. }, {
  8164. "style": {
  8165. "height": "36px"
  8166. }
  8167. }).form; //創建窗體
  8168. _taskbar = {
  8169. "id": str + _formdiv.id,
  8170. "style": {
  8171. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8172. },
  8173. "name": "項目設計",
  8174. "forms": _formdiv,
  8175. "click": function () {
  8176. U.MD.D.I.openApplication(str, obj, info);
  8177. }
  8178. }
  8179. break;
  8180. }
  8181. const script1 = document.createElement("script");
  8182. script1.type = "text/javascript";
  8183. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8184. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8185. const script2 = document.createElement("script");
  8186. script2.type = "text/javascript";
  8187. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8188. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8189. const script3 = document.createElement("script");
  8190. script3.type = "text/javascript";
  8191. script3.charset = "UTF-8";
  8192. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8193. const script4 = document.createElement("script");
  8194. script4.type = "text/javascript";
  8195. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8196. script4.src = window.origin + "/js/Common/jietu2E.js";
  8197. if (_iframe) {
  8198. if (str == 'doc') {
  8199. _iframe = _formdiv.querySelector('iframe')
  8200. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8201. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8202. _iframe.contentWindow.document.body.appendChild(script1);
  8203. _iframe.contentWindow.document.body.appendChild(script2);
  8204. // _iframe.contentWindow.document.body.appendChild(script3);
  8205. _iframe.contentWindow.document.body.appendChild(script4);
  8206. })
  8207. if (onloadListener) {
  8208. _iframe.contentDocument.location.reload()
  8209. } else {
  8210. _iframe.contentDocument.location.reload()
  8211. }
  8212. } else if (str == 'courseDesign') {
  8213. U.UF.DL.iframeLoad(_iframe, function () {
  8214. // _iframe.contentWindow.U.MD.O.W.load();
  8215. // _iframe.contentWindow.document.body.appendChild(script1);
  8216. _iframe.contentWindow.document.body.appendChild(script2);
  8217. _iframe.contentWindow.document.body.appendChild(script4);
  8218. })
  8219. } else if (str == 'mind') {
  8220. _iframe = _formdiv.querySelector('iframe')
  8221. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8222. //
  8223. _iframe.contentWindow.document.body.appendChild(script1);
  8224. _iframe.contentWindow.document.body.appendChild(script2);
  8225. _iframe.contentWindow.document.body.appendChild(script4);
  8226. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8227. })
  8228. if (onloadListener) {
  8229. _iframe.contentDocument.location.reload()
  8230. } else {
  8231. _iframe.contentDocument.location.reload()
  8232. }
  8233. } else if (str == 'whiteboard') {
  8234. _iframe = _formdiv.querySelector('iframe')
  8235. let onloadListener = _iframe.onload = () => {
  8236. _iframe.contentWindow.document.body.appendChild(script1);
  8237. _iframe.contentWindow.document.body.appendChild(script2);
  8238. _iframe.contentWindow.document.body.appendChild(script4);
  8239. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8240. };
  8241. // if (onloadListener) {
  8242. // try {
  8243. // _iframe.src += "?cocorobo="+new Date().getTime()
  8244. // _iframe.contentWindow.document.location.reload()
  8245. // } catch (error) {
  8246. // }
  8247. // } else {
  8248. // _iframe.contentDocument.location.reload()
  8249. // }
  8250. } else {
  8251. _iframe.onload = () => {
  8252. _iframe.contentWindow.document.body.appendChild(script1);
  8253. _iframe.contentWindow.document.body.appendChild(script2);
  8254. // _iframe.contentWindow.document.body.appendChild(script3);
  8255. _iframe.contentWindow.document.body.appendChild(script4);
  8256. };
  8257. }
  8258. _jie.onclick = async () => {
  8259. let text = ''
  8260. if (aTool == 1) {
  8261. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8262. } else if (aTool == 6) {
  8263. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8264. } else if (aTool == 3) {
  8265. text = await U.MD.D.I.getEditorContent(_iframe);
  8266. }
  8267. _loading.style.display = 'flex'
  8268. console.log(_loading);
  8269. var _ajs = _iframe.contentWindow.document.createElement("script");
  8270. _ajs.type = "text/javascript";
  8271. _ajs.innerHTML =
  8272. // 'console.log(' + _loading + ');\n' +
  8273. 'var _js = document.createElement("script");\n' +
  8274. '_js.type="text/javascript";\n' +
  8275. '_js.charset="UTF-8";\n' +
  8276. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8277. "_js.onload = function(){\n" +
  8278. ' var a = document.getElementsByTagName("img")\n' +
  8279. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8280. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8281. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8282. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8283. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8284. "beforeUpload_shishi(file," +
  8285. "'" +
  8286. _userid +
  8287. "'" +
  8288. ", " +
  8289. "'" +
  8290. _cid +
  8291. "'" +
  8292. ", " +
  8293. "'" +
  8294. _stage +
  8295. "'" +
  8296. ", " +
  8297. "'" +
  8298. _task +
  8299. "'" +
  8300. ", " +
  8301. "'" +
  8302. _tool +
  8303. "'" +
  8304. ", " +
  8305. "'" +
  8306. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8307. "'" +
  8308. ", " +
  8309. "'" +
  8310. aTool +
  8311. "'" +
  8312. ", " +
  8313. "`" +
  8314. text +
  8315. "`" +
  8316. ")\n" +
  8317. " });\n" +
  8318. "}\n" +
  8319. "document.head.appendChild(_js);\n";
  8320. _iframe.contentWindow.document.head.appendChild(_ajs);
  8321. }
  8322. }
  8323. //U.MD.D.I.openClick(str);
  8324. //如果有任務欄信息
  8325. // if (_taskbar) {
  8326. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8327. // }
  8328. }
  8329. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8330. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8331. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8332. _userid = student.userid, //登錄用戶id
  8333. _username = student.student //用戶名字
  8334. let _iframe;
  8335. let _cid = cid,
  8336. _stage = stage,
  8337. _task = task,
  8338. _tool = tool;
  8339. var _jie = $$("div", {
  8340. "style": {
  8341. "position": "absolute",
  8342. "bottom": "50px",
  8343. "right": "50px",
  8344. "zIndex": "9999",
  8345. "backgroundColor": "#2268bc",
  8346. "color": "#fff",
  8347. "padding": "12px 20px",
  8348. "cursor": "pointer",
  8349. "borderRadius": "4px",
  8350. },
  8351. "innerHTML": "提交作業"
  8352. })
  8353. let aTool = ''
  8354. let _loading = document.createElement('div')
  8355. _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;"
  8356. // _loading.id = "";
  8357. let _lchild = document.createElement('div')
  8358. let _limg = document.createElement('img')
  8359. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8360. _limg.style = "width: 26px;margin-right: 10px;"
  8361. _lchild.appendChild(_limg)
  8362. let _lspan = document.createElement('span')
  8363. _lspan.innerHTML = "上傳中..."
  8364. _lchild.appendChild(_lspan)
  8365. _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%);"
  8366. _loading.appendChild(_lchild)
  8367. var _box = $$('div', {
  8368. "style": {
  8369. "position": "relative",
  8370. "width": "100%",
  8371. "height": "100%",
  8372. },
  8373. })
  8374. _box.appendChild(_loading)
  8375. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8376. switch (str) {
  8377. case "whiteboard":
  8378. aTool = 1;
  8379. _iframe = $$("iframe", {
  8380. "frameborder": "no",
  8381. "border": "0",
  8382. "scrolling ": "no",
  8383. "style": {
  8384. "cssText": "border:0;width:100%;height:100%"
  8385. },
  8386. "src": "https://iwb.cocorobo.hk/"
  8387. })
  8388. _box.appendChild(_iframe);
  8389. _box.appendChild(_jie);
  8390. _formdiv = new U.UF.UI.form(
  8391. "電子白板-" + _username,
  8392. _box, {
  8393. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8394. "style": {
  8395. "width": "90%",
  8396. "height": "90%",
  8397. "overflow": 'hidden'
  8398. },
  8399. "onresize": function () { }
  8400. }, {
  8401. closecallback: function () { }
  8402. }, {
  8403. "style": {
  8404. "height": "36px"
  8405. }
  8406. }).form; //創建窗體
  8407. _taskbar = {
  8408. "id": str + _formdiv.id,
  8409. "style": {
  8410. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8411. },
  8412. "name": "電子白板",
  8413. "forms": _formdiv,
  8414. "click": function () {
  8415. U.MD.D.I.openApplication(str, obj, info);
  8416. }
  8417. }
  8418. break;
  8419. case "mind":
  8420. aTool = 3;
  8421. _iframe = $$("iframe", {
  8422. "frameborder": "no",
  8423. "border": "0",
  8424. "scrolling ": "no",
  8425. "style": {
  8426. "cssText": "border:0;width:100%;height:100%"
  8427. },
  8428. "src": "/kityminder-editor/dist/index.html"
  8429. })
  8430. _box.appendChild(_iframe);
  8431. _box.appendChild(_jie);
  8432. _formdiv = new U.UF.UI.form(
  8433. "思維導圖-" + _username,
  8434. _box, { //"/jsmind/example/demo.html"
  8435. "id": "mind" + cid + stage + task + tool + _userid,
  8436. "style": {
  8437. "width": "90%",
  8438. "height": "90%",
  8439. "overflow": 'hidden'
  8440. },
  8441. "onresize": function () { }
  8442. }, {
  8443. closecallback: function () { }
  8444. }, {
  8445. "style": {
  8446. "height": "36px"
  8447. }
  8448. }).form; //創建窗體
  8449. _taskbar = {
  8450. "id": str + _formdiv.id,
  8451. "style": {
  8452. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8453. },
  8454. "name": "思維導圖",
  8455. "forms": _formdiv,
  8456. "click": function () {
  8457. U.MD.D.I.openApplication(str, obj, info);
  8458. }
  8459. }
  8460. break;
  8461. case "MindMap":
  8462. aTool = 3;
  8463. _iframe = $$("iframe", {
  8464. "frameborder": "no",
  8465. "border": "0",
  8466. "scrolling ": "no",
  8467. "style": {
  8468. "cssText": "border:0;width:100%;height:100%"
  8469. },
  8470. "src": "//cloud.cocorobo.hk/mind/"
  8471. })
  8472. _box.appendChild(_iframe);
  8473. _box.appendChild(_jie);
  8474. _formdiv = new U.UF.UI.form(
  8475. "思維導圖-" + _username,
  8476. _box, { //"/jsmind/example/demo.html"
  8477. "id": "mind" + cid + stage + task + tool + _userid,
  8478. "style": {
  8479. "width": "90%",
  8480. "height": "90%",
  8481. "overflow": 'hidden'
  8482. },
  8483. "onresize": function () { }
  8484. }, {
  8485. closecallback: function () { }
  8486. }, {
  8487. "style": {
  8488. "height": "36px"
  8489. }
  8490. }).form; //創建窗體
  8491. _taskbar = {
  8492. "id": str + _formdiv.id,
  8493. "style": {
  8494. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8495. },
  8496. "name": "思維導圖",
  8497. "forms": _formdiv,
  8498. "click": function () {
  8499. U.MD.D.I.openApplication(str, obj, info);
  8500. }
  8501. }
  8502. break;
  8503. case "doc":
  8504. aTool = 6;
  8505. _iframe = $$("iframe", {
  8506. "frameborder": "no",
  8507. "border": "0",
  8508. "scrolling ": "no",
  8509. "style": {
  8510. "cssText": "border:0;width:100%;height:100%"
  8511. },
  8512. "src": "/Office/Word/WordEditArea.htm"
  8513. })
  8514. _box.appendChild(_iframe);
  8515. _box.appendChild(_jie);
  8516. _formdiv = new U.UF.UI.form(
  8517. "協同文檔-" + _username,
  8518. _box, {
  8519. "id": "doc" + cid + stage + task + tool + _userid,
  8520. "style": {
  8521. "width": "90%",
  8522. "height": "90%",
  8523. "overflow": 'hidden'
  8524. },
  8525. "onresize": function () { }
  8526. }, {
  8527. closecallback: function () { }
  8528. }, {
  8529. "style": {
  8530. "height": "36px"
  8531. }
  8532. }).form; //創建窗體
  8533. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8534. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8535. })
  8536. _taskbar = {
  8537. "id": str + _formdiv.id,
  8538. "style": {
  8539. "backgroundImage": "url(/img/icon/doc.png)"
  8540. },
  8541. "name": "協同文檔",
  8542. "forms": _formdiv,
  8543. "click": function () {
  8544. U.MD.D.I.openApplication(str, obj, info);
  8545. }
  8546. }
  8547. break;
  8548. case "mindNetwork": //好友打開
  8549. aTool = 7;
  8550. _iframe = $$("iframe", {
  8551. "webkitallowfullscreen": "",
  8552. "mozallowfullscreen": "",
  8553. "allowfullscreen": "",
  8554. "frameborder": "no",
  8555. "border": "0",
  8556. "scrolling ": "no",
  8557. "style": {
  8558. "cssText": "border:0; width:100%; height:100%;"
  8559. },
  8560. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8561. })
  8562. _box.appendChild(_iframe);
  8563. _box.appendChild(_jie);
  8564. _formdiv = new U.UF.UI.form(
  8565. "思維網格-" + _username,
  8566. _box, {
  8567. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8568. "style": {
  8569. "width": "90%",
  8570. "height": "90%",
  8571. "overflow": 'hidden'
  8572. },
  8573. "onresize": function () { }
  8574. }, {
  8575. closecallback: function () { }
  8576. }, {
  8577. "style": {
  8578. "height": "36px"
  8579. }
  8580. }).form; //創建窗體
  8581. _taskbar = {
  8582. "id": str + _formdiv.id,
  8583. "style": {
  8584. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8585. },
  8586. "name": "思維網格",
  8587. "forms": _formdiv,
  8588. "click": function () {
  8589. U.MD.D.I.openApplication(str, obj, info);
  8590. }
  8591. }
  8592. break;
  8593. case "courseDesign":
  8594. _iframe = $$("iframe", {
  8595. "webkitallowfullscreen": "",
  8596. "mozallowfullscreen": "",
  8597. "allowfullscreen": "",
  8598. "frameborder": "no",
  8599. "border": "0",
  8600. "scrolling ": "no",
  8601. "style": {
  8602. "cssText": "border:0; width:100%; height:100%;"
  8603. },
  8604. "src": "/course-design-vue"
  8605. })
  8606. _box.appendChild(_iframe);
  8607. _box.appendChild(_jie);
  8608. _formdiv = new U.UF.UI.form(
  8609. "項目設計-" + _username,
  8610. _box, {
  8611. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8612. "style": {
  8613. "width": "90%",
  8614. "height": "90%",
  8615. "overflow": 'hidden'
  8616. },
  8617. "onresize": function () { }
  8618. }, {
  8619. closecallback: function () { }
  8620. }, {
  8621. "style": {
  8622. "height": "36px"
  8623. }
  8624. }).form; //創建窗體
  8625. _taskbar = {
  8626. "id": str + _formdiv.id,
  8627. "style": {
  8628. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8629. },
  8630. "name": "項目設計",
  8631. "forms": _formdiv,
  8632. "click": function () {
  8633. U.MD.D.I.openApplication(str, obj, info);
  8634. }
  8635. }
  8636. break;
  8637. }
  8638. const script1 = document.createElement("script");
  8639. script1.type = "text/javascript";
  8640. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8641. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8642. const script2 = document.createElement("script");
  8643. script2.type = "text/javascript";
  8644. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8645. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8646. const script3 = document.createElement("script");
  8647. script3.type = "text/javascript";
  8648. script3.charset = "UTF-8";
  8649. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8650. const script4 = document.createElement("script");
  8651. script4.type = "text/javascript";
  8652. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8653. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8654. if (_iframe) {
  8655. if (str == 'doc') {
  8656. _iframe = _formdiv.querySelector('iframe')
  8657. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8658. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8659. _iframe.contentWindow.document.body.appendChild(script1);
  8660. _iframe.contentWindow.document.body.appendChild(script2);
  8661. // _iframe.contentWindow.document.body.appendChild(script3);
  8662. _iframe.contentWindow.document.body.appendChild(script4);
  8663. })
  8664. if (onloadListener) {
  8665. _iframe.contentDocument.location.reload()
  8666. } else {
  8667. _iframe.contentDocument.location.reload()
  8668. }
  8669. } else if (str == 'courseDesign') {
  8670. U.UF.DL.iframeLoad(_iframe, function () {
  8671. // _iframe.contentWindow.U.MD.O.W.load();
  8672. // _iframe.contentWindow.document.body.appendChild(script1);
  8673. _iframe.contentWindow.document.body.appendChild(script2);
  8674. _iframe.contentWindow.document.body.appendChild(script4);
  8675. })
  8676. } else if (str == 'mind') {
  8677. _iframe = _formdiv.querySelector('iframe')
  8678. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8679. //
  8680. _iframe.contentWindow.document.body.appendChild(script1);
  8681. _iframe.contentWindow.document.body.appendChild(script2);
  8682. _iframe.contentWindow.document.body.appendChild(script4);
  8683. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8684. })
  8685. if (onloadListener) {
  8686. _iframe.contentDocument.location.reload()
  8687. } else {
  8688. _iframe.contentDocument.location.reload()
  8689. }
  8690. } else if (str == 'whiteboard') {
  8691. _iframe = _formdiv.querySelector('iframe')
  8692. let onloadListener = _iframe.onload = () => {
  8693. _iframe.contentWindow.document.body.appendChild(script1);
  8694. _iframe.contentWindow.document.body.appendChild(script2);
  8695. _iframe.contentWindow.document.body.appendChild(script4);
  8696. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8697. };
  8698. // if (onloadListener) {
  8699. // try {
  8700. // _iframe.src += "?cocorobo="+new Date().getTime()
  8701. // _iframe.contentWindow.document.location.reload()
  8702. // } catch (error) {
  8703. // }
  8704. // } else {
  8705. // _iframe.contentDocument.location.reload()
  8706. // }
  8707. } else {
  8708. _iframe.onload = () => {
  8709. _iframe.contentWindow.document.body.appendChild(script1);
  8710. _iframe.contentWindow.document.body.appendChild(script2);
  8711. // _iframe.contentWindow.document.body.appendChild(script3);
  8712. _iframe.contentWindow.document.body.appendChild(script4);
  8713. };
  8714. }
  8715. _jie.onclick = async () => {
  8716. let text = ''
  8717. if (aTool == 1) {
  8718. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8719. } else if (aTool == 6) {
  8720. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8721. } else if (aTool == 3) {
  8722. text = await U.MD.D.I.getEditorContent(_iframe);
  8723. }
  8724. _loading.style.display = 'flex'
  8725. console.log(_loading);
  8726. var _ajs = _iframe.contentWindow.document.createElement("script");
  8727. _ajs.type = "text/javascript";
  8728. _ajs.innerHTML =
  8729. // 'console.log(' + _loading + ');\n' +
  8730. 'var _js = document.createElement("script");\n' +
  8731. '_js.type="text/javascript";\n' +
  8732. '_js.charset="UTF-8";\n' +
  8733. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8734. "_js.onload = function(){\n" +
  8735. ' var a = document.getElementsByTagName("img")\n' +
  8736. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8737. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8738. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8739. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8740. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8741. "beforeUpload_shishi(file," +
  8742. "'" +
  8743. _userid +
  8744. "'" +
  8745. ", " +
  8746. "'" +
  8747. _cid +
  8748. "'" +
  8749. ", " +
  8750. "'" +
  8751. _stage +
  8752. "'" +
  8753. ", " +
  8754. "'" +
  8755. _task +
  8756. "'" +
  8757. ", " +
  8758. "'" +
  8759. _tool +
  8760. "'" +
  8761. ", " +
  8762. "'" +
  8763. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8764. "'" +
  8765. ", " +
  8766. "'" +
  8767. aTool +
  8768. "'" +
  8769. ", " +
  8770. "`" +
  8771. text +
  8772. "`" +
  8773. ")\n" +
  8774. " });\n" +
  8775. "}\n" +
  8776. "document.head.appendChild(_js);\n";
  8777. _iframe.contentWindow.document.head.appendChild(_ajs);
  8778. }
  8779. }
  8780. }
  8781. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8782. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8783. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8784. _userid = student.userid, //登錄用戶id
  8785. _username = student.student //用戶名字
  8786. let _iframe;
  8787. let _cid = cid,
  8788. _stage = stage,
  8789. _task = task,
  8790. _tool = tool;
  8791. var _jie = $$("div", {
  8792. "style": {
  8793. "position": "absolute",
  8794. "bottom": "50px",
  8795. "right": "50px",
  8796. "zIndex": "9999",
  8797. "backgroundColor": "#2268bc",
  8798. "color": "#fff",
  8799. "padding": "12px 20px",
  8800. "cursor": "pointer",
  8801. "borderRadius": "4px",
  8802. },
  8803. "innerHTML": "提交作業"
  8804. })
  8805. let aTool = ''
  8806. let _loading = document.createElement('div')
  8807. _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;"
  8808. // _loading.id = "";
  8809. let _lchild = document.createElement('div')
  8810. let _limg = document.createElement('img')
  8811. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8812. _limg.style = "width: 26px;margin-right: 10px;"
  8813. _lchild.appendChild(_limg)
  8814. let _lspan = document.createElement('span')
  8815. _lspan.innerHTML = "上傳中..."
  8816. _lchild.appendChild(_lspan)
  8817. _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%);"
  8818. _loading.appendChild(_lchild)
  8819. var _box = $$('div', {
  8820. "style": {
  8821. "position": "relative",
  8822. "width": "100%",
  8823. "height": "100%",
  8824. },
  8825. })
  8826. _box.appendChild(_loading)
  8827. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8828. switch (str) {
  8829. case "whiteboard":
  8830. aTool = 1;
  8831. _iframe = $$("iframe", {
  8832. "frameborder": "no",
  8833. "border": "0",
  8834. "scrolling ": "no",
  8835. "style": {
  8836. "cssText": "border:0;width:100%;height:100%"
  8837. },
  8838. "src": "https://iwb.cocorobo.hk/"
  8839. })
  8840. _box.appendChild(_iframe);
  8841. _box.appendChild(_jie);
  8842. _formdiv = new U.UF.UI.form(
  8843. "電子白板-" + _username,
  8844. _box, {
  8845. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8846. "style": {
  8847. "width": "90%",
  8848. "height": "90%",
  8849. "overflow": 'hidden'
  8850. },
  8851. "onresize": function () { }
  8852. }, {
  8853. closecallback: function () { }
  8854. }, {
  8855. "style": {
  8856. "height": "36px"
  8857. }
  8858. }).form; //創建窗體
  8859. _taskbar = {
  8860. "id": str + _formdiv.id,
  8861. "style": {
  8862. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8863. },
  8864. "name": "電子白板",
  8865. "forms": _formdiv,
  8866. "click": function () {
  8867. U.MD.D.I.openApplication(str, obj, info);
  8868. }
  8869. }
  8870. break;
  8871. case "mind":
  8872. aTool = 3;
  8873. _iframe = $$("iframe", {
  8874. "frameborder": "no",
  8875. "border": "0",
  8876. "scrolling ": "no",
  8877. "style": {
  8878. "cssText": "border:0;width:100%;height:100%"
  8879. },
  8880. "src": "/kityminder-editor/dist/index.html"
  8881. })
  8882. _box.appendChild(_iframe);
  8883. _box.appendChild(_jie);
  8884. _formdiv = new U.UF.UI.form(
  8885. "思維導圖-" + _username,
  8886. _box, { //"/jsmind/example/demo.html"
  8887. "id": "mind" + cid + stage + task + tool + _userid,
  8888. "style": {
  8889. "width": "90%",
  8890. "height": "90%",
  8891. "overflow": 'hidden'
  8892. },
  8893. "onresize": function () { }
  8894. }, {
  8895. closecallback: function () { }
  8896. }, {
  8897. "style": {
  8898. "height": "36px"
  8899. }
  8900. }).form; //創建窗體
  8901. _taskbar = {
  8902. "id": str + _formdiv.id,
  8903. "style": {
  8904. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8905. },
  8906. "name": "思維導圖",
  8907. "forms": _formdiv,
  8908. "click": function () {
  8909. U.MD.D.I.openApplication(str, obj, info);
  8910. }
  8911. }
  8912. break;
  8913. case "MindMap":
  8914. aTool = 3;
  8915. _iframe = $$("iframe", {
  8916. "frameborder": "no",
  8917. "border": "0",
  8918. "scrolling ": "no",
  8919. "style": {
  8920. "cssText": "border:0;width:100%;height:100%"
  8921. },
  8922. "src": "//cloud.cocorobo.hk/mind/"
  8923. })
  8924. _box.appendChild(_iframe);
  8925. _box.appendChild(_jie);
  8926. _formdiv = new U.UF.UI.form(
  8927. "思維導圖-" + _username,
  8928. _box, { //"/jsmind/example/demo.html"
  8929. "id": "mind" + cid + stage + task + tool + _userid,
  8930. "style": {
  8931. "width": "90%",
  8932. "height": "90%",
  8933. "overflow": 'hidden'
  8934. },
  8935. "onresize": function () { }
  8936. }, {
  8937. closecallback: function () { }
  8938. }, {
  8939. "style": {
  8940. "height": "36px"
  8941. }
  8942. }).form; //創建窗體
  8943. _taskbar = {
  8944. "id": str + _formdiv.id,
  8945. "style": {
  8946. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8947. },
  8948. "name": "思維導圖",
  8949. "forms": _formdiv,
  8950. "click": function () {
  8951. U.MD.D.I.openApplication(str, obj, info);
  8952. }
  8953. }
  8954. break;
  8955. case "doc":
  8956. aTool = 6;
  8957. _iframe = $$("iframe", {
  8958. "frameborder": "no",
  8959. "border": "0",
  8960. "scrolling ": "no",
  8961. "style": {
  8962. "cssText": "border:0;width:100%;height:100%"
  8963. },
  8964. "src": "/Office/Word/WordEditArea.htm"
  8965. })
  8966. _box.appendChild(_iframe);
  8967. _box.appendChild(_jie);
  8968. _formdiv = new U.UF.UI.form(
  8969. "協同文檔-" + _username,
  8970. _box, {
  8971. "id": "doc" + cid + stage + task + tool + _userid,
  8972. "style": {
  8973. "width": "90%",
  8974. "height": "90%",
  8975. "overflow": 'hidden'
  8976. },
  8977. "onresize": function () { }
  8978. }, {
  8979. closecallback: function () { }
  8980. }, {
  8981. "style": {
  8982. "height": "36px"
  8983. }
  8984. }).form; //創建窗體
  8985. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8986. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8987. })
  8988. _taskbar = {
  8989. "id": str + _formdiv.id,
  8990. "style": {
  8991. "backgroundImage": "url(/img/icon/doc.png)"
  8992. },
  8993. "name": "協同文檔",
  8994. "forms": _formdiv,
  8995. "click": function () {
  8996. U.MD.D.I.openApplication(str, obj, info);
  8997. }
  8998. }
  8999. break;
  9000. case "mindNetwork": //好友打開
  9001. aTool = 7;
  9002. _iframe = $$("iframe", {
  9003. "webkitallowfullscreen": "",
  9004. "mozallowfullscreen": "",
  9005. "allowfullscreen": "",
  9006. "frameborder": "no",
  9007. "border": "0",
  9008. "scrolling ": "no",
  9009. "style": {
  9010. "cssText": "border:0; width:100%; height:100%;"
  9011. },
  9012. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9013. })
  9014. _box.appendChild(_iframe);
  9015. _box.appendChild(_jie);
  9016. _formdiv = new U.UF.UI.form(
  9017. "思維網格-" + _username,
  9018. _box, {
  9019. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9020. "style": {
  9021. "width": "90%",
  9022. "height": "90%",
  9023. "overflow": 'hidden'
  9024. },
  9025. "onresize": function () { }
  9026. }, {
  9027. closecallback: function () { }
  9028. }, {
  9029. "style": {
  9030. "height": "36px"
  9031. }
  9032. }).form; //創建窗體
  9033. _taskbar = {
  9034. "id": str + _formdiv.id,
  9035. "style": {
  9036. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9037. },
  9038. "name": "思維網格",
  9039. "forms": _formdiv,
  9040. "click": function () {
  9041. U.MD.D.I.openApplication(str, obj, info);
  9042. }
  9043. }
  9044. break;
  9045. case "courseDesign":
  9046. _iframe = $$("iframe", {
  9047. "webkitallowfullscreen": "",
  9048. "mozallowfullscreen": "",
  9049. "allowfullscreen": "",
  9050. "frameborder": "no",
  9051. "border": "0",
  9052. "scrolling ": "no",
  9053. "style": {
  9054. "cssText": "border:0; width:100%; height:100%;"
  9055. },
  9056. "src": "/course-design-vue"
  9057. })
  9058. _box.appendChild(_iframe);
  9059. _box.appendChild(_jie);
  9060. _formdiv = new U.UF.UI.form(
  9061. "項目設計-" + _username,
  9062. _box, {
  9063. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9064. "style": {
  9065. "width": "90%",
  9066. "height": "90%",
  9067. "overflow": 'hidden'
  9068. },
  9069. "onresize": function () { }
  9070. }, {
  9071. closecallback: function () { }
  9072. }, {
  9073. "style": {
  9074. "height": "36px"
  9075. }
  9076. }).form; //創建窗體
  9077. _taskbar = {
  9078. "id": str + _formdiv.id,
  9079. "style": {
  9080. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9081. },
  9082. "name": "項目設計",
  9083. "forms": _formdiv,
  9084. "click": function () {
  9085. U.MD.D.I.openApplication(str, obj, info);
  9086. }
  9087. }
  9088. break;
  9089. }
  9090. const script1 = document.createElement("script");
  9091. script1.type = "text/javascript";
  9092. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9093. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9094. const script2 = document.createElement("script");
  9095. script2.type = "text/javascript";
  9096. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9097. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9098. const script3 = document.createElement("script");
  9099. script3.type = "text/javascript";
  9100. script3.charset = "UTF-8";
  9101. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9102. const script4 = document.createElement("script");
  9103. script4.type = "text/javascript";
  9104. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9105. script4.src = window.origin + "/js/Common/jietu2E.js";
  9106. if (_iframe) {
  9107. if (str == 'doc') {
  9108. _iframe = _formdiv.querySelector('iframe')
  9109. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9110. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9111. _iframe.contentWindow.document.body.appendChild(script1);
  9112. _iframe.contentWindow.document.body.appendChild(script2);
  9113. // _iframe.contentWindow.document.body.appendChild(script3);
  9114. _iframe.contentWindow.document.body.appendChild(script4);
  9115. })
  9116. if (onloadListener) {
  9117. _iframe.contentDocument.location.reload()
  9118. } else {
  9119. _iframe.contentDocument.location.reload()
  9120. }
  9121. } else if (str == 'courseDesign') {
  9122. U.UF.DL.iframeLoad(_iframe, function () {
  9123. // _iframe.contentWindow.U.MD.O.W.load();
  9124. // _iframe.contentWindow.document.body.appendChild(script1);
  9125. _iframe.contentWindow.document.body.appendChild(script2);
  9126. _iframe.contentWindow.document.body.appendChild(script4);
  9127. })
  9128. } else if (str == 'mind') {
  9129. _iframe = _formdiv.querySelector('iframe')
  9130. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9131. //
  9132. _iframe.contentWindow.document.body.appendChild(script1);
  9133. _iframe.contentWindow.document.body.appendChild(script2);
  9134. _iframe.contentWindow.document.body.appendChild(script4);
  9135. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9136. })
  9137. if (onloadListener) {
  9138. _iframe.contentDocument.location.reload()
  9139. } else {
  9140. _iframe.contentDocument.location.reload()
  9141. }
  9142. } else if (str == 'whiteboard') {
  9143. _iframe = _formdiv.querySelector('iframe')
  9144. let onloadListener = _iframe.onload = () => {
  9145. _iframe.contentWindow.document.body.appendChild(script1);
  9146. _iframe.contentWindow.document.body.appendChild(script2);
  9147. _iframe.contentWindow.document.body.appendChild(script4);
  9148. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9149. };
  9150. // if (onloadListener) {
  9151. // try {
  9152. // _iframe.src += "?cocorobo="+new Date().getTime()
  9153. // _iframe.contentWindow.document.location.reload()
  9154. // } catch (error) {
  9155. // }
  9156. // } else {
  9157. // _iframe.contentDocument.location.reload()
  9158. // }
  9159. } else {
  9160. _iframe.onload = () => {
  9161. _iframe.contentWindow.document.body.appendChild(script1);
  9162. _iframe.contentWindow.document.body.appendChild(script2);
  9163. // _iframe.contentWindow.document.body.appendChild(script3);
  9164. _iframe.contentWindow.document.body.appendChild(script4);
  9165. };
  9166. }
  9167. _jie.onclick = async () => {
  9168. let text = ''
  9169. if (aTool == 1) {
  9170. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9171. } else if (aTool == 6) {
  9172. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9173. } else if (aTool == 3) {
  9174. text = await U.MD.D.I.getEditorContent(_iframe);
  9175. }
  9176. _loading.style.display = 'flex'
  9177. console.log(_loading);
  9178. var _ajs = _iframe.contentWindow.document.createElement("script");
  9179. _ajs.type = "text/javascript";
  9180. _ajs.innerHTML =
  9181. // 'console.log(' + _loading + ');\n' +
  9182. 'var _js = document.createElement("script");\n' +
  9183. '_js.type="text/javascript";\n' +
  9184. '_js.charset="UTF-8";\n' +
  9185. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9186. "_js.onload = function(){\n" +
  9187. ' var a = document.getElementsByTagName("img")\n' +
  9188. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9189. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9190. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9191. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9192. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9193. "beforeUpload_shishi(file," +
  9194. "'" +
  9195. _userid +
  9196. "'" +
  9197. ", " +
  9198. "'" +
  9199. _cid +
  9200. "'" +
  9201. ", " +
  9202. "'" +
  9203. _stage +
  9204. "'" +
  9205. ", " +
  9206. "'" +
  9207. _task +
  9208. "'" +
  9209. ", " +
  9210. "'" +
  9211. _tool +
  9212. "'" +
  9213. ", " +
  9214. "'" +
  9215. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9216. "'" +
  9217. ", " +
  9218. "'" +
  9219. aTool +
  9220. "'" +
  9221. ", " +
  9222. "`" +
  9223. text +
  9224. "`" +
  9225. ")\n" +
  9226. " });\n" +
  9227. "}\n" +
  9228. "document.head.appendChild(_js);\n";
  9229. _iframe.contentWindow.document.head.appendChild(_ajs);
  9230. }
  9231. }
  9232. }
  9233. U.MD.D.I.getEditorContent = function (iframe) {
  9234. return new Promise((resolve, reject) => {
  9235. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9236. console.log(content);
  9237. resolve(content)
  9238. });
  9239. });
  9240. }
  9241. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9242. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9243. // if (res.value[0].length > 0) {
  9244. // // resolve(res.value[0][0].text);
  9245. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9246. // $(fileInput).val('');
  9247. // });
  9248. // }
  9249. // }, [], { "type": "GET", "withCredentials": true });
  9250. var xmlhttp;
  9251. var Mac, Sn, DeviceId
  9252. if (window.XMLHttpRequest) {
  9253. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9254. xmlhttp = new XMLHttpRequest();
  9255. }
  9256. else {
  9257. // IE6, IE5 瀏覽器執行代碼
  9258. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9259. }
  9260. xmlhttp.onreadystatechange = function () {
  9261. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9262. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9263. // resolve(res.value[0][0].text);
  9264. if (type == '2') {
  9265. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9266. } else if (type == '3') {
  9267. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9268. }
  9269. } else {
  9270. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9271. }
  9272. }
  9273. }
  9274. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9275. xmlhttp.send();
  9276. }
  9277. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9278. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9279. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9280. _userinfo = US.userInfo, //登錄用戶信息
  9281. _userid = US.userInfo.userid //登錄用戶id
  9282. let _iframe;
  9283. let _cid = cid,
  9284. _stage = stage,
  9285. _task = task,
  9286. _tool = tool;
  9287. var _jie = $$("div", {
  9288. "style": {
  9289. "position": "absolute",
  9290. "bottom": "50px",
  9291. "right": "50px",
  9292. "zIndex": "9999",
  9293. "backgroundColor": "#2268bc",
  9294. "color": "#fff",
  9295. "padding": "12px 20px",
  9296. "cursor": "pointer",
  9297. "borderRadius": "4px",
  9298. },
  9299. "innerHTML": "確認並提交"
  9300. })
  9301. let aTool = ''
  9302. let _loading = document.createElement('div')
  9303. _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;"
  9304. // _loading.id = "";
  9305. let _lchild = document.createElement('div')
  9306. let _limg = document.createElement('img')
  9307. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9308. _limg.style = "width: 26px;margin-right: 10px;"
  9309. _lchild.appendChild(_limg)
  9310. let _lspan = document.createElement('span')
  9311. _lspan.innerHTML = "上傳中..."
  9312. _lchild.appendChild(_lspan)
  9313. _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%);"
  9314. _loading.appendChild(_lchild)
  9315. var _box = $$('div', {
  9316. "style": {
  9317. "position": "relative",
  9318. "width": "100%",
  9319. "height": "100%",
  9320. },
  9321. })
  9322. _box.appendChild(_loading)
  9323. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9324. switch (str) {
  9325. case "whiteboard":
  9326. aTool = 1;
  9327. _iframe = $$("iframe", {
  9328. "frameborder": "no",
  9329. "border": "0",
  9330. "scrolling ": "no",
  9331. "style": {
  9332. "cssText": "border:0;width:100%;height:100%"
  9333. },
  9334. "src": "https://iwb.cocorobo.hk/"
  9335. })
  9336. _box.appendChild(_iframe);
  9337. _box.appendChild(_jie);
  9338. _formdiv = new U.UF.UI.form(
  9339. "電子白板",
  9340. _box, {
  9341. "id": "whiteboards" + cid + stage + task + tool,
  9342. "style": {
  9343. "width": "90%",
  9344. "height": "90%",
  9345. "overflow": 'hidden'
  9346. },
  9347. "onresize": function () { }
  9348. }, {
  9349. closecallback: function () { }
  9350. }, {
  9351. "style": {
  9352. "height": "36px"
  9353. }
  9354. }).form; //創建窗體
  9355. _taskbar = {
  9356. "id": str + _formdiv.id,
  9357. "style": {
  9358. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9359. },
  9360. "name": "電子白板",
  9361. "forms": _formdiv,
  9362. "click": function () {
  9363. U.MD.D.I.openApplication(str, obj, info);
  9364. }
  9365. }
  9366. break;
  9367. case "mind":
  9368. aTool = 3;
  9369. _iframe = $$("iframe", {
  9370. "frameborder": "no",
  9371. "border": "0",
  9372. "scrolling ": "no",
  9373. "style": {
  9374. "cssText": "border:0;width:100%;height:100%"
  9375. },
  9376. "src": "/kityminder-editor/dist/index.html"
  9377. });
  9378. _box.appendChild(_iframe);
  9379. _box.appendChild(_jie);
  9380. _formdiv = new U.UF.UI.form(
  9381. "思維導圖",
  9382. _box, { //"/jsmind/example/demo.html"
  9383. "id": "minds" + cid + stage + task + tool,
  9384. "style": {
  9385. "width": "90%",
  9386. "height": "90%",
  9387. "overflow": 'hidden'
  9388. },
  9389. "onresize": function () { }
  9390. }, {
  9391. closecallback: function () { }
  9392. }, {
  9393. "style": {
  9394. "height": "36px"
  9395. }
  9396. }).form; //創建窗體
  9397. _taskbar = {
  9398. "id": str + _formdiv.id,
  9399. "style": {
  9400. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9401. },
  9402. "name": "思維導圖",
  9403. "forms": _formdiv,
  9404. "click": function () {
  9405. U.MD.D.I.openApplication(str, obj, info);
  9406. }
  9407. }
  9408. break;
  9409. case "doc":
  9410. aTool = 6;
  9411. _iframe = $$("iframe", {
  9412. "frameborder": "no",
  9413. "border": "0",
  9414. "scrolling ": "no",
  9415. "style": {
  9416. "cssText": "border:0;width:100%;height:100%"
  9417. },
  9418. "src": "/Office/Word/WordEditArea.htm"
  9419. })
  9420. _box.appendChild(_iframe);
  9421. _box.appendChild(_jie);
  9422. _formdiv = new U.UF.UI.form(
  9423. "協同文檔",
  9424. _box, {
  9425. "id": "docs" + cid + stage + task + tool,
  9426. "style": {
  9427. "width": "90%",
  9428. "height": "90%",
  9429. "overflow": 'hidden'
  9430. },
  9431. "onresize": function () { }
  9432. }, {
  9433. closecallback: function () { }
  9434. }, {
  9435. "style": {
  9436. "height": "36px"
  9437. }
  9438. }).form; //創建窗體
  9439. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9440. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9441. })
  9442. _taskbar = {
  9443. "id": str + _formdiv.id,
  9444. "style": {
  9445. "backgroundImage": "url(/img/icon/doc.png)"
  9446. },
  9447. "name": "協同文檔",
  9448. "forms": _formdiv,
  9449. "click": function () {
  9450. U.MD.D.I.openApplication(str, obj, info);
  9451. }
  9452. }
  9453. break;
  9454. }
  9455. const script1 = document.createElement("script");
  9456. script1.type = "text/javascript";
  9457. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9458. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9459. const script2 = document.createElement("script");
  9460. script2.type = "text/javascript";
  9461. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9462. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9463. const script3 = document.createElement("script");
  9464. script3.type = "text/javascript";
  9465. script3.charset = "UTF-8";
  9466. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9467. const script4 = document.createElement("script");
  9468. script4.type = "text/javascript";
  9469. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9470. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9471. if (_iframe) {
  9472. if (str == 'doc') {
  9473. _iframe = _formdiv.querySelector('iframe')
  9474. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9475. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9476. _iframe.contentWindow.document.body.appendChild(script1);
  9477. _iframe.contentWindow.document.body.appendChild(script2);
  9478. // _iframe.contentWindow.document.body.appendChild(script3);
  9479. _iframe.contentWindow.document.body.appendChild(script4);
  9480. })
  9481. if (onloadListener) {
  9482. _iframe.contentDocument.location.reload()
  9483. } else {
  9484. _iframe.contentDocument.location.reload()
  9485. }
  9486. } else if (str == 'mind') {
  9487. _iframe = _formdiv.querySelector('iframe')
  9488. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9489. _iframe.contentWindow.document.body.appendChild(script1);
  9490. _iframe.contentWindow.document.body.appendChild(script2);
  9491. _iframe.contentWindow.document.body.appendChild(script4);
  9492. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9493. })
  9494. if (onloadListener) {
  9495. _iframe.contentDocument.location.reload()
  9496. } else {
  9497. _iframe.contentDocument.location.reload()
  9498. }
  9499. } else {
  9500. _iframe.onload = () => {
  9501. _iframe.contentWindow.document.body.appendChild(script1);
  9502. _iframe.contentWindow.document.body.appendChild(script2);
  9503. // _iframe.contentWindow.document.body.appendChild(script3);
  9504. _iframe.contentWindow.document.body.appendChild(script4);
  9505. };
  9506. }
  9507. _jie.onclick = async () => {
  9508. let text = ''
  9509. if (aTool == 6) {
  9510. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9511. } else if (aTool == 3) {
  9512. text = await U.MD.D.I.getEditorContent(_iframe);
  9513. }
  9514. _loading.style.display = 'flex'
  9515. console.log(_loading);
  9516. var _ajs = _iframe.contentWindow.document.createElement("script");
  9517. _ajs.type = "text/javascript";
  9518. _ajs.innerHTML =
  9519. // 'console.log(' + _loading + ');\n' +
  9520. 'var _js = document.createElement("script");\n' +
  9521. '_js.type="text/javascript";\n' +
  9522. '_js.charset="UTF-8";\n' +
  9523. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9524. "_js.onload = function(){\n" +
  9525. ' var a = document.getElementsByTagName("img")\n' +
  9526. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9527. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9528. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9529. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9530. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9531. "beforeUpload_shishi(file," +
  9532. "'" +
  9533. _userid +
  9534. "'" +
  9535. ", " +
  9536. "'" +
  9537. _cid +
  9538. "'" +
  9539. ", " +
  9540. "'" +
  9541. _stage +
  9542. "'" +
  9543. ", " +
  9544. "'" +
  9545. _task +
  9546. "'" +
  9547. ", " +
  9548. "'" +
  9549. _tool +
  9550. "'" +
  9551. ", " +
  9552. "'" +
  9553. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9554. "'" +
  9555. ", " +
  9556. "'" +
  9557. aTool +
  9558. "'" +
  9559. ", " +
  9560. "`" +
  9561. text +
  9562. "`" +
  9563. ")\n" +
  9564. " });\n" +
  9565. "}\n" +
  9566. "document.head.appendChild(_js);\n";
  9567. _iframe.contentWindow.document.head.appendChild(_ajs);
  9568. }
  9569. }
  9570. //U.MD.D.I.openClick(str);
  9571. //如果有任務欄信息
  9572. // if (_taskbar) {
  9573. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9574. // }
  9575. }
  9576. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9577. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9578. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9579. _userinfo = US.userInfo, //登錄用戶信息
  9580. _userid = US.userInfo.userid //登錄用戶id
  9581. let _iframe;
  9582. let _cid = cid,
  9583. _stage = stage,
  9584. _task = task,
  9585. _tool = tool;
  9586. var _jie = $$("div", {
  9587. "style": {
  9588. "position": "absolute",
  9589. "bottom": "50px",
  9590. "right": "50px",
  9591. "zIndex": "9999",
  9592. "backgroundColor": "#2268bc",
  9593. "color": "#fff",
  9594. "padding": "12px 20px",
  9595. "cursor": "pointer",
  9596. "borderRadius": "4px",
  9597. },
  9598. "innerHTML": "確認並提交"
  9599. })
  9600. let aTool = ''
  9601. let _loading = document.createElement('div')
  9602. _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;"
  9603. // _loading.id = "";
  9604. let _lchild = document.createElement('div')
  9605. let _limg = document.createElement('img')
  9606. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9607. _limg.style = "width: 26px;margin-right: 10px;"
  9608. _lchild.appendChild(_limg)
  9609. let _lspan = document.createElement('span')
  9610. _lspan.innerHTML = "上傳中..."
  9611. _lchild.appendChild(_lspan)
  9612. _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%);"
  9613. _loading.appendChild(_lchild)
  9614. var _box = $$('div', {
  9615. "style": {
  9616. "position": "relative",
  9617. "width": "100%",
  9618. "height": "100%",
  9619. },
  9620. })
  9621. _box.appendChild(_loading)
  9622. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9623. switch (str) {
  9624. case "whiteboard":
  9625. aTool = 1;
  9626. _iframe = $$("iframe", {
  9627. "frameborder": "no",
  9628. "border": "0",
  9629. "scrolling ": "no",
  9630. "style": {
  9631. "cssText": "border:0;width:100%;height:100%"
  9632. },
  9633. "src": "https://iwb.cocorobo.hk/"
  9634. })
  9635. _box.appendChild(_iframe);
  9636. _box.appendChild(_jie);
  9637. _formdiv = new U.UF.UI.form(
  9638. "電子白板",
  9639. _box, {
  9640. "id": "whiteboards" + cid + stage + task + tool,
  9641. "style": {
  9642. "width": "90%",
  9643. "height": "90%",
  9644. "overflow": 'hidden'
  9645. },
  9646. "onresize": function () { }
  9647. }, {
  9648. closecallback: function () { }
  9649. }, {
  9650. "style": {
  9651. "height": "36px"
  9652. }
  9653. }).form; //創建窗體
  9654. _taskbar = {
  9655. "id": str + _formdiv.id,
  9656. "style": {
  9657. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9658. },
  9659. "name": "電子白板",
  9660. "forms": _formdiv,
  9661. "click": function () {
  9662. U.MD.D.I.openApplication(str, obj, info);
  9663. }
  9664. }
  9665. break;
  9666. case "mind":
  9667. aTool = 3;
  9668. _iframe = $$("iframe", {
  9669. "frameborder": "no",
  9670. "border": "0",
  9671. "scrolling ": "no",
  9672. "style": {
  9673. "cssText": "border:0;width:100%;height:100%"
  9674. },
  9675. "src": "/kityminder-editor/dist/index.html"
  9676. });
  9677. _box.appendChild(_iframe);
  9678. _box.appendChild(_jie);
  9679. _formdiv = new U.UF.UI.form(
  9680. "思維導圖",
  9681. _box, { //"/jsmind/example/demo.html"
  9682. "id": "minds" + cid + stage + task + tool,
  9683. "style": {
  9684. "width": "90%",
  9685. "height": "90%",
  9686. "overflow": 'hidden'
  9687. },
  9688. "onresize": function () { }
  9689. }, {
  9690. closecallback: function () { }
  9691. }, {
  9692. "style": {
  9693. "height": "36px"
  9694. }
  9695. }).form; //創建窗體
  9696. _taskbar = {
  9697. "id": str + _formdiv.id,
  9698. "style": {
  9699. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9700. },
  9701. "name": "思維導圖",
  9702. "forms": _formdiv,
  9703. "click": function () {
  9704. U.MD.D.I.openApplication(str, obj, info);
  9705. }
  9706. }
  9707. break;
  9708. case "doc":
  9709. aTool = 6;
  9710. _iframe = $$("iframe", {
  9711. "frameborder": "no",
  9712. "border": "0",
  9713. "scrolling ": "no",
  9714. "style": {
  9715. "cssText": "border:0;width:100%;height:100%"
  9716. },
  9717. "src": "/Office/Word/WordEditArea.htm"
  9718. })
  9719. _box.appendChild(_iframe);
  9720. _box.appendChild(_jie);
  9721. _formdiv = new U.UF.UI.form(
  9722. "協同文檔",
  9723. _box, {
  9724. "id": "docs" + cid + stage + task + tool,
  9725. "style": {
  9726. "width": "90%",
  9727. "height": "90%",
  9728. "overflow": 'hidden'
  9729. },
  9730. "onresize": function () { }
  9731. }, {
  9732. closecallback: function () { }
  9733. }, {
  9734. "style": {
  9735. "height": "36px"
  9736. }
  9737. }).form; //創建窗體
  9738. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9739. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9740. })
  9741. _taskbar = {
  9742. "id": str + _formdiv.id,
  9743. "style": {
  9744. "backgroundImage": "url(/img/icon/doc.png)"
  9745. },
  9746. "name": "協同文檔",
  9747. "forms": _formdiv,
  9748. "click": function () {
  9749. U.MD.D.I.openApplication(str, obj, info);
  9750. }
  9751. }
  9752. break;
  9753. }
  9754. const script1 = document.createElement("script");
  9755. script1.type = "text/javascript";
  9756. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9757. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9758. const script2 = document.createElement("script");
  9759. script2.type = "text/javascript";
  9760. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9761. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9762. const script3 = document.createElement("script");
  9763. script3.type = "text/javascript";
  9764. script3.charset = "UTF-8";
  9765. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9766. const script4 = document.createElement("script");
  9767. script4.type = "text/javascript";
  9768. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9769. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  9770. if (_iframe) {
  9771. if (str == 'doc') {
  9772. _iframe = _formdiv.querySelector('iframe')
  9773. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9774. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9775. _iframe.contentWindow.document.body.appendChild(script1);
  9776. _iframe.contentWindow.document.body.appendChild(script2);
  9777. // _iframe.contentWindow.document.body.appendChild(script3);
  9778. _iframe.contentWindow.document.body.appendChild(script4);
  9779. })
  9780. if (onloadListener) {
  9781. _iframe.contentDocument.location.reload()
  9782. } else {
  9783. _iframe.contentDocument.location.reload()
  9784. }
  9785. } else if (str == 'mind') {
  9786. _iframe = _formdiv.querySelector('iframe')
  9787. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9788. _iframe.contentWindow.document.body.appendChild(script1);
  9789. _iframe.contentWindow.document.body.appendChild(script2);
  9790. _iframe.contentWindow.document.body.appendChild(script4);
  9791. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9792. })
  9793. if (onloadListener) {
  9794. _iframe.contentDocument.location.reload()
  9795. } else {
  9796. _iframe.contentDocument.location.reload()
  9797. }
  9798. } else {
  9799. _iframe.onload = () => {
  9800. _iframe.contentWindow.document.body.appendChild(script1);
  9801. _iframe.contentWindow.document.body.appendChild(script2);
  9802. // _iframe.contentWindow.document.body.appendChild(script3);
  9803. _iframe.contentWindow.document.body.appendChild(script4);
  9804. };
  9805. }
  9806. _jie.onclick = async () => {
  9807. let text = ''
  9808. if (aTool == 6) {
  9809. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9810. } else if (aTool == 3) {
  9811. text = await U.MD.D.I.getEditorContent(_iframe);
  9812. }
  9813. _loading.style.display = 'flex'
  9814. console.log(_loading);
  9815. var _ajs = _iframe.contentWindow.document.createElement("script");
  9816. _ajs.type = "text/javascript";
  9817. _ajs.innerHTML =
  9818. // 'console.log(' + _loading + ');\n' +
  9819. 'var _js = document.createElement("script");\n' +
  9820. '_js.type="text/javascript";\n' +
  9821. '_js.charset="UTF-8";\n' +
  9822. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9823. "_js.onload = function(){\n" +
  9824. ' var a = document.getElementsByTagName("img")\n' +
  9825. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9826. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9827. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9828. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9829. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9830. "beforeUpload_shishi(file," +
  9831. "'" +
  9832. _userid +
  9833. "'" +
  9834. ", " +
  9835. "'" +
  9836. _cid +
  9837. "'" +
  9838. ", " +
  9839. "'" +
  9840. _stage +
  9841. "'" +
  9842. ", " +
  9843. "'" +
  9844. _task +
  9845. "'" +
  9846. ", " +
  9847. "'" +
  9848. _tool +
  9849. "'" +
  9850. ", " +
  9851. "'" +
  9852. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9853. "'" +
  9854. ", " +
  9855. "'" +
  9856. aTool +
  9857. "'" +
  9858. ", " +
  9859. "`" +
  9860. text +
  9861. "`" +
  9862. ")\n" +
  9863. " });\n" +
  9864. "}\n" +
  9865. "document.head.appendChild(_js);\n";
  9866. _iframe.contentWindow.document.head.appendChild(_ajs);
  9867. }
  9868. }
  9869. //U.MD.D.I.openClick(str);
  9870. //如果有任務欄信息
  9871. // if (_taskbar) {
  9872. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9873. // }
  9874. }
  9875. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9876. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9877. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9878. _userinfo = US.userInfo, //登錄用戶信息
  9879. _userid = US.userInfo.userid //登錄用戶id
  9880. let _iframe;
  9881. let _cid = cid,
  9882. _stage = stage,
  9883. _task = task,
  9884. _tool = tool;
  9885. var _jie = $$("div", {
  9886. "style": {
  9887. "position": "absolute",
  9888. "bottom": "50px",
  9889. "right": "50px",
  9890. "zIndex": "9999",
  9891. "backgroundColor": "#2268bc",
  9892. "color": "#fff",
  9893. "padding": "12px 20px",
  9894. "cursor": "pointer",
  9895. "borderRadius": "4px",
  9896. },
  9897. "innerHTML": "上傳模板"
  9898. })
  9899. let aTool = ''
  9900. let _loading = document.createElement('div')
  9901. _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;"
  9902. // _loading.id = "";
  9903. let _lchild = document.createElement('div')
  9904. let _limg = document.createElement('img')
  9905. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9906. _limg.style = "width: 26px;margin-right: 10px;"
  9907. _lchild.appendChild(_limg)
  9908. let _lspan = document.createElement('span')
  9909. _lspan.innerHTML = "上傳中..."
  9910. _lchild.appendChild(_lspan)
  9911. _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%);"
  9912. _loading.appendChild(_lchild)
  9913. var _box = $$('div', {
  9914. "style": {
  9915. "position": "relative",
  9916. "width": "100%",
  9917. "height": "100%",
  9918. },
  9919. })
  9920. _box.appendChild(_loading)
  9921. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9922. switch (str) {
  9923. case "whiteboard":
  9924. aTool = 1;
  9925. _iframe = $$("iframe", {
  9926. "frameborder": "no",
  9927. "border": "0",
  9928. "scrolling ": "no",
  9929. "style": {
  9930. "cssText": "border:0;width:100%;height:100%"
  9931. },
  9932. "src": "https://iwb.cocorobo.hk/"
  9933. })
  9934. _box.appendChild(_iframe);
  9935. _box.appendChild(_jie);
  9936. _formdiv = new U.UF.UI.form(
  9937. "電子白板",
  9938. _box, {
  9939. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9940. "style": {
  9941. "width": "90%",
  9942. "height": "90%",
  9943. "overflow": 'hidden'
  9944. },
  9945. "onresize": function () { }
  9946. }, {
  9947. closecallback: function () { }
  9948. }, {
  9949. "style": {
  9950. "height": "36px"
  9951. }
  9952. }).form; //創建窗體
  9953. _taskbar = {
  9954. "id": str + _formdiv.id,
  9955. "style": {
  9956. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9957. },
  9958. "name": "電子白板",
  9959. "forms": _formdiv,
  9960. "click": function () {
  9961. U.MD.D.I.openApplication(str, obj, info);
  9962. }
  9963. }
  9964. break;
  9965. case "mind":
  9966. aTool = 3;
  9967. _iframe = $$("iframe", {
  9968. "frameborder": "no",
  9969. "border": "0",
  9970. "scrolling ": "no",
  9971. "style": {
  9972. "cssText": "border:0;width:100%;height:100%"
  9973. },
  9974. "src": "/kityminder-editor/dist/index.html"
  9975. });
  9976. _box.appendChild(_iframe);
  9977. _box.appendChild(_jie);
  9978. _formdiv = new U.UF.UI.form(
  9979. "思維導圖",
  9980. _box, { //"/jsmind/example/demo.html"
  9981. "id": "minds_Yu" + cid + stage + task + tool,
  9982. "style": {
  9983. "width": "90%",
  9984. "height": "90%",
  9985. "overflow": 'hidden'
  9986. },
  9987. "onresize": function () { }
  9988. }, {
  9989. closecallback: function () { }
  9990. }, {
  9991. "style": {
  9992. "height": "36px"
  9993. }
  9994. }).form; //創建窗體
  9995. _taskbar = {
  9996. "id": str + _formdiv.id,
  9997. "style": {
  9998. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9999. },
  10000. "name": "思維導圖",
  10001. "forms": _formdiv,
  10002. "click": function () {
  10003. U.MD.D.I.openApplication(str, obj, info);
  10004. }
  10005. }
  10006. break;
  10007. case "doc":
  10008. aTool = 6;
  10009. _iframe = $$("iframe", {
  10010. "frameborder": "no",
  10011. "border": "0",
  10012. "scrolling ": "no",
  10013. "style": {
  10014. "cssText": "border:0;width:100%;height:100%"
  10015. },
  10016. "src": "/Office/Word/WordEditArea.htm"
  10017. })
  10018. _box.appendChild(_iframe);
  10019. _box.appendChild(_jie);
  10020. _formdiv = new U.UF.UI.form(
  10021. "協同文檔",
  10022. _box, {
  10023. "id": "docs_Yu" + cid + stage + task + tool,
  10024. "style": {
  10025. "width": "90%",
  10026. "height": "90%",
  10027. "overflow": 'hidden'
  10028. },
  10029. "onresize": function () { }
  10030. }, {
  10031. closecallback: function () { }
  10032. }, {
  10033. "style": {
  10034. "height": "36px"
  10035. }
  10036. }).form; //創建窗體
  10037. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10038. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10039. })
  10040. _taskbar = {
  10041. "id": str + _formdiv.id,
  10042. "style": {
  10043. "backgroundImage": "url(/img/icon/doc.png)"
  10044. },
  10045. "name": "協同文檔",
  10046. "forms": _formdiv,
  10047. "click": function () {
  10048. U.MD.D.I.openApplication(str, obj, info);
  10049. }
  10050. }
  10051. break;
  10052. case "CocoPi":
  10053. aTool = 57;
  10054. _iframe = $$("iframe", {
  10055. "allowpaymentrequest": "allowpaymentrequest",
  10056. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10057. "webkitallowfullscreen": "",
  10058. "mozallowfullscreen": "",
  10059. "frameborder": "no",
  10060. "border": "0",
  10061. "scrolling ": "no",
  10062. "style": {
  10063. "cssText": "border:0;width:100%;height:100%"
  10064. },
  10065. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10066. })
  10067. _box.appendChild(_iframe);
  10068. _box.appendChild(_jie);
  10069. _formdiv = new U.UF.UI.form(
  10070. "CocoPi",
  10071. _box, {
  10072. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10073. "style": {
  10074. "width": "90%",
  10075. "height": "90%",
  10076. "overflow": 'hidden'
  10077. },
  10078. "onresize": function () { }
  10079. }, {
  10080. closecallback: function () { }
  10081. }, {
  10082. "style": {
  10083. "height": "36px"
  10084. }
  10085. }).form; //創建窗體
  10086. _taskbar = {
  10087. "id": str + _formdiv.id,
  10088. "style": {
  10089. "backgroundImage": "url(/img/icon/cocopi.png)"
  10090. },
  10091. "name": "CocoPi",
  10092. "forms": _formdiv,
  10093. "click": function () {
  10094. U.MD.D.I.openApplication(str, obj, info);
  10095. }
  10096. }
  10097. break;
  10098. }
  10099. if (_iframe) {
  10100. if (str == 'doc') {
  10101. _iframe = _formdiv.querySelector('iframe')
  10102. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10103. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10104. })
  10105. if (onloadListener) {
  10106. _iframe.contentDocument.location.reload()
  10107. } else {
  10108. _iframe.contentDocument.location.reload()
  10109. }
  10110. } else if (str == 'mind') {
  10111. _iframe = _formdiv.querySelector('iframe')
  10112. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10113. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10114. })
  10115. if (onloadListener) {
  10116. _iframe.contentDocument.location.reload()
  10117. } else {
  10118. _iframe.contentDocument.location.reload()
  10119. }
  10120. } else if (str == 'whiteboard') {
  10121. _iframe = _formdiv.querySelector('iframe')
  10122. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10123. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10124. })
  10125. // if (onloadListener) {
  10126. // try {
  10127. // _iframe.src += "?cocorobo="+new Date().getTime()
  10128. // _iframe.contentWindow.document.location.reload()
  10129. // } catch (error) {
  10130. // }
  10131. // } else {
  10132. // _iframe.contentDocument.location.reload()
  10133. // }
  10134. } else if (str == 'CocoPi') {
  10135. _iframe = _formdiv.querySelector('iframe')
  10136. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10137. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10138. })
  10139. if (onloadListener) {
  10140. _iframe.contentDocument.location.reload()
  10141. } else {
  10142. _iframe.contentDocument.location.reload()
  10143. }
  10144. } else {
  10145. _iframe.onload = () => { };
  10146. }
  10147. _jie.onclick = async () => {
  10148. let text = ''
  10149. let type = '2'
  10150. if (aTool == 1) {
  10151. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10152. type = '3'
  10153. } else if (aTool == 6) {
  10154. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10155. type = '1'
  10156. } else if (aTool == 3) {
  10157. text = await U.MD.D.I.getEditorContent(_iframe);
  10158. type = '2'
  10159. } else if (aTool == 57) {
  10160. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10161. type = '4'
  10162. }
  10163. _loading.style.display = 'flex'
  10164. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10165. }
  10166. }
  10167. //U.MD.D.I.openClick(str);
  10168. //如果有任務欄信息
  10169. // if (_taskbar) {
  10170. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10171. // }
  10172. }
  10173. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10174. var xmlhttp;
  10175. var Mac, Sn, DeviceId
  10176. if (window.XMLHttpRequest) {
  10177. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10178. xmlhttp = new XMLHttpRequest();
  10179. }
  10180. else {
  10181. // IE6, IE5 瀏覽器執行代碼
  10182. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10183. }
  10184. xmlhttp.onreadystatechange = function () {
  10185. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10186. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10187. // resolve(res.value[0][0].text);
  10188. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10189. }
  10190. }
  10191. }
  10192. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10193. xmlhttp.send();
  10194. }
  10195. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10196. var xmlhttp;
  10197. var Mac, Sn, DeviceId
  10198. if (window.XMLHttpRequest) {
  10199. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10200. xmlhttp = new XMLHttpRequest();
  10201. }
  10202. else {
  10203. // IE6, IE5 瀏覽器執行代碼
  10204. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10205. }
  10206. xmlhttp.onreadystatechange = function () {
  10207. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10208. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10209. // resolve(res.value[0][0].text);
  10210. if (type == '2') {
  10211. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10212. } else if (type == '3') {
  10213. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10214. } else if (type == '4') {
  10215. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10216. }
  10217. } else {
  10218. if (type == '2') {
  10219. iframe.contentWindow.editor.minder.importData('json', '')
  10220. } else if (type == '3') {
  10221. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10222. } else if (type == '4') {
  10223. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10224. }
  10225. }
  10226. }
  10227. }
  10228. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10229. xmlhttp.send();
  10230. }
  10231. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10232. var xmlhttp;
  10233. var Mac, Sn, DeviceId
  10234. if (window.XMLHttpRequest) {
  10235. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10236. xmlhttp = new XMLHttpRequest();
  10237. }
  10238. else {
  10239. // IE6, IE5 瀏覽器執行代碼
  10240. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10241. }
  10242. xmlhttp.onreadystatechange = function () {
  10243. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10244. if (xmlhttp.response) {
  10245. // resolve(res.value[0][0].text);
  10246. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10247. // $(fileInput).val('');
  10248. // });
  10249. span.innerHTML = '上傳成功'
  10250. setTimeout(() => {
  10251. loading.style.display = 'none'
  10252. }, 1000);
  10253. }
  10254. }
  10255. }
  10256. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10257. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10258. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10259. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10260. // 設置請求頭,表示請求體的編碼格式
  10261. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10262. // 設置請求體,使用url-encoded格式的數據
  10263. }
  10264. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10265. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10266. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10267. _userinfo = US.userInfo, //登錄用戶信息
  10268. _userid = US.userInfo.userid //登錄用戶id
  10269. let _iframe;
  10270. let _cid = cid,
  10271. _stage = stage,
  10272. _task = task,
  10273. _tool = tool;
  10274. var _jie = $$("div", {
  10275. "style": {
  10276. "position": "absolute",
  10277. "bottom": "50px",
  10278. "right": "50px",
  10279. "zIndex": "9999",
  10280. "backgroundColor": "#2268bc",
  10281. "color": "#fff",
  10282. "padding": "12px 20px",
  10283. "cursor": "pointer",
  10284. "borderRadius": "4px",
  10285. },
  10286. "innerHTML": "提交作業"
  10287. })
  10288. let aTool = ''
  10289. let _loading = document.createElement('div')
  10290. _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;"
  10291. // _loading.id = "";
  10292. let _lchild = document.createElement('div')
  10293. let _limg = document.createElement('img')
  10294. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10295. _limg.style = "width: 26px;margin-right: 10px;"
  10296. _lchild.appendChild(_limg)
  10297. let _lspan = document.createElement('span')
  10298. _lspan.innerHTML = "上傳中..."
  10299. _lchild.appendChild(_lspan)
  10300. _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%);"
  10301. _loading.appendChild(_lchild)
  10302. var _box = $$('div', {
  10303. "style": {
  10304. "position": "relative",
  10305. "width": "100%",
  10306. "height": "100%",
  10307. },
  10308. })
  10309. _box.appendChild(_loading)
  10310. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10311. switch (str) {
  10312. case "CocoPi":
  10313. aTool = 57;
  10314. _iframe = $$("iframe", {
  10315. "allowpaymentrequest": "allowpaymentrequest",
  10316. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10317. "webkitallowfullscreen": "",
  10318. "mozallowfullscreen": "",
  10319. "frameborder": "no",
  10320. "border": "0",
  10321. "scrolling ": "no",
  10322. "style": {
  10323. "cssText": "border:0;width:100%;height:100%"
  10324. },
  10325. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10326. })
  10327. _box.appendChild(_iframe);
  10328. _box.appendChild(_jie);
  10329. _formdiv = new U.UF.UI.form(
  10330. "CocoPi",
  10331. _box, {
  10332. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10333. "style": {
  10334. "width": "90%",
  10335. "height": "90%",
  10336. "overflow": 'hidden'
  10337. },
  10338. "onresize": function () { }
  10339. }, {
  10340. closecallback: function () { }
  10341. }, {
  10342. "style": {
  10343. "height": "36px"
  10344. }
  10345. }).form; //創建窗體
  10346. _taskbar = {
  10347. "id": str + _formdiv.id,
  10348. "style": {
  10349. "backgroundImage": "url(/img/icon/cocopi.png)"
  10350. },
  10351. "name": "CocoPi",
  10352. "forms": _formdiv,
  10353. "click": function () {
  10354. U.MD.D.I.openApplication(str, obj, info);
  10355. }
  10356. }
  10357. break;
  10358. }
  10359. if (_iframe) {
  10360. if (str == 'CocoPi') {
  10361. _iframe = _formdiv.querySelector('iframe')
  10362. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10363. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10364. })
  10365. if (onloadListener) {
  10366. _iframe.contentDocument.location.reload()
  10367. } else {
  10368. _iframe.contentDocument.location.reload()
  10369. }
  10370. }
  10371. _jie.onclick = async () => {
  10372. let text = ''
  10373. if (aTool == 57) {
  10374. text = _iframe.contentWindow.getLoadXmlStr()
  10375. }
  10376. _loading.style.display = 'flex'
  10377. console.log(_loading);
  10378. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10379. _loading.style.display = 'none'
  10380. let _div = document.createElement('div')
  10381. _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;"
  10382. let _inner = document.createElement('div')
  10383. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10384. _inner.innerHTML = "上傳成功"
  10385. _div.appendChild(_inner)
  10386. _iframe.contentWindow.window.document.body.appendChild(_div)
  10387. _div.onclick = () => {
  10388. _iframe.contentWindow.window.document.body.removeChild(_div)
  10389. }
  10390. setTimeout(() => {
  10391. _iframe.contentWindow.window.document.body.removeChild(_div)
  10392. }, 1000);
  10393. }, [], { "type": "POST", "withCredentials": true });
  10394. }
  10395. }
  10396. }
  10397. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10398. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10399. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10400. _userid = student.userid, //登錄用戶id
  10401. _username = student.student //用戶名字
  10402. let _iframe;
  10403. let _cid = cid,
  10404. _stage = stage,
  10405. _task = task,
  10406. _tool = tool;
  10407. var _jie = $$("div", {
  10408. "style": {
  10409. "position": "absolute",
  10410. "bottom": "50px",
  10411. "right": "50px",
  10412. "zIndex": "9999",
  10413. "backgroundColor": "#2268bc",
  10414. "color": "#fff",
  10415. "padding": "12px 20px",
  10416. "cursor": "pointer",
  10417. "borderRadius": "4px",
  10418. },
  10419. "innerHTML": "提交作業"
  10420. })
  10421. let aTool = ''
  10422. let _loading = document.createElement('div')
  10423. _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;"
  10424. // _loading.id = "";
  10425. let _lchild = document.createElement('div')
  10426. let _limg = document.createElement('img')
  10427. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10428. _limg.style = "width: 26px;margin-right: 10px;"
  10429. _lchild.appendChild(_limg)
  10430. let _lspan = document.createElement('span')
  10431. _lspan.innerHTML = "上傳中..."
  10432. _lchild.appendChild(_lspan)
  10433. _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%);"
  10434. _loading.appendChild(_lchild)
  10435. var _box = $$('div', {
  10436. "style": {
  10437. "position": "relative",
  10438. "width": "100%",
  10439. "height": "100%",
  10440. },
  10441. })
  10442. _box.appendChild(_loading)
  10443. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10444. switch (str) {
  10445. case "CocoPi":
  10446. aTool = 57;
  10447. _iframe = $$("iframe", {
  10448. "allowpaymentrequest": "allowpaymentrequest",
  10449. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10450. "webkitallowfullscreen": "",
  10451. "mozallowfullscreen": "",
  10452. "frameborder": "no",
  10453. "border": "0",
  10454. "scrolling ": "no",
  10455. "style": {
  10456. "cssText": "border:0;width:100%;height:100%"
  10457. },
  10458. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10459. })
  10460. _box.appendChild(_iframe);
  10461. _box.appendChild(_jie);
  10462. _formdiv = new U.UF.UI.form(
  10463. "CocoPi-" + _username,
  10464. _box, {
  10465. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10466. "style": {
  10467. "width": "90%",
  10468. "height": "90%",
  10469. "overflow": 'hidden'
  10470. },
  10471. "onresize": function () { }
  10472. }, {
  10473. closecallback: function () { }
  10474. }, {
  10475. "style": {
  10476. "height": "36px"
  10477. }
  10478. }).form; //創建窗體
  10479. _taskbar = {
  10480. "id": str + _formdiv.id,
  10481. "style": {
  10482. "backgroundImage": "url(/img/icon/cocopi.png)"
  10483. },
  10484. "name": "CocoPi",
  10485. "forms": _formdiv,
  10486. "click": function () {
  10487. U.MD.D.I.openApplication(str, obj, info);
  10488. }
  10489. }
  10490. break;
  10491. }
  10492. if (_iframe) {
  10493. if (str == 'CocoPi') {
  10494. _iframe = _formdiv.querySelector('iframe')
  10495. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10496. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10497. })
  10498. if (onloadListener) {
  10499. _iframe.contentDocument.location.reload()
  10500. } else {
  10501. _iframe.contentDocument.location.reload()
  10502. }
  10503. }
  10504. _jie.onclick = async () => {
  10505. let text = ''
  10506. if (aTool == 57) {
  10507. text = _iframe.contentWindow.getLoadXmlStr()
  10508. }
  10509. _loading.style.display = 'flex'
  10510. console.log(_loading);
  10511. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10512. _loading.style.display = 'none'
  10513. let _div = document.createElement('div')
  10514. _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;"
  10515. let _inner = document.createElement('div')
  10516. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10517. _inner.innerHTML = "上傳成功"
  10518. _div.appendChild(_inner)
  10519. _iframe.contentWindow.window.document.body.appendChild(_div)
  10520. _div.onclick = () => {
  10521. _iframe.contentWindow.window.document.body.removeChild(_div)
  10522. }
  10523. setTimeout(() => {
  10524. _iframe.contentWindow.window.document.body.removeChild(_div)
  10525. }, 1000);
  10526. }, [], { "type": "POST", "withCredentials": true });
  10527. }
  10528. }
  10529. }
  10530. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10531. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10532. if (res.value[0].length > 0) {
  10533. if (atool == 57) {
  10534. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10535. }
  10536. } else {
  10537. if (atool == 57) {
  10538. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10539. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10540. }
  10541. }
  10542. }, [], { "type": "POST", "withCredentials": true });
  10543. }