DeskTop.js 657 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536
  1. /*
  2. 此處為桌面系統啟動應用區域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面應用處理
  5. //判斷圖片是否在拖拽,如果是拖拽圖標的過程是不會打開圖片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教師桌面圖標的全局變量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //極簡模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教師桌面圖標的全局變量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "項目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的項目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "學習資料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  416. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  433. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教師桌面圖標的全局變量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教師桌面圖標的全局變量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龍華中心小學教師桌面圖標的全局變量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院實小教師桌面圖標的全局變量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "評測看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院實小教師桌面圖標的全局變量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小學教師桌面圖標的全局變量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小學學生桌面圖標的全局變量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.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. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //雲海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "項目管理", "Url": "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  864. ];
  865. //dsei
  866. U.MD.D.I.dseiAdminDeskIcon = [
  867. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  868. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  869. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  870. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  871. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  872. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  873. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  874. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  875. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  876. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  877. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  878. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  879. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  880. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  881. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  882. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  883. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  884. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  885. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  886. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  887. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  888. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  889. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  890. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  891. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  892. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  893. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  894. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  895. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  896. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  897. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  898. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  899. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  900. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  901. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  902. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  903. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  904. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  907. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  908. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  909. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  910. ];
  911. //dsei
  912. U.MD.D.I.dseiStudentDeskIcon = [
  913. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  914. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  915. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  916. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  917. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  918. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  919. ];
  920. //未來教育基地
  921. U.MD.D.I.szjkyTeacherDeskIcon = [
  922. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  923. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  924. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  925. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  926. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  927. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  928. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  929. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  930. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  931. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  932. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  933. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  934. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.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. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  939. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  940. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  941. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  942. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  943. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  944. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  945. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  946. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  947. ];
  948. //未來教育基地
  949. U.MD.D.I.szjkyAdminDeskIcon = [
  950. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  951. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  952. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  953. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  954. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  955. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  956. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  957. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  958. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  959. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  960. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  961. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  962. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  963. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  966. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  967. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  968. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  969. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  970. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  971. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  972. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  973. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  974. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  975. ];
  976. //未來教育基地
  977. U.MD.D.I.szjkyStudentDeskIcon = [
  978. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  979. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  980. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  981. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  982. ];
  983. //成華教育局
  984. U.MD.D.I.chjyjTeacherDeskIcon = [
  985. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  986. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  990. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  991. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  992. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  993. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  994. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  995. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  998. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  999. ];
  1000. //成華教育局chjyj
  1001. U.MD.D.I.chjyjAdminDeskIcon = [
  1002. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1003. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1004. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1005. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1006. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1007. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1008. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1009. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1010. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1011. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1012. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1013. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1015. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1016. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1017. ];
  1018. //成華教育局chjyj
  1019. U.MD.D.I.chjyjStudentDeskIcon = [
  1020. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1021. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1022. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1023. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1024. ];
  1025. //tpc
  1026. U.MD.D.I.tpcStudentDeskIcon = [
  1027. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. ];
  1032. //tpc
  1033. U.MD.D.I.tpcTeacherDeskIcon = [
  1034. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1035. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. ];
  1042. //tpc
  1043. U.MD.D.I.tpcAdminDeskIcon = [
  1044. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1045. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1050. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1051. ];
  1052. //THU-IOE
  1053. U.MD.D.I.thuioeTeacherDeskIcon = [
  1054. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1055. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1056. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1057. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1061. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1062. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1063. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1064. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1065. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1066. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1067. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1068. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1069. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1070. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1071. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1072. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1073. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1074. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1075. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1076. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1077. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1078. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1079. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1080. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1081. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1082. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1083. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1084. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1085. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1086. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1088. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1092. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1093. ];
  1094. //THU-IOE
  1095. U.MD.D.I.thuioeStudentDeskIcon = [
  1096. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1097. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1098. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1099. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. ];
  1101. //jccssyl
  1102. U.MD.D.I.jccssylTeacherDeskIcon = [
  1103. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1104. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1106. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1107. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1108. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1109. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1110. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1111. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1112. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1113. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1114. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1115. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1116. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1118. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1119. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1120. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1121. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylStudentDeskIcon = [
  1125. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1126. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1127. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1128. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. ];
  1130. //cale
  1131. U.MD.D.I.caleTeacherDeskIcon = [
  1132. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1133. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1134. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1135. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1136. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1137. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1138. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1139. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1140. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1141. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1142. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1143. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1144. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1145. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1147. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1148. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1149. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1150. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleStudentDeskIcon = [
  1154. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1156. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1157. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1158. ];
  1159. //lqwmsgzs
  1160. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1161. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1162. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1163. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1164. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1165. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1166. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1167. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1168. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1169. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1170. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1171. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1172. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1173. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1174. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1175. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1176. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1177. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1178. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1179. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1180. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1181. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1182. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1183. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1184. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1185. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1186. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1187. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1188. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1189. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1190. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1191. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1192. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1193. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1194. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1195. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1197. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1198. ];
  1199. //lqwmsgzs
  1200. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1201. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1204. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. ];
  1206. //鹽田區幼兒園
  1207. U.MD.D.I.ytyTeacherDeskIcon = [
  1208. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1209. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1214. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1215. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1216. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1217. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1218. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1220. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1221. ];
  1222. //鹽田區幼兒園
  1223. U.MD.D.I.ytyStudentDeskIcon = [
  1224. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1225. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1226. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1227. ];
  1228. //scnuai
  1229. U.MD.D.I.scnuaiTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1233. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1234. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1235. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1236. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1237. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1238. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1239. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1240. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1241. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1242. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1243. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1244. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1245. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1246. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1247. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1248. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1249. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1250. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1251. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1252. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1253. ];
  1254. //scnuai
  1255. U.MD.D.I.scnuaiAdminDeskIcon = [
  1256. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1257. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1258. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1259. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1260. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1261. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1262. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1263. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1264. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1265. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1266. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1267. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1268. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1269. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1270. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1272. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1273. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1274. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1275. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1276. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1277. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1278. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1279. ];
  1280. //scnuai
  1281. U.MD.D.I.scnuaiStudentDeskIcon = [
  1282. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1283. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1284. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1285. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1286. ];
  1287. //cocobiz
  1288. U.MD.D.I.cocobizteacherDeskIcon = [
  1289. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1290. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1291. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1292. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1293. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1294. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1295. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1296. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1297. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1298. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1299. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1300. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1301. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1302. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1303. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1305. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1306. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1307. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1308. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1309. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1310. ];
  1311. //cocobiz
  1312. U.MD.D.I.cocobizStudentDeskIcon = [
  1313. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1315. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1316. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1317. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1319. ];
  1320. //xxzjky
  1321. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1322. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1323. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1324. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1325. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1326. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1327. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1328. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1329. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1330. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1331. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1332. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1333. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1334. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1335. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1336. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1337. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1338. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1339. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1340. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1341. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1342. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1343. ];
  1344. //xxzjky
  1345. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1346. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1348. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1349. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1350. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1351. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1352. ];
  1353. //nsfx
  1354. U.MD.D.I.nsfxTeacherDeskIcon = [
  1355. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1356. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1357. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1358. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1359. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1360. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1361. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1362. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1363. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1364. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1365. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1366. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1367. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1368. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1369. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1370. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1371. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1372. ];
  1373. //nsfx
  1374. U.MD.D.I.nsfxStudentDeskIcon = [
  1375. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1376. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1377. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1378. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1379. ];
  1380. //stia
  1381. U.MD.D.I.stiaTeacherDeskIcon = [
  1382. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1383. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1385. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1386. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1387. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1388. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1389. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1394. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1395. ];
  1396. //stia
  1397. U.MD.D.I.stiaStudentDeskIcon = [
  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. //szdjg
  1404. U.MD.D.I.szdjgTeacherDeskIcon = [
  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. ];
  1408. //szdjg
  1409. U.MD.D.I.szdjgStudentDeskIcon = [
  1410. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //010607
  1416. U.MD.D.I.x010607TeacherDeskIcon = [
  1417. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1420. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1421. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1422. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1424. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1425. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1426. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1428. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1429. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1430. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1431. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1432. ];
  1433. //010607
  1434. U.MD.D.I.x010607StudentDeskIcon = [
  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. //010608
  1441. U.MD.D.I.x010608TeacherDeskIcon = [
  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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1450. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1452. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1453. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1454. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1455. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1456. ];
  1457. //010608
  1458. U.MD.D.I.x010608StudentDeskIcon = [
  1459. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1460. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1461. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1462. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. ];
  1464. //xhly
  1465. U.MD.D.I.xhlyTeacherDeskIcon = [
  1466. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1467. ];
  1468. //010608
  1469. U.MD.D.I.xhlyStudentDeskIcon = [
  1470. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. ];
  1472. //北師大
  1473. U.MD.D.I.BSDNSteacherDeskIcon = [
  1474. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1475. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1476. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1477. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1478. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1479. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1480. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1481. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1482. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1483. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1484. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1485. ];
  1486. //北師大
  1487. U.MD.D.I.BSDNSstudentDeskIcon = [
  1488. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //CUHK_EDU
  1494. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1495. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //CUHK_EDU
  1511. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1512. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1513. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1514. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1515. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503TeacherDeskIcon = [
  1519. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1522. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1523. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1524. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1525. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1527. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1528. ];
  1529. //010503
  1530. U.MD.D.I.x010503StudentDeskIcon = [
  1531. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1535. ];
  1536. //SPROUT Lab
  1537. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1538. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1539. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1541. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1542. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1545. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1546. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1547. ];
  1548. //SPROUT Lab
  1549. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1550. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1551. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. ];
  1554. //010204
  1555. U.MD.D.I.x010204TeacherDeskIcon = [
  1556. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1557. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1558. ];
  1559. //010204
  1560. U.MD.D.I.x010204StudentDeskIcon = [
  1561. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //trail
  1567. U.MD.D.I.trailTeacherDeskIcon = [
  1568. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1569. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. ];
  1571. //trail
  1572. U.MD.D.I.trailStudentDeskIcon = [
  1573. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1574. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1575. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1576. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1577. ];
  1578. //010504
  1579. U.MD.D.I.x010504TeacherDeskIcon = [
  1580. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1581. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1583. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1584. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1585. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1586. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1587. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1588. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1589. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1590. ];
  1591. //010504
  1592. U.MD.D.I.x010504StudentDeskIcon = [
  1593. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. ];
  1598. //SCNUET
  1599. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1600. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1601. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1605. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1606. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1607. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1608. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1609. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1610. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1611. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1612. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1613. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1614. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1615. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1616. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1617. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1618. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1619. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1620. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1622. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1623. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1624. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1625. ];
  1626. //SCNUET
  1627. U.MD.D.I.SCNUETAdminDeskIcon = [
  1628. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1629. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1630. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1631. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1632. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1633. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1634. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1635. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1636. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1637. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1638. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1639. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1640. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1641. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1642. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1643. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1644. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1645. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1646. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1647. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1648. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1649. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1650. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1651. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1652. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1653. ];
  1654. //SCNUET
  1655. U.MD.D.I.SCNUETStudentDeskIcon = [
  1656. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1657. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1658. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1659. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. ];
  1661. //x020201
  1662. U.MD.D.I.x020201TeacherDeskIcon = [
  1663. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1664. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1665. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1666. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1667. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1668. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1669. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1670. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1671. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1673. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1674. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1675. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1676. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1677. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1678. ];
  1679. //x020201
  1680. U.MD.D.I.x020201AdminDeskIcon = [
  1681. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1682. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1683. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1686. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1687. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1688. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1689. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1690. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1691. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1692. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1693. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1694. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1695. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1696. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1697. ];
  1698. //020201
  1699. U.MD.D.I.x020201StudentDeskIcon = [
  1700. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1702. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1703. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1704. ];
  1705. //010611
  1706. U.MD.D.I.x010611TeacherDeskIcon = [
  1707. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1708. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1709. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1710. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1711. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1712. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1713. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1715. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1716. ];
  1717. //010611
  1718. U.MD.D.I.x010611StudentDeskIcon = [
  1719. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1720. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1721. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1722. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. ];
  1724. //tianyuan
  1725. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1726. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1727. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1729. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1730. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1733. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1734. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1735. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1736. ];
  1737. //010611
  1738. U.MD.D.I.tianyuanStudentDeskIcon = [
  1739. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1740. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1741. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1742. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. ];
  1744. //#region 桌面初始化a
  1745. /**
  1746. * 初始化桌面的起始函數
  1747. *
  1748. */
  1749. U.MD.D.I.init = function () {
  1750. if ($("#U_MD_D_K")[0]) {
  1751. //初始化桌面圖標
  1752. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1753. // var clickUrl = ':12588/requestIp.php';
  1754. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1755. // U.MD.D.I.Ip = data;
  1756. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1757. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1758. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1759. // })
  1760. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1761. // })
  1762. }
  1763. }
  1764. /**
  1765. * 模式切換
  1766. *
  1767. */
  1768. U.MD.D.I.ModeCheck = function (type) {
  1769. if (US.Config.type == type) {
  1770. return
  1771. }
  1772. US.Config.type = type
  1773. $('.U_PBL_Check .active')[0].className = ''
  1774. if (type == 1) {
  1775. $('.U_PBL_Check div')[0].className = 'active'
  1776. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1777. } else {
  1778. $('.U_PBL_Check div')[1].className = 'active'
  1779. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1780. }
  1781. //初始化桌面圖標
  1782. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1783. if (type == 2) {
  1784. U.MD.D.I.openApplication("project")
  1785. }
  1786. }
  1787. /**
  1788. * 隱藏任務欄
  1789. *
  1790. * @param {element} 桌面元素
  1791. */
  1792. U.MD.D.I.hiddenTaskbar = function (el) {
  1793. //任務欄位置變小
  1794. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1795. //桌面的位置變大
  1796. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1797. }
  1798. /**
  1799. * 隱藏任務欄
  1800. *
  1801. * @param {element} 桌面元素
  1802. */
  1803. U.MD.D.I.hiddenTaskbarout = function (el) {
  1804. //任務欄位置變小
  1805. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1806. //任務欄位置變化
  1807. U.selectEl(el).css({ "bottom": "-60px" });
  1808. //桌面的位置變大
  1809. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1810. }
  1811. }
  1812. /**
  1813. * 初始化打印桌面圖標
  1814. *
  1815. * @param {element} 桌面元素
  1816. */
  1817. U.MD.D.I.initDesktopIcons = function (el, type) {
  1818. var i, //用於循環
  1819. _content, //桌面圖標元素
  1820. _iconcontent, //桌面圖標元素
  1821. _frag = $$("frag"), //定義一個碎片元素
  1822. _type = US.userInfo.type,
  1823. _org = US.userInfo.org,
  1824. _oid = US.userInfo.organizeid,
  1825. _role = US.userInfo.role,
  1826. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  1827. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  1828. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  1829. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  1830. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  1831. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  1832. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  1833. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1834. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1835. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1836. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  1837. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  1838. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  1839. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  1840. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  1841. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  1842. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  1843. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  1844. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  1845. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  1846. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  1847. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  1848. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  1849. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  1850. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1851. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1852. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  1853. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  1854. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  1855. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  1856. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  1857. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  1858. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1859. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1860. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1861. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1862. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1863. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1864. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1865. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1866. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1867. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  1868. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1869. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1870. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1871. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1872. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  1873. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1874. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1875. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1876. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1877. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1878. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1879. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1880. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1881. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1882. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1883. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  1884. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1885. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1886. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1887. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1888. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1889. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1890. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1891. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1892. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1893. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1894. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1895. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  1896. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  1897. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  1898. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  1899. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1900. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1901. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1902. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1903. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1904. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1905. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1906. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1907. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1908. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1909. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1910. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1911. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1912. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1913. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1914. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1915. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1916. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1917. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1918. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1919. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1920. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1921. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1922. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1923. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1924. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1925. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1926. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1927. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1928. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1929. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1930. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1931. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1932. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1933. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1934. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1935. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1936. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1937. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1938. 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'];
  1939. //清楚桌面圖標
  1940. el.innerHTML = "";
  1941. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1942. _teacherDesktopIconInfo.push(
  1943. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1944. { "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)" } },
  1945. )
  1946. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1947. }
  1948. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1949. _teacherDesktopIconInfo.push(
  1950. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1951. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1952. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1953. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1954. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1955. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1956. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1957. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1958. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1959. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1960. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1961. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1962. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1963. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1964. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1965. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1966. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1967. { "Name": "應用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1968. )
  1969. }
  1970. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  1971. _teacherDesktopIconInfo.push(
  1972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1973. )
  1974. }
  1975. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1976. // _teacherDesktopIconInfo.push(
  1977. // )
  1978. // }
  1979. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1980. _teacherDesktopIconInfo.push(
  1981. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1982. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1983. )
  1984. }
  1985. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1986. _teacherDesktopIconInfo.push(
  1987. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1988. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1989. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1990. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1991. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1992. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1993. )
  1994. _studentDesktopIconInfo.push(
  1995. )
  1996. }
  1997. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1998. _teacherDesktopIconInfo.push(
  1999. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2000. )
  2001. _studentDesktopIconInfo.push(
  2002. )
  2003. }
  2004. //010606 組織
  2005. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2006. _teacherDesktopIconInfo.push(
  2007. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2008. )
  2009. _studentDesktopIconInfo.push(
  2010. )
  2011. }
  2012. //麒麟二中 和 民新小學
  2013. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2014. _teacherDesktopIconInfo.push(
  2015. )
  2016. }
  2017. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2018. _teacherDesktopIconInfo.push(
  2019. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2020. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2021. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2022. )
  2023. }
  2024. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2025. _hkTeacherDeskIconInfo.push(
  2026. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2027. )
  2028. }
  2029. //北師大附中(010601)
  2030. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2031. // _teacherDesktopIconInfo.push(
  2032. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2033. // )
  2034. // _studentDesktopIconInfo.push(
  2035. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2036. // )
  2037. // }
  2038. //樂善堂余近卿中學
  2039. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2040. _teacherDesktopIconInfo.push(
  2041. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2042. )
  2043. }
  2044. // Education Artificial Intelligence
  2045. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2046. _teacherDesktopIconInfo.push(
  2047. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2048. )
  2049. }
  2050. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2053. )
  2054. }
  2055. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2056. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2057. _teacherDesktopIconInfo.push(
  2058. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2059. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2060. )
  2061. }
  2062. //麒麟二中
  2063. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2064. _studentDesktopIconInfo.push(
  2065. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2066. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2067. )
  2068. }
  2069. //萬科雙語
  2070. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2071. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2072. if (el.Name == '項目管理') {
  2073. el.Name = 'PBL項目'
  2074. }
  2075. return el
  2076. })
  2077. _studentDesktopIconInfo3.push(
  2078. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2079. )
  2080. }
  2081. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2082. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2083. return el.Name != '魔盒識字' && el.Name != '24點'
  2084. })
  2085. }
  2086. 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) {
  2087. _studentDesktopIconInfo.push(
  2088. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2089. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2090. )
  2091. }
  2092. //循環創建桌面圖標
  2093. if (type == 1) {
  2094. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2095. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2096. _content = $$("div", {
  2097. className: "U_MD_D_KO",
  2098. "onmousedown": U.UF.C.closure(function (obj) {
  2099. //防止拖動圖標即打開了桌面應用
  2100. U.MD.D.click(this, obj);
  2101. }, [_studentDesktopIconInfo[i]]),
  2102. "onclick": U.UF.C.closure(function (obj) {
  2103. //防止拖動圖標即打開了桌面應用
  2104. U.MD.D.click(this, obj);
  2105. }, [_studentDesktopIconInfo[i]])
  2106. }, _frag); //
  2107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2110. }
  2111. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2112. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2113. _content = $$("div", {
  2114. className: "U_MD_D_KO",
  2115. "onmousedown": U.UF.C.closure(function (obj) {
  2116. //防止拖動圖標即打開了桌面應用
  2117. U.MD.D.click(this, obj);
  2118. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2119. "onclick": U.UF.C.closure(function (obj) {
  2120. //防止拖動圖標即打開了桌面應用
  2121. U.MD.D.click(this, obj);
  2122. }, [_hkZJLSStudentDeskIconInfo[i]])
  2123. }, _frag); //
  2124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2127. } //
  2128. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2129. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2130. _content = $$("div", {
  2131. className: "U_MD_D_KO",
  2132. "onmousedown": U.UF.C.closure(function (obj) {
  2133. //防止拖動圖標即打開了桌面應用
  2134. U.MD.D.click(this, obj);
  2135. }, [_ytyStudentDeskIconInfo[i]]),
  2136. "onclick": U.UF.C.closure(function (obj) {
  2137. //防止拖動圖標即打開了桌面應用
  2138. U.MD.D.click(this, obj);
  2139. }, [_ytyStudentDeskIconInfo[i]])
  2140. }, _frag); //
  2141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2144. } //
  2145. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2146. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2147. _content = $$("div", {
  2148. className: "U_MD_D_KO",
  2149. "onmousedown": U.UF.C.closure(function (obj) {
  2150. //防止拖動圖標即打開了桌面應用
  2151. U.MD.D.click(this, obj);
  2152. }, [_jccssylStudentDeskIconInfo[i]]),
  2153. "onclick": U.UF.C.closure(function (obj) {
  2154. //防止拖動圖標即打開了桌面應用
  2155. U.MD.D.click(this, obj);
  2156. }, [_jccssylStudentDeskIconInfo[i]])
  2157. }, _frag); //
  2158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2161. }
  2162. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2163. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖動圖標即打開了桌面應用
  2168. U.MD.D.click(this, obj);
  2169. }, [_scnuaiStudentDeskIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖動圖標即打開了桌面應用
  2172. U.MD.D.click(this, obj);
  2173. }, [_scnuaiStudentDeskIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2180. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖動圖標即打開了桌面應用
  2185. U.MD.D.click(this, obj);
  2186. }, [_caleStudentDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖動圖標即打開了桌面應用
  2189. U.MD.D.click(this, obj);
  2190. }, [_caleStudentDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2195. }
  2196. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2197. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖動圖標即打開了桌面應用
  2202. U.MD.D.click(this, obj);
  2203. }, [_thuioeStudentDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖動圖標即打開了桌面應用
  2206. U.MD.D.click(this, obj);
  2207. }, [_thuioeStudentDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2214. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2215. _content = $$("div", {
  2216. className: "U_MD_D_KO",
  2217. "onmousedown": U.UF.C.closure(function (obj) {
  2218. //防止拖動圖標即打開了桌面應用
  2219. U.MD.D.click(this, obj);
  2220. }, [_tpcStudentDeskIconInfo[i]]),
  2221. "onclick": U.UF.C.closure(function (obj) {
  2222. //防止拖動圖標即打開了桌面應用
  2223. U.MD.D.click(this, obj);
  2224. }, [_tpcStudentDeskIconInfo[i]])
  2225. }, _frag); //
  2226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2229. } //
  2230. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2231. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖動圖標即打開了桌面應用
  2236. U.MD.D.click(this, obj);
  2237. }, [_chjyjStudentDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖動圖標即打開了桌面應用
  2240. U.MD.D.click(this, obj);
  2241. }, [_chjyjStudentDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2246. }
  2247. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2248. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2249. _content = $$("div", {
  2250. className: "U_MD_D_KO",
  2251. "onmousedown": U.UF.C.closure(function (obj) {
  2252. //防止拖動圖標即打開了桌面應用
  2253. U.MD.D.click(this, obj);
  2254. }, [_szjkyStudentDeskIconInfo[i]]),
  2255. "onclick": U.UF.C.closure(function (obj) {
  2256. //防止拖動圖標即打開了桌面應用
  2257. U.MD.D.click(this, obj);
  2258. }, [_szjkyStudentDeskIconInfo[i]])
  2259. }, _frag); //
  2260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2263. }
  2264. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2265. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖動圖標即打開了桌面應用
  2270. U.MD.D.click(this, obj);
  2271. }, [_x020201StudentDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖動圖標即打開了桌面應用
  2274. U.MD.D.click(this, obj);
  2275. }, [_x020201StudentDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2280. }
  2281. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2282. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖動圖標即打開了桌面應用
  2287. U.MD.D.click(this, obj);
  2288. }, [_SCNUETStudentDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖動圖標即打開了桌面應用
  2291. U.MD.D.click(this, obj);
  2292. }, [_SCNUETStudentDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2297. }
  2298. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2299. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖動圖標即打開了桌面應用
  2304. U.MD.D.click(this, obj);
  2305. }, [_dseiStudentDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖動圖標即打開了桌面應用
  2308. U.MD.D.click(this, obj);
  2309. }, [_dseiStudentDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2314. }
  2315. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2316. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖動圖標即打開了桌面應用
  2321. U.MD.D.click(this, obj);
  2322. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖動圖標即打開了桌面應用
  2325. U.MD.D.click(this, obj);
  2326. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2333. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖動圖標即打開了桌面應用
  2338. U.MD.D.click(this, obj);
  2339. }, [_nsfxStudentDeskIconInfo[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖動圖標即打開了桌面應用
  2342. U.MD.D.click(this, obj);
  2343. }, [_nsfxStudentDeskIconInfo[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2348. }
  2349. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2350. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖動圖標即打開了桌面應用
  2355. U.MD.D.click(this, obj);
  2356. }, [_stiaStudentDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖動圖標即打開了桌面應用
  2359. U.MD.D.click(this, obj);
  2360. }, [_stiaStudentDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2367. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖動圖標即打開了桌面應用
  2372. U.MD.D.click(this, obj);
  2373. }, [_szdjgStudentDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖動圖標即打開了桌面應用
  2376. U.MD.D.click(this, obj);
  2377. }, [_szdjgStudentDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2384. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖動圖標即打開了桌面應用
  2389. U.MD.D.click(this, obj);
  2390. }, [_x010607StudentDeskIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖動圖標即打開了桌面應用
  2393. U.MD.D.click(this, obj);
  2394. }, [_x010607StudentDeskIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2399. }
  2400. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2401. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖動圖標即打開了桌面應用
  2406. U.MD.D.click(this, obj);
  2407. }, [_xhlyStudentDeskIconInfo[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖動圖標即打開了桌面應用
  2410. U.MD.D.click(this, obj);
  2411. }, [_xhlyStudentDeskIconInfo[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2416. }
  2417. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2418. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖動圖標即打開了桌面應用
  2423. U.MD.D.click(this, obj);
  2424. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖動圖標即打開了桌面應用
  2427. U.MD.D.click(this, obj);
  2428. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2433. }
  2434. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2435. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖動圖標即打開了桌面應用
  2440. U.MD.D.click(this, obj);
  2441. }, [_x010503StudentDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖動圖標即打開了桌面應用
  2444. U.MD.D.click(this, obj);
  2445. }, [_x010503StudentDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2450. }
  2451. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2452. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖動圖標即打開了桌面應用
  2457. U.MD.D.click(this, obj);
  2458. }, [_x010504StudentDeskIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖動圖標即打開了桌面應用
  2461. U.MD.D.click(this, obj);
  2462. }, [_x010504StudentDeskIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2469. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖動圖標即打開了桌面應用
  2474. U.MD.D.click(this, obj);
  2475. }, [_x010204StudentDeskIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖動圖標即打開了桌面應用
  2478. U.MD.D.click(this, obj);
  2479. }, [_x010204StudentDeskIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2486. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖動圖標即打開了桌面應用
  2491. U.MD.D.click(this, obj);
  2492. }, [_trailStudentDeskIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖動圖標即打開了桌面應用
  2495. U.MD.D.click(this, obj);
  2496. }, [_trailStudentDeskIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2503. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖動圖標即打開了桌面應用
  2508. U.MD.D.click(this, obj);
  2509. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖動圖標即打開了桌面應用
  2512. U.MD.D.click(this, obj);
  2513. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2520. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖動圖標即打開了桌面應用
  2525. U.MD.D.click(this, obj);
  2526. }, [_x010608StudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖動圖標即打開了桌面應用
  2529. U.MD.D.click(this, obj);
  2530. }, [_x010608StudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2535. }
  2536. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2537. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖動圖標即打開了桌面應用
  2542. U.MD.D.click(this, obj);
  2543. }, [_x010611StudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖動圖標即打開了桌面應用
  2546. U.MD.D.click(this, obj);
  2547. }, [_x010611StudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2554. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖動圖標即打開了桌面應用
  2559. U.MD.D.click(this, obj);
  2560. }, [_tianyuantudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖動圖標即打開了桌面應用
  2563. U.MD.D.click(this, obj);
  2564. }, [_tianyuantudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2571. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖動圖標即打開了桌面應用
  2576. U.MD.D.click(this, obj);
  2577. }, [_siesStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖動圖標即打開了桌面應用
  2580. U.MD.D.click(this, obj);
  2581. }, [_siesStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2588. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖動圖標即打開了桌面應用
  2593. U.MD.D.click(this, obj);
  2594. }, [_guzmsStudentDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖動圖標即打開了桌面應用
  2597. U.MD.D.click(this, obj);
  2598. }, [_guzmsStudentDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2605. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖動圖標即打開了桌面應用
  2610. U.MD.D.click(this, obj);
  2611. }, [_hkStudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖動圖標即打開了桌面應用
  2614. U.MD.D.click(this, obj);
  2615. }, [_hkStudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2620. }
  2621. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2622. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖動圖標即打開了桌面應用
  2627. U.MD.D.click(this, obj);
  2628. }, [_hkaceStudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖動圖標即打開了桌面應用
  2631. U.MD.D.click(this, obj);
  2632. }, [_hkaceStudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2639. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖動圖標即打開了桌面應用
  2644. U.MD.D.click(this, obj);
  2645. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖動圖標即打開了桌面應用
  2648. U.MD.D.click(this, obj);
  2649. }, [_BSDNSstudentDesktopIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2656. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖動圖標即打開了桌面應用
  2661. U.MD.D.click(this, obj);
  2662. }, [_cocobizStudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖動圖標即打開了桌面應用
  2665. U.MD.D.click(this, obj);
  2666. }, [_cocobizStudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2673. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖動圖標即打開了桌面應用
  2678. U.MD.D.click(this, obj);
  2679. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖動圖標即打開了桌面應用
  2682. U.MD.D.click(this, obj);
  2683. }, [_xxzjkyStudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2690. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖動圖標即打開了桌面應用
  2695. U.MD.D.click(this, obj);
  2696. }, [_studentDesktopIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖動圖標即打開了桌面應用
  2699. U.MD.D.click(this, obj);
  2700. }, [_studentDesktopIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2707. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖動圖標即打開了桌面應用
  2712. U.MD.D.click(this, obj);
  2713. }, [_tcStudentDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖動圖標即打開了桌面應用
  2716. U.MD.D.click(this, obj);
  2717. }, [_tcStudentDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2724. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖動圖標即打開了桌面應用
  2729. U.MD.D.click(this, obj);
  2730. }, [_szscStudentDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖動圖標即打開了桌面應用
  2733. U.MD.D.click(this, obj);
  2734. }, [_szscStudentDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2741. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖動圖標即打開了桌面應用
  2746. U.MD.D.click(this, obj);
  2747. }, [_studentDesktopIconInfo3[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖動圖標即打開了桌面應用
  2750. U.MD.D.click(this, obj);
  2751. }, [_studentDesktopIconInfo3[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2756. }
  2757. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2758. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2759. _content = $$("div", {
  2760. className: "U_MD_D_KO",
  2761. "onmousedown": U.UF.C.closure(function (obj) {
  2762. //防止拖動圖標即打開了桌面應用
  2763. U.MD.D.click(this, obj);
  2764. }, [_studentDesktopIconInfo2[i]]),
  2765. "onclick": U.UF.C.closure(function (obj) {
  2766. //防止拖動圖標即打開了桌面應用
  2767. U.MD.D.click(this, obj);
  2768. }, [_studentDesktopIconInfo2[i]])
  2769. }, _frag); //
  2770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2773. }
  2774. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2775. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2776. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2777. continue
  2778. }
  2779. _content = $$("div", {
  2780. className: "U_MD_D_KO",
  2781. "onmousedown": U.UF.C.closure(function (obj) {
  2782. //防止拖動圖標即打開了桌面應用
  2783. U.MD.D.click(this, obj);
  2784. }, [_wanketeacherDesktopIconInfo[i]]),
  2785. "onclick": U.UF.C.closure(function (obj) {
  2786. //防止拖動圖標即打開了桌面應用
  2787. U.MD.D.click(this, obj);
  2788. }, [_wanketeacherDesktopIconInfo[i]])
  2789. }, _frag); //
  2790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2793. }
  2794. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2795. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2796. _content = $$("div", {
  2797. className: "U_MD_D_KO",
  2798. "onmousedown": U.UF.C.closure(function (obj) {
  2799. //防止拖動圖標即打開了桌面應用
  2800. U.MD.D.click(this, obj);
  2801. }, [_wankeAdminDesktopIconInfo[i]]),
  2802. "onclick": U.UF.C.closure(function (obj) {
  2803. //防止拖動圖標即打開了桌面應用
  2804. U.MD.D.click(this, obj);
  2805. }, [_wankeAdminDesktopIconInfo[i]])
  2806. }, _frag); //
  2807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2810. }
  2811. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2812. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2813. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2814. continue
  2815. }
  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. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖動圖標即打開了桌面應用
  2824. U.MD.D.click(this, obj);
  2825. }, [_scnuaiTeacherDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2832. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2833. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2834. continue
  2835. }
  2836. _content = $$("div", {
  2837. className: "U_MD_D_KO",
  2838. "onmousedown": U.UF.C.closure(function (obj) {
  2839. //防止拖動圖標即打開了桌面應用
  2840. U.MD.D.click(this, obj);
  2841. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2842. "onclick": U.UF.C.closure(function (obj) {
  2843. //防止拖動圖標即打開了桌面應用
  2844. U.MD.D.click(this, obj);
  2845. }, [_BSDNSteacherDesktopIconInfo[i]])
  2846. }, _frag); //
  2847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2850. }
  2851. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2852. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2853. _content = $$("div", {
  2854. className: "U_MD_D_KO",
  2855. "onmousedown": U.UF.C.closure(function (obj) {
  2856. //防止拖動圖標即打開了桌面應用
  2857. U.MD.D.click(this, obj);
  2858. }, [_scnuaiAdminDeskIconInfo[i]]),
  2859. "onclick": U.UF.C.closure(function (obj) {
  2860. //防止拖動圖標即打開了桌面應用
  2861. U.MD.D.click(this, obj);
  2862. }, [_scnuaiAdminDeskIconInfo[i]])
  2863. }, _frag); //
  2864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2867. }
  2868. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2869. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2870. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2871. continue
  2872. }
  2873. _content = $$("div", {
  2874. className: "U_MD_D_KO",
  2875. "onmousedown": U.UF.C.closure(function (obj) {
  2876. //防止拖動圖標即打開了桌面應用
  2877. U.MD.D.click(this, obj);
  2878. }, [_jccssylTeacherDeskIconInfo[i]]),
  2879. "onclick": U.UF.C.closure(function (obj) {
  2880. //防止拖動圖標即打開了桌面應用
  2881. U.MD.D.click(this, obj);
  2882. }, [_jccssylTeacherDeskIconInfo[i]])
  2883. }, _frag); //
  2884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2887. }
  2888. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2889. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2890. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2891. continue
  2892. }
  2893. _content = $$("div", {
  2894. className: "U_MD_D_KO",
  2895. "onmousedown": U.UF.C.closure(function (obj) {
  2896. //防止拖動圖標即打開了桌面應用
  2897. U.MD.D.click(this, obj);
  2898. }, [_caleTeacherDeskIconInfo[i]]),
  2899. "onclick": U.UF.C.closure(function (obj) {
  2900. //防止拖動圖標即打開了桌面應用
  2901. U.MD.D.click(this, obj);
  2902. }, [_caleTeacherDeskIconInfo[i]])
  2903. }, _frag); //
  2904. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2905. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2906. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2907. }
  2908. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2909. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2910. _content = $$("div", {
  2911. className: "U_MD_D_KO",
  2912. "onmousedown": U.UF.C.closure(function (obj) {
  2913. //防止拖動圖標即打開了桌面應用
  2914. U.MD.D.click(this, obj);
  2915. }, [_tpcOrganizerDeskIconInfo[i]]),
  2916. "onclick": U.UF.C.closure(function (obj) {
  2917. //防止拖動圖標即打開了桌面應用
  2918. U.MD.D.click(this, obj);
  2919. }, [_tpcOrganizerDeskIconInfo[i]])
  2920. }, _frag); //
  2921. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2922. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2923. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2924. }
  2925. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2926. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2927. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2928. continue
  2929. }
  2930. _content = $$("div", {
  2931. className: "U_MD_D_KO",
  2932. "onmousedown": U.UF.C.closure(function (obj) {
  2933. //防止拖動圖標即打開了桌面應用
  2934. U.MD.D.click(this, obj);
  2935. }, [_tpcTeacherDeskIconInfo[i]]),
  2936. "onclick": U.UF.C.closure(function (obj) {
  2937. //防止拖動圖標即打開了桌面應用
  2938. U.MD.D.click(this, obj);
  2939. }, [_tpcTeacherDeskIconInfo[i]])
  2940. }, _frag); //
  2941. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2942. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2943. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2944. }
  2945. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2946. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2947. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2948. continue
  2949. }
  2950. _content = $$("div", {
  2951. className: "U_MD_D_KO",
  2952. "onmousedown": U.UF.C.closure(function (obj) {
  2953. //防止拖動圖標即打開了桌面應用
  2954. U.MD.D.click(this, obj);
  2955. }, [_teacherDesktopIconInfo2[i]]),
  2956. "onclick": U.UF.C.closure(function (obj) {
  2957. //防止拖動圖標即打開了桌面應用
  2958. U.MD.D.click(this, obj);
  2959. }, [_teacherDesktopIconInfo2[i]])
  2960. }, _frag); //
  2961. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2962. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2963. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2964. }
  2965. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2966. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2967. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2968. continue
  2969. }
  2970. _content = $$("div", {
  2971. className: "U_MD_D_KO",
  2972. "onmousedown": U.UF.C.closure(function (obj) {
  2973. //防止拖動圖標即打開了桌面應用
  2974. U.MD.D.click(this, obj);
  2975. }, [_thuioeTeacherDeskIconInfo[i]]),
  2976. "onclick": U.UF.C.closure(function (obj) {
  2977. //防止拖動圖標即打開了桌面應用
  2978. U.MD.D.click(this, obj);
  2979. }, [_thuioeTeacherDeskIconInfo[i]])
  2980. }, _frag); //
  2981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2984. }
  2985. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2986. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2987. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2988. continue
  2989. }
  2990. _content = $$("div", {
  2991. className: "U_MD_D_KO",
  2992. "onmousedown": U.UF.C.closure(function (obj) {
  2993. //防止拖動圖標即打開了桌面應用
  2994. U.MD.D.click(this, obj);
  2995. }, [_lotechTeacherDeskIconInfo[i]]),
  2996. "onclick": U.UF.C.closure(function (obj) {
  2997. //防止拖動圖標即打開了桌面應用
  2998. U.MD.D.click(this, obj);
  2999. }, [_lotechTeacherDeskIconInfo[i]])
  3000. }, _frag); //
  3001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3004. }//
  3005. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3006. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3007. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3008. continue
  3009. }
  3010. _content = $$("div", {
  3011. className: "U_MD_D_KO",
  3012. "onmousedown": U.UF.C.closure(function (obj) {
  3013. //防止拖動圖標即打開了桌面應用
  3014. U.MD.D.click(this, obj);
  3015. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3016. "onclick": U.UF.C.closure(function (obj) {
  3017. //防止拖動圖標即打開了桌面應用
  3018. U.MD.D.click(this, obj);
  3019. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3020. }, _frag); //
  3021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3024. }
  3025. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3026. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3027. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3028. continue
  3029. }
  3030. _content = $$("div", {
  3031. className: "U_MD_D_KO",
  3032. "onmousedown": U.UF.C.closure(function (obj) {
  3033. //防止拖動圖標即打開了桌面應用
  3034. U.MD.D.click(this, obj);
  3035. }, [_siesTeacherDeskIconInfo[i]]),
  3036. "onclick": U.UF.C.closure(function (obj) {
  3037. //防止拖動圖標即打開了桌面應用
  3038. U.MD.D.click(this, obj);
  3039. }, [_siesTeacherDeskIconInfo[i]])
  3040. }, _frag); //
  3041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3044. }
  3045. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3046. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3047. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3048. continue
  3049. }
  3050. _content = $$("div", {
  3051. className: "U_MD_D_KO",
  3052. "onmousedown": U.UF.C.closure(function (obj) {
  3053. //防止拖動圖標即打開了桌面應用
  3054. U.MD.D.click(this, obj);
  3055. }, [_guzmsTeacherDeskIconInfo[i]]),
  3056. "onclick": U.UF.C.closure(function (obj) {
  3057. //防止拖動圖標即打開了桌面應用
  3058. U.MD.D.click(this, obj);
  3059. }, [_guzmsTeacherDeskIconInfo[i]])
  3060. }, _frag); //
  3061. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3062. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3063. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3064. }
  3065. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3066. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3067. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3068. continue
  3069. }
  3070. _content = $$("div", {
  3071. className: "U_MD_D_KO",
  3072. "onmousedown": U.UF.C.closure(function (obj) {
  3073. //防止拖動圖標即打開了桌面應用
  3074. U.MD.D.click(this, obj);
  3075. }, [_longhuaTeacherDeskIconInfo[i]]),
  3076. "onclick": U.UF.C.closure(function (obj) {
  3077. //防止拖動圖標即打開了桌面應用
  3078. U.MD.D.click(this, obj);
  3079. }, [_longhuaTeacherDeskIconInfo[i]])
  3080. }, _frag); //
  3081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3084. }
  3085. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3086. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3087. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3088. continue
  3089. }
  3090. _content = $$("div", {
  3091. className: "U_MD_D_KO",
  3092. "onmousedown": U.UF.C.closure(function (obj) {
  3093. //防止拖動圖標即打開了桌面應用
  3094. U.MD.D.click(this, obj);
  3095. }, [_ytyTeacherDeskIconInfo[i]]),
  3096. "onclick": U.UF.C.closure(function (obj) {
  3097. //防止拖動圖標即打開了桌面應用
  3098. U.MD.D.click(this, obj);
  3099. }, [_ytyTeacherDeskIconInfo[i]])
  3100. }, _frag); //
  3101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3104. }
  3105. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3106. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3107. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3108. continue
  3109. }
  3110. _content = $$("div", {
  3111. className: "U_MD_D_KO",
  3112. "onmousedown": U.UF.C.closure(function (obj) {
  3113. //防止拖動圖標即打開了桌面應用
  3114. U.MD.D.click(this, obj);
  3115. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3116. "onclick": U.UF.C.closure(function (obj) {
  3117. //防止拖動圖標即打開了桌面應用
  3118. U.MD.D.click(this, obj);
  3119. }, [_yunhaiTeacherDeskIconInfo[i]])
  3120. }, _frag); //
  3121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3124. } //_hkStudentDeskIconInfo
  3125. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3126. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3127. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3128. continue
  3129. }
  3130. _content = $$("div", {
  3131. className: "U_MD_D_KO",
  3132. "onmousedown": U.UF.C.closure(function (obj) {
  3133. //防止拖動圖標即打開了桌面應用
  3134. U.MD.D.click(this, obj);
  3135. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3136. "onclick": U.UF.C.closure(function (obj) {
  3137. //防止拖動圖標即打開了桌面應用
  3138. U.MD.D.click(this, obj);
  3139. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3140. }, _frag); //
  3141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3144. }
  3145. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3146. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3147. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3148. continue
  3149. }
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖動圖標即打開了桌面應用
  3154. U.MD.D.click(this, obj);
  3155. }, [_hkTeacherDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖動圖標即打開了桌面應用
  3158. U.MD.D.click(this, obj);
  3159. }, [_hkTeacherDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3164. }
  3165. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3166. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3167. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3168. continue
  3169. }
  3170. _content = $$("div", {
  3171. className: "U_MD_D_KO",
  3172. "onmousedown": U.UF.C.closure(function (obj) {
  3173. //防止拖動圖標即打開了桌面應用
  3174. U.MD.D.click(this, obj);
  3175. }, [_hkaceTeacherDeskIconInfo[i]]),
  3176. "onclick": U.UF.C.closure(function (obj) {
  3177. //防止拖動圖標即打開了桌面應用
  3178. U.MD.D.click(this, obj);
  3179. }, [_hkaceTeacherDeskIconInfo[i]])
  3180. }, _frag); //
  3181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3184. }
  3185. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3186. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3187. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3188. continue
  3189. }
  3190. _content = $$("div", {
  3191. className: "U_MD_D_KO",
  3192. "onmousedown": U.UF.C.closure(function (obj) {
  3193. //防止拖動圖標即打開了桌面應用
  3194. U.MD.D.click(this, obj);
  3195. }, [_cocobizTeacherDeskIconInfo[i]]),
  3196. "onclick": U.UF.C.closure(function (obj) {
  3197. //防止拖動圖標即打開了桌面應用
  3198. U.MD.D.click(this, obj);
  3199. }, [_cocobizTeacherDeskIconInfo[i]])
  3200. }, _frag); //
  3201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3204. }
  3205. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3206. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3207. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3208. continue
  3209. }
  3210. _content = $$("div", {
  3211. className: "U_MD_D_KO",
  3212. "onmousedown": U.UF.C.closure(function (obj) {
  3213. //防止拖動圖標即打開了桌面應用
  3214. U.MD.D.click(this, obj);
  3215. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3216. "onclick": U.UF.C.closure(function (obj) {
  3217. //防止拖動圖標即打開了桌面應用
  3218. U.MD.D.click(this, obj);
  3219. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3220. }, _frag); //
  3221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3224. }
  3225. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3226. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖動圖標即打開了桌面應用
  3231. U.MD.D.click(this, obj);
  3232. }, [_gdjgAdminDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖動圖標即打開了桌面應用
  3235. U.MD.D.click(this, obj);
  3236. }, [_gdjgAdminDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3241. }
  3242. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3243. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3244. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3245. continue
  3246. }
  3247. _content = $$("div", {
  3248. className: "U_MD_D_KO",
  3249. "onmousedown": U.UF.C.closure(function (obj) {
  3250. //防止拖動圖標即打開了桌面應用
  3251. U.MD.D.click(this, obj);
  3252. }, [_gdjgTeacherDeskIconInfo[i]]),
  3253. "onclick": U.UF.C.closure(function (obj) {
  3254. //防止拖動圖標即打開了桌面應用
  3255. U.MD.D.click(this, obj);
  3256. }, [_gdjgTeacherDeskIconInfo[i]])
  3257. }, _frag); //
  3258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3261. }
  3262. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3263. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3264. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3265. continue
  3266. }
  3267. _content = $$("div", {
  3268. className: "U_MD_D_KO",
  3269. "onmousedown": U.UF.C.closure(function (obj) {
  3270. //防止拖動圖標即打開了桌面應用
  3271. U.MD.D.click(this, obj);
  3272. }, [_szherTeacherDeskIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖動圖標即打開了桌面應用
  3275. U.MD.D.click(this, obj);
  3276. }, [_szherTeacherDeskIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3283. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3284. _content = $$("div", {
  3285. className: "U_MD_D_KO",
  3286. "onmousedown": U.UF.C.closure(function (obj) {
  3287. //防止拖動圖標即打開了桌面應用
  3288. U.MD.D.click(this, obj);
  3289. }, [_heyuannAdminDeskIconInfo[i]]),
  3290. "onclick": U.UF.C.closure(function (obj) {
  3291. //防止拖動圖標即打開了桌面應用
  3292. U.MD.D.click(this, obj);
  3293. }, [_heyuannAdminDeskIconInfo[i]])
  3294. }, _frag); //
  3295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3298. }
  3299. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3300. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3301. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3302. continue
  3303. }
  3304. _content = $$("div", {
  3305. className: "U_MD_D_KO",
  3306. "onmousedown": U.UF.C.closure(function (obj) {
  3307. //防止拖動圖標即打開了桌面應用
  3308. U.MD.D.click(this, obj);
  3309. }, [_heyuanTeacherDeskIconInfo[i]]),
  3310. "onclick": U.UF.C.closure(function (obj) {
  3311. //防止拖動圖標即打開了桌面應用
  3312. U.MD.D.click(this, obj);
  3313. }, [_heyuanTeacherDeskIconInfo[i]])
  3314. }, _frag); //
  3315. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3316. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3317. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3318. } //
  3319. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3320. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3321. _content = $$("div", {
  3322. className: "U_MD_D_KO",
  3323. "onmousedown": U.UF.C.closure(function (obj) {
  3324. //防止拖動圖標即打開了桌面應用
  3325. U.MD.D.click(this, obj);
  3326. }, [_dseiAdminDeskIconInfo[i]]),
  3327. "onclick": U.UF.C.closure(function (obj) {
  3328. //防止拖動圖標即打開了桌面應用
  3329. U.MD.D.click(this, obj);
  3330. }, [_dseiAdminDeskIconInfo[i]])
  3331. }, _frag); //
  3332. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3333. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3334. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3335. }
  3336. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3337. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3338. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3339. continue
  3340. }
  3341. _content = $$("div", {
  3342. className: "U_MD_D_KO",
  3343. "onmousedown": U.UF.C.closure(function (obj) {
  3344. //防止拖動圖標即打開了桌面應用
  3345. U.MD.D.click(this, obj);
  3346. }, [_dseiTeacherDeskIconInfo[i]]),
  3347. "onclick": U.UF.C.closure(function (obj) {
  3348. //防止拖動圖標即打開了桌面應用
  3349. U.MD.D.click(this, obj);
  3350. }, [_dseiTeacherDeskIconInfo[i]])
  3351. }, _frag); //
  3352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3355. } //
  3356. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3357. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3358. _content = $$("div", {
  3359. className: "U_MD_D_KO",
  3360. "onmousedown": U.UF.C.closure(function (obj) {
  3361. //防止拖動圖標即打開了桌面應用
  3362. U.MD.D.click(this, obj);
  3363. }, [_chjyjAdminDeskIconInfo[i]]),
  3364. "onclick": U.UF.C.closure(function (obj) {
  3365. //防止拖動圖標即打開了桌面應用
  3366. U.MD.D.click(this, obj);
  3367. }, [_chjyjAdminDeskIconInfo[i]])
  3368. }, _frag); //
  3369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3372. }//
  3373. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3374. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3375. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3376. continue
  3377. }
  3378. _content = $$("div", {
  3379. className: "U_MD_D_KO",
  3380. "onmousedown": U.UF.C.closure(function (obj) {
  3381. //防止拖動圖標即打開了桌面應用
  3382. U.MD.D.click(this, obj);
  3383. }, [_chjyjTeacherDeskIconInfo[i]]),
  3384. "onclick": U.UF.C.closure(function (obj) {
  3385. //防止拖動圖標即打開了桌面應用
  3386. U.MD.D.click(this, obj);
  3387. }, [_chjyjTeacherDeskIconInfo[i]])
  3388. }, _frag); //
  3389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3392. }
  3393. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3394. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3395. _content = $$("div", {
  3396. className: "U_MD_D_KO",
  3397. "onmousedown": U.UF.C.closure(function (obj) {
  3398. //防止拖動圖標即打開了桌面應用
  3399. U.MD.D.click(this, obj);
  3400. }, [_szjkyAdminDeskIconInfo[i]]),
  3401. "onclick": U.UF.C.closure(function (obj) {
  3402. //防止拖動圖標即打開了桌面應用
  3403. U.MD.D.click(this, obj);
  3404. }, [_szjkyAdminDeskIconInfo[i]])
  3405. }, _frag); //
  3406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3409. }//
  3410. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3411. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3412. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3413. continue
  3414. }
  3415. _content = $$("div", {
  3416. className: "U_MD_D_KO",
  3417. "onmousedown": U.UF.C.closure(function (obj) {
  3418. //防止拖動圖標即打開了桌面應用
  3419. U.MD.D.click(this, obj);
  3420. }, [_szjkyTeacherDeskIconInfo[i]]),
  3421. "onclick": U.UF.C.closure(function (obj) {
  3422. //防止拖動圖標即打開了桌面應用
  3423. U.MD.D.click(this, obj);
  3424. }, [_szjkyTeacherDeskIconInfo[i]])
  3425. }, _frag); //
  3426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3429. }
  3430. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3431. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3432. _content = $$("div", {
  3433. className: "U_MD_D_KO",
  3434. "onmousedown": U.UF.C.closure(function (obj) {
  3435. //防止拖動圖標即打開了桌面應用
  3436. U.MD.D.click(this, obj);
  3437. }, [_x020201AdminDeskIconInfo[i]]),
  3438. "onclick": U.UF.C.closure(function (obj) {
  3439. //防止拖動圖標即打開了桌面應用
  3440. U.MD.D.click(this, obj);
  3441. }, [_x020201AdminDeskIconInfo[i]])
  3442. }, _frag); //
  3443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3446. }//
  3447. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3448. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3449. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3450. continue
  3451. }
  3452. _content = $$("div", {
  3453. className: "U_MD_D_KO",
  3454. "onmousedown": U.UF.C.closure(function (obj) {
  3455. //防止拖動圖標即打開了桌面應用
  3456. U.MD.D.click(this, obj);
  3457. }, [_x020201TeacherDeskIconInfo[i]]),
  3458. "onclick": U.UF.C.closure(function (obj) {
  3459. //防止拖動圖標即打開了桌面應用
  3460. U.MD.D.click(this, obj);
  3461. }, [_x020201TeacherDeskIconInfo[i]])
  3462. }, _frag); //
  3463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3466. }
  3467. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3468. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖動圖標即打開了桌面應用
  3473. U.MD.D.click(this, obj);
  3474. }, [_SCNUETAdminDeskIconInfo[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖動圖標即打開了桌面應用
  3477. U.MD.D.click(this, obj);
  3478. }, [_SCNUETAdminDeskIconInfo[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3483. }//
  3484. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3485. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3486. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖動圖標即打開了桌面應用
  3493. U.MD.D.click(this, obj);
  3494. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖動圖標即打開了桌面應用
  3497. U.MD.D.click(this, obj);
  3498. }, [_SCNUETTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3505. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3506. _content = $$("div", {
  3507. className: "U_MD_D_KO",
  3508. "onmousedown": U.UF.C.closure(function (obj) {
  3509. //防止拖動圖標即打開了桌面應用
  3510. U.MD.D.click(this, obj);
  3511. }, [_futianAdminDeskIconInfo[i]]),
  3512. "onclick": U.UF.C.closure(function (obj) {
  3513. //防止拖動圖標即打開了桌面應用
  3514. U.MD.D.click(this, obj);
  3515. }, [_futianAdminDeskIconInfo[i]])
  3516. }, _frag); //
  3517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3520. }
  3521. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3522. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3523. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3524. continue
  3525. }
  3526. _content = $$("div", {
  3527. className: "U_MD_D_KO",
  3528. "onmousedown": U.UF.C.closure(function (obj) {
  3529. //防止拖動圖標即打開了桌面應用
  3530. U.MD.D.click(this, obj);
  3531. }, [_futianTeacherDeskIconInfo[i]]),
  3532. "onclick": U.UF.C.closure(function (obj) {
  3533. //防止拖動圖標即打開了桌面應用
  3534. U.MD.D.click(this, obj);
  3535. }, [_futianTeacherDeskIconInfo[i]])
  3536. }, _frag); //
  3537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3540. }
  3541. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3542. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3543. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3544. continue
  3545. }
  3546. _content = $$("div", {
  3547. className: "U_MD_D_KO",
  3548. "onmousedown": U.UF.C.closure(function (obj) {
  3549. //防止拖動圖標即打開了桌面應用
  3550. U.MD.D.click(this, obj);
  3551. }, [_MingdeTeacherDeskIcon[i]]),
  3552. "onclick": U.UF.C.closure(function (obj) {
  3553. //防止拖動圖標即打開了桌面應用
  3554. U.MD.D.click(this, obj);
  3555. }, [_MingdeTeacherDeskIcon[i]])
  3556. }, _frag); //
  3557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3560. }
  3561. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3562. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3563. _content = $$("div", {
  3564. className: "U_MD_D_KO",
  3565. "onmousedown": U.UF.C.closure(function (obj) {
  3566. //防止拖動圖標即打開了桌面應用
  3567. U.MD.D.click(this, obj);
  3568. }, [_lhsAdminDesktopIconInfo[i]]),
  3569. "onclick": U.UF.C.closure(function (obj) {
  3570. //防止拖動圖標即打開了桌面應用
  3571. U.MD.D.click(this, obj);
  3572. }, [_lhsAdminDesktopIconInfo[i]])
  3573. }, _frag); //
  3574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3577. }
  3578. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3579. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3580. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3581. continue
  3582. }
  3583. _content = $$("div", {
  3584. className: "U_MD_D_KO",
  3585. "onmousedown": U.UF.C.closure(function (obj) {
  3586. //防止拖動圖標即打開了桌面應用
  3587. U.MD.D.click(this, obj);
  3588. }, [_lhsteacherDesktopIconInfo[i]]),
  3589. "onclick": U.UF.C.closure(function (obj) {
  3590. //防止拖動圖標即打開了桌面應用
  3591. U.MD.D.click(this, obj);
  3592. }, [_lhsteacherDesktopIconInfo[i]])
  3593. }, _frag); //
  3594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3597. }
  3598. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3599. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3600. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3601. continue
  3602. }
  3603. _content = $$("div", {
  3604. className: "U_MD_D_KO",
  3605. "onmousedown": U.UF.C.closure(function (obj) {
  3606. //防止拖動圖標即打開了桌面應用
  3607. U.MD.D.click(this, obj);
  3608. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3609. "onclick": U.UF.C.closure(function (obj) {
  3610. //防止拖動圖標即打開了桌面應用
  3611. U.MD.D.click(this, obj);
  3612. }, [_zhoujiateacherDesktopIconInfo[i]])
  3613. }, _frag); //
  3614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3617. }
  3618. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3619. for (i = 0; i < _hanDeskIcon.length; i++) {
  3620. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3621. continue
  3622. }
  3623. _content = $$("div", {
  3624. className: "U_MD_D_KO",
  3625. "onmousedown": U.UF.C.closure(function (obj) {
  3626. //防止拖動圖標即打開了桌面應用
  3627. U.MD.D.click(this, obj);
  3628. }, [_hanDeskIcon[i]]),
  3629. "onclick": U.UF.C.closure(function (obj) {
  3630. //防止拖動圖標即打開了桌面應用
  3631. U.MD.D.click(this, obj);
  3632. }, [_hanDeskIcon[i]])
  3633. }, _frag); //
  3634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3637. }
  3638. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3639. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3640. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3641. continue
  3642. }
  3643. _content = $$("div", {
  3644. className: "U_MD_D_KO",
  3645. "onmousedown": U.UF.C.closure(function (obj) {
  3646. //防止拖動圖標即打開了桌面應用
  3647. U.MD.D.click(this, obj);
  3648. }, [_orgStemDeskIcon[i]]),
  3649. "onclick": U.UF.C.closure(function (obj) {
  3650. //防止拖動圖標即打開了桌面應用
  3651. U.MD.D.click(this, obj);
  3652. }, [_orgStemDeskIcon[i]])
  3653. }, _frag); //
  3654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3657. }
  3658. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3659. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3660. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3661. continue
  3662. }
  3663. _content = $$("div", {
  3664. className: "U_MD_D_KO",
  3665. "onmousedown": U.UF.C.closure(function (obj) {
  3666. //防止拖動圖標即打開了桌面應用
  3667. U.MD.D.click(this, obj);
  3668. }, [_szulsDeskIcon[i]]),
  3669. "onclick": U.UF.C.closure(function (obj) {
  3670. //防止拖動圖標即打開了桌面應用
  3671. U.MD.D.click(this, obj);
  3672. }, [_szulsDeskIcon[i]])
  3673. }, _frag); //
  3674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3677. }
  3678. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3679. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3680. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3681. continue
  3682. }
  3683. _content = $$("div", {
  3684. className: "U_MD_D_KO",
  3685. "onmousedown": U.UF.C.closure(function (obj) {
  3686. //防止拖動圖標即打開了桌面應用
  3687. U.MD.D.click(this, obj);
  3688. }, [_orgDesktopIconInfo[i]]),
  3689. "onclick": U.UF.C.closure(function (obj) {
  3690. //防止拖動圖標即打開了桌面應用
  3691. U.MD.D.click(this, obj);
  3692. }, [_orgDesktopIconInfo[i]])
  3693. }, _frag); //
  3694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3697. }
  3698. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3699. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3700. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3701. continue
  3702. }
  3703. _content = $$("div", {
  3704. className: "U_MD_D_KO",
  3705. "onmousedown": U.UF.C.closure(function (obj) {
  3706. //防止拖動圖標即打開了桌面應用
  3707. U.MD.D.click(this, obj);
  3708. }, [_schoolDesktopIconInfo[i]]),
  3709. "onclick": U.UF.C.closure(function (obj) {
  3710. //防止拖動圖標即打開了桌面應用
  3711. U.MD.D.click(this, obj);
  3712. }, [_schoolDesktopIconInfo[i]])
  3713. }, _frag); //
  3714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3717. }
  3718. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3719. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3720. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3721. continue
  3722. }
  3723. _content = $$("div", {
  3724. className: "U_MD_D_KO",
  3725. "onmousedown": U.UF.C.closure(function (obj) {
  3726. //防止拖動圖標即打開了桌面應用
  3727. U.MD.D.click(this, obj);
  3728. }, [_GMteacherDesktopIconInfo[i]]),
  3729. "onclick": U.UF.C.closure(function (obj) {
  3730. //防止拖動圖標即打開了桌面應用
  3731. U.MD.D.click(this, obj);
  3732. }, [_GMteacherDesktopIconInfo[i]])
  3733. }, _frag); //
  3734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3737. }
  3738. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3739. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3740. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3741. continue
  3742. }
  3743. _content = $$("div", {
  3744. className: "U_MD_D_KO",
  3745. "onmousedown": U.UF.C.closure(function (obj) {
  3746. //防止拖動圖標即打開了桌面應用
  3747. U.MD.D.click(this, obj);
  3748. }, [_SONGteacherDesktopIconInfo[i]]),
  3749. "onclick": U.UF.C.closure(function (obj) {
  3750. //防止拖動圖標即打開了桌面應用
  3751. U.MD.D.click(this, obj);
  3752. }, [_SONGteacherDesktopIconInfo[i]])
  3753. }, _frag); //
  3754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3757. }
  3758. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3759. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3760. _content = $$("div", {
  3761. className: "U_MD_D_KO",
  3762. "onmousedown": U.UF.C.closure(function (obj) {
  3763. //防止拖動圖標即打開了桌面應用
  3764. U.MD.D.click(this, obj);
  3765. }, [_GMstudentDesktopIconInfo[i]]),
  3766. "onclick": U.UF.C.closure(function (obj) {
  3767. //防止拖動圖標即打開了桌面應用
  3768. U.MD.D.click(this, obj);
  3769. }, [_GMstudentDesktopIconInfo[i]])
  3770. }, _frag); //
  3771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3774. }
  3775. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3776. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3777. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3778. continue
  3779. }
  3780. _content = $$("div", {
  3781. className: "U_MD_D_KO",
  3782. "onmousedown": U.UF.C.closure(function (obj) {
  3783. //防止拖動圖標即打開了桌面應用
  3784. U.MD.D.click(this, obj);
  3785. }, [_tcTeacherDeskIconInfo[i]]),
  3786. "onclick": U.UF.C.closure(function (obj) {
  3787. //防止拖動圖標即打開了桌面應用
  3788. U.MD.D.click(this, obj);
  3789. }, [_tcTeacherDeskIconInfo[i]])
  3790. }, _frag); //
  3791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3794. }
  3795. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3796. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3797. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3798. continue
  3799. }
  3800. _content = $$("div", {
  3801. className: "U_MD_D_KO",
  3802. "onmousedown": U.UF.C.closure(function (obj) {
  3803. //防止拖動圖標即打開了桌面應用
  3804. U.MD.D.click(this, obj);
  3805. }, [_tcOrganizerDeskIconInfo[i]]),
  3806. "onclick": U.UF.C.closure(function (obj) {
  3807. //防止拖動圖標即打開了桌面應用
  3808. U.MD.D.click(this, obj);
  3809. }, [_tcOrganizerDeskIconInfo[i]])
  3810. }, _frag); //
  3811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3814. }
  3815. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3816. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3817. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3818. continue
  3819. }
  3820. _content = $$("div", {
  3821. className: "U_MD_D_KO",
  3822. "onmousedown": U.UF.C.closure(function (obj) {
  3823. //防止拖動圖標即打開了桌面應用
  3824. U.MD.D.click(this, obj);
  3825. }, [_szscTeacherDeskIconInfo[i]]),
  3826. "onclick": U.UF.C.closure(function (obj) {
  3827. //防止拖動圖標即打開了桌面應用
  3828. U.MD.D.click(this, obj);
  3829. }, [_szscTeacherDeskIconInfo[i]])
  3830. }, _frag); //
  3831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3834. }
  3835. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3836. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3837. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3838. continue
  3839. }
  3840. _content = $$("div", {
  3841. className: "U_MD_D_KO",
  3842. "onmousedown": U.UF.C.closure(function (obj) {
  3843. //防止拖動圖標即打開了桌面應用
  3844. U.MD.D.click(this, obj);
  3845. }, [_szscOrganizerDeskIconInfo[i]]),
  3846. "onclick": U.UF.C.closure(function (obj) {
  3847. //防止拖動圖標即打開了桌面應用
  3848. U.MD.D.click(this, obj);
  3849. }, [_szscOrganizerDeskIconInfo[i]])
  3850. }, _frag); //
  3851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3854. }
  3855. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3856. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3857. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3858. continue
  3859. }
  3860. _content = $$("div", {
  3861. className: "U_MD_D_KO",
  3862. "onmousedown": U.UF.C.closure(function (obj) {
  3863. //防止拖動圖標即打開了桌面應用
  3864. U.MD.D.click(this, obj);
  3865. }, [_nsfxTeacherDeskIconInfo[i]]),
  3866. "onclick": U.UF.C.closure(function (obj) {
  3867. //防止拖動圖標即打開了桌面應用
  3868. U.MD.D.click(this, obj);
  3869. }, [_nsfxTeacherDeskIconInfo[i]])
  3870. }, _frag); //
  3871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3874. }
  3875. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3876. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3877. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3878. continue
  3879. }
  3880. _content = $$("div", {
  3881. className: "U_MD_D_KO",
  3882. "onmousedown": U.UF.C.closure(function (obj) {
  3883. //防止拖動圖標即打開了桌面應用
  3884. U.MD.D.click(this, obj);
  3885. }, [_stiaTeacherDeskIconInfo[i]]),
  3886. "onclick": U.UF.C.closure(function (obj) {
  3887. //防止拖動圖標即打開了桌面應用
  3888. U.MD.D.click(this, obj);
  3889. }, [_stiaTeacherDeskIconInfo[i]])
  3890. }, _frag); //
  3891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3894. }
  3895. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3896. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3897. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3898. continue
  3899. }
  3900. _content = $$("div", {
  3901. className: "U_MD_D_KO",
  3902. "onmousedown": U.UF.C.closure(function (obj) {
  3903. //防止拖動圖標即打開了桌面應用
  3904. U.MD.D.click(this, obj);
  3905. }, [_szdjgTeacherDeskIconInfo[i]]),
  3906. "onclick": U.UF.C.closure(function (obj) {
  3907. //防止拖動圖標即打開了桌面應用
  3908. U.MD.D.click(this, obj);
  3909. }, [_szdjgTeacherDeskIconInfo[i]])
  3910. }, _frag); //
  3911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3914. }
  3915. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3916. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3917. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3918. continue
  3919. }
  3920. _content = $$("div", {
  3921. className: "U_MD_D_KO",
  3922. "onmousedown": U.UF.C.closure(function (obj) {
  3923. //防止拖動圖標即打開了桌面應用
  3924. U.MD.D.click(this, obj);
  3925. }, [_x010607TeacherDeskIconInfo[i]]),
  3926. "onclick": U.UF.C.closure(function (obj) {
  3927. //防止拖動圖標即打開了桌面應用
  3928. U.MD.D.click(this, obj);
  3929. }, [_x010607TeacherDeskIconInfo[i]])
  3930. }, _frag); //
  3931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3934. }
  3935. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3936. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3937. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3938. continue
  3939. }
  3940. _content = $$("div", {
  3941. className: "U_MD_D_KO",
  3942. "onmousedown": U.UF.C.closure(function (obj) {
  3943. //防止拖動圖標即打開了桌面應用
  3944. U.MD.D.click(this, obj);
  3945. }, [_xhlyTeacherDeskIconInfo[i]]),
  3946. "onclick": U.UF.C.closure(function (obj) {
  3947. //防止拖動圖標即打開了桌面應用
  3948. U.MD.D.click(this, obj);
  3949. }, [_xhlyTeacherDeskIconInfo[i]])
  3950. }, _frag); //
  3951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3954. }
  3955. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3956. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3957. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3958. continue
  3959. }
  3960. _content = $$("div", {
  3961. className: "U_MD_D_KO",
  3962. "onmousedown": U.UF.C.closure(function (obj) {
  3963. //防止拖動圖標即打開了桌面應用
  3964. U.MD.D.click(this, obj);
  3965. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3966. "onclick": U.UF.C.closure(function (obj) {
  3967. //防止拖動圖標即打開了桌面應用
  3968. U.MD.D.click(this, obj);
  3969. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3970. }, _frag); //
  3971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3974. }
  3975. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3976. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3977. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3978. continue
  3979. }
  3980. _content = $$("div", {
  3981. className: "U_MD_D_KO",
  3982. "onmousedown": U.UF.C.closure(function (obj) {
  3983. //防止拖動圖標即打開了桌面應用
  3984. U.MD.D.click(this, obj);
  3985. }, [_x010503TeacherDeskIconInfo[i]]),
  3986. "onclick": U.UF.C.closure(function (obj) {
  3987. //防止拖動圖標即打開了桌面應用
  3988. U.MD.D.click(this, obj);
  3989. }, [_x010503TeacherDeskIconInfo[i]])
  3990. }, _frag); //
  3991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3994. }
  3995. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3996. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3997. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3998. continue
  3999. }
  4000. _content = $$("div", {
  4001. className: "U_MD_D_KO",
  4002. "onmousedown": U.UF.C.closure(function (obj) {
  4003. //防止拖動圖標即打開了桌面應用
  4004. U.MD.D.click(this, obj);
  4005. }, [_x010504TeacherDeskIconInfo[i]]),
  4006. "onclick": U.UF.C.closure(function (obj) {
  4007. //防止拖動圖標即打開了桌面應用
  4008. U.MD.D.click(this, obj);
  4009. }, [_x010504TeacherDeskIconInfo[i]])
  4010. }, _frag); //
  4011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4014. }
  4015. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4016. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4017. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4018. continue
  4019. }
  4020. _content = $$("div", {
  4021. className: "U_MD_D_KO",
  4022. "onmousedown": U.UF.C.closure(function (obj) {
  4023. //防止拖動圖標即打開了桌面應用
  4024. U.MD.D.click(this, obj);
  4025. }, [_x010204TeacherDeskIconInfo[i]]),
  4026. "onclick": U.UF.C.closure(function (obj) {
  4027. //防止拖動圖標即打開了桌面應用
  4028. U.MD.D.click(this, obj);
  4029. }, [_x010204TeacherDeskIconInfo[i]])
  4030. }, _frag); //
  4031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4034. }
  4035. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4036. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4037. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4038. continue
  4039. }
  4040. _content = $$("div", {
  4041. className: "U_MD_D_KO",
  4042. "onmousedown": U.UF.C.closure(function (obj) {
  4043. //防止拖動圖標即打開了桌面應用
  4044. U.MD.D.click(this, obj);
  4045. }, [_trailTeacherDeskIconInfo[i]]),
  4046. "onclick": U.UF.C.closure(function (obj) {
  4047. //防止拖動圖標即打開了桌面應用
  4048. U.MD.D.click(this, obj);
  4049. }, [_trailTeacherDeskIconInfo[i]])
  4050. }, _frag); //
  4051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4054. }
  4055. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4056. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4057. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4058. continue
  4059. }
  4060. _content = $$("div", {
  4061. className: "U_MD_D_KO",
  4062. "onmousedown": U.UF.C.closure(function (obj) {
  4063. //防止拖動圖標即打開了桌面應用
  4064. U.MD.D.click(this, obj);
  4065. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4066. "onclick": U.UF.C.closure(function (obj) {
  4067. //防止拖動圖標即打開了桌面應用
  4068. U.MD.D.click(this, obj);
  4069. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4070. }, _frag); //
  4071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4074. }
  4075. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4076. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4077. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4078. continue
  4079. }
  4080. _content = $$("div", {
  4081. className: "U_MD_D_KO",
  4082. "onmousedown": U.UF.C.closure(function (obj) {
  4083. //防止拖動圖標即打開了桌面應用
  4084. U.MD.D.click(this, obj);
  4085. }, [_x010608TeacherDeskIconInfo[i]]),
  4086. "onclick": U.UF.C.closure(function (obj) {
  4087. //防止拖動圖標即打開了桌面應用
  4088. U.MD.D.click(this, obj);
  4089. }, [_x010608TeacherDeskIconInfo[i]])
  4090. }, _frag); //
  4091. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4092. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4093. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4094. }
  4095. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4096. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4097. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4098. continue
  4099. }
  4100. _content = $$("div", {
  4101. className: "U_MD_D_KO",
  4102. "onmousedown": U.UF.C.closure(function (obj) {
  4103. //防止拖動圖標即打開了桌面應用
  4104. U.MD.D.click(this, obj);
  4105. }, [_x010611TeacherDeskIconInfo[i]]),
  4106. "onclick": U.UF.C.closure(function (obj) {
  4107. //防止拖動圖標即打開了桌面應用
  4108. U.MD.D.click(this, obj);
  4109. }, [_x010611TeacherDeskIconInfo[i]])
  4110. }, _frag); //
  4111. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4112. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4113. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4114. }
  4115. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4116. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4117. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4118. continue
  4119. }
  4120. _content = $$("div", {
  4121. className: "U_MD_D_KO",
  4122. "onmousedown": U.UF.C.closure(function (obj) {
  4123. //防止拖動圖標即打開了桌面應用
  4124. U.MD.D.click(this, obj);
  4125. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4126. "onclick": U.UF.C.closure(function (obj) {
  4127. //防止拖動圖標即打開了桌面應用
  4128. U.MD.D.click(this, obj);
  4129. }, [_tianyuanTeacherDeskIconInfo[i]])
  4130. }, _frag); //
  4131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4134. }
  4135. } else {
  4136. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4137. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4138. continue
  4139. }
  4140. _content = $$("div", {
  4141. className: "U_MD_D_KO",
  4142. "onmousedown": U.UF.C.closure(function (obj) {
  4143. //防止拖動圖標即打開了桌面應用
  4144. U.MD.D.click(this, obj);
  4145. }, [_teacherDesktopIconInfo[i]]),
  4146. "onclick": U.UF.C.closure(function (obj) {
  4147. //防止拖動圖標即打開了桌面應用
  4148. U.MD.D.click(this, obj);
  4149. }, [_teacherDesktopIconInfo[i]])
  4150. }, _frag); //
  4151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4154. }
  4155. }
  4156. } else {
  4157. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. style: { 'width': '124px', 'height': '145px' },
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖動圖標即打開了桌面應用
  4163. U.MD.D.click(this, obj);
  4164. }, [_easyDesktopIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖動圖標即打開了桌面應用
  4167. U.MD.D.click(this, obj);
  4168. }, [_easyDesktopIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4173. }
  4174. }
  4175. if (type == 1) {
  4176. //加載好後給圖標定位
  4177. U.MD.D.iconPostion($(_frag).Child());
  4178. } else {
  4179. //加載好後給圖標定位
  4180. U.MD.D.iconPostion2($(_frag).Child());
  4181. }
  4182. //把圖標加載到頁面
  4183. el.appendChild(_frag);
  4184. }
  4185. /**
  4186. * 顯示任務欄
  4187. *
  4188. * @param {element} 桌面元素
  4189. */
  4190. U.MD.D.I.displayTaskbar = function (el) {
  4191. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4192. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4193. //任務欄位置變化
  4194. U.selectEl(el).css({ "bottom": "0px" });
  4195. //桌面位置變話
  4196. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4197. }
  4198. }
  4199. //#region 桌面圖標拖動邏輯
  4200. /**
  4201. * 桌面排列圖標
  4202. *
  4203. * @param {element} 桌面元素
  4204. * @param {object} 上下相距的距離
  4205. * @param {object} 左右相距的距離
  4206. * @return {object} 命名空間
  4207. */
  4208. U.MD.D.iconPostion = function (childs, top, left) {
  4209. var i; //用於循環處理
  4210. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4211. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4212. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4213. for (i = 0; i < childs.length; i++) {
  4214. //如果豎排top超過了範圍處理
  4215. if (top + 95 > US.height - 10) {
  4216. //left超過了頁面範圍處理,則向上重疊打印處理
  4217. if ((left + 180) > US.width) {
  4218. top -= 110;
  4219. left -= 90;
  4220. }
  4221. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4222. else {
  4223. left += 90;
  4224. top = 15;
  4225. };
  4226. }
  4227. //給圖標的位置賦值
  4228. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4229. if (i < childs.length - 1) {
  4230. //頁面圖標每次向下加95
  4231. top += 95;
  4232. }
  4233. }
  4234. //返回最後調用的圖標的位置
  4235. return [top, left];
  4236. }
  4237. /**
  4238. * 桌面排列圖標
  4239. *
  4240. * @param {element} 桌面元素
  4241. * @param {object} 上下相距的距離
  4242. * @param {object} 左右相距的距離
  4243. * @return {object} 命名空間
  4244. */
  4245. U.MD.D.iconPostion2 = function (childs, top, left) {
  4246. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4247. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4248. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4249. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4250. for (i = 0; i < childs.length; i++) {
  4251. //如果豎排top超過了範圍處理
  4252. if (left + 150 > US.width - 10) {
  4253. //left超過了頁面範圍處理,則向上重疊打印處理
  4254. if ((top + 180) > US.Height) {
  4255. top -= 150;
  4256. left -= 150;
  4257. }
  4258. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4259. else {
  4260. top += 150;
  4261. left = ol;
  4262. };
  4263. }
  4264. //給圖標的位置賦值
  4265. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4266. if (i < childs.length - 1) {
  4267. //頁面圖標每次向下加95
  4268. left += 150;
  4269. }
  4270. }
  4271. //返回最後調用的圖標的位置
  4272. return [top, left];
  4273. }
  4274. /**
  4275. * 桌面點擊事件邏輯
  4276. *
  4277. * @param {element} 桌面元素
  4278. * @param {object} 上下相距的距離
  4279. * @param {object} 左右相距的距離
  4280. * @return {object} 命名空間
  4281. */
  4282. U.MD.D.click = function (el, obj) {
  4283. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4284. var _userinfo = US.userInfo;
  4285. U.UF.EV.stopBubble(); //阻止向上冒泡
  4286. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4287. if (_buttonnumber < 2) {
  4288. //如果是click事件的處理
  4289. if (event.type == "click") {
  4290. //如果元素在mousemove事件中沒有移動則出發click事件
  4291. if (!U.MD.D.I.IsDrag) {
  4292. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4293. U.alert("請先登錄您的賬號!");
  4294. setTimeout(() => {
  4295. U.MD.U.L.login();
  4296. }, 2000);
  4297. } else {
  4298. //打開應用處理
  4299. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4300. }
  4301. }
  4302. }
  4303. //如果是mouse事件的處理
  4304. else {
  4305. if (US.Config.type == '1') {
  4306. //拖動處理,添加拖動和拖動結束事件
  4307. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4308. }
  4309. }
  4310. U.MD.D.I.IsDrag = false;
  4311. }
  4312. }
  4313. /**
  4314. * 拖動的處理
  4315. *
  4316. */
  4317. U.MD.D.iconMove = function () {
  4318. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4319. U.MD.D.I.IsDrag = true;
  4320. }
  4321. /**
  4322. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4323. *
  4324. * @param {element} 拖動的元素
  4325. * @return {object} 命名空間
  4326. */
  4327. U.MD.D.iconUp = function (el) {
  4328. var _top = 15,
  4329. _left = 20,
  4330. _margin,
  4331. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4332. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4333. if (_positioninfo["OT"] > 15) {
  4334. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4335. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4336. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4337. }
  4338. if (_positioninfo["OL"] > 20) {
  4339. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4340. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4341. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4342. }
  4343. //while循環判斷麼一個重疊的元素
  4344. do {
  4345. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4346. _top = _positioninfo[0] + 95; //得到定位後的top
  4347. _left = _positioninfo[1]; //得到定位後的left
  4348. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4349. }
  4350. /**
  4351. * 判斷拖動後圖標是否重疊
  4352. *
  4353. * @param {element} 拖動的元素
  4354. * @param {element} 桌面所有的元素
  4355. * @param {array} 拖動元素的位置
  4356. ----------[0] 上 top
  4357. ----------[1] 左 left
  4358. * @return {object} 命名空間
  4359. */
  4360. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4361. //循環所有的圖標
  4362. for (var i = 0; i < childs.length; i++) {
  4363. //判斷有沒有和該圖標誒子重疊的元素
  4364. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4365. return childs[i]; //如果有返回
  4366. }
  4367. }
  4368. }
  4369. //#endregion
  4370. //#endregion
  4371. //#region 桌面應用
  4372. /**
  4373. * 打開應用
  4374. *
  4375. * @param {string} 類型
  4376. -----------------Disk 網盤系統
  4377. -----------------PDisk 學習系統網盤
  4378. -----------------Poto 圖片
  4379. -----------------Video 視頻
  4380. -----------------Music 音樂
  4381. -----------------Word word
  4382. -----------------Excel excel
  4383. -----------------Txt 記事本
  4384. -----------------PB 學習系統
  4385. -----------------Blog 朋友圈系統
  4386. -----------------FTP ftp系統
  4387. -----------------Group 好友群
  4388. -----------------SY 首頁系統
  4389. -----------------Set 個人設置
  4390. -----------------XSet 系統設置
  4391. -----------------App 我們所有的app
  4392. -----------------BC c.1473.cn 平臺
  4393. -----------------CWeb d.1473.cn 變成平臺
  4394. -----------------其他的外聯系統 我們統一用iframe打開
  4395. * @param {array} 類型
  4396. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4397. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4398. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4399. 如果第一個參數為其他,則無第二個參數
  4400. * @returns {array}
  4401. */
  4402. window.addEventListener('message', function (e) { // 監聽 message 事件
  4403. // alert(e.data.type);
  4404. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4405. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4406. //3是展示全部階段 2學生 1老師 4專家
  4407. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4408. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4409. //3是展示全部階段 2學生 1老師 4專家
  4410. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4411. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4412. //3是展示全部階段 2學生 1老師 4專家
  4413. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4414. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4415. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4416. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4417. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4418. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4419. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4420. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4421. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4422. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4423. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4424. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4425. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4426. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4427. //3是展示全部階段 2學生 1老師 4專家
  4428. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4429. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4430. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4431. U.MD.D.I.selectUser();
  4432. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4433. var _formel = document.getElementById("study");
  4434. U.UF.F.windowZooming(_formel);
  4435. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4436. var _formel = document.getElementById("studyDetail");
  4437. U.UF.F.windowZooming(_formel);
  4438. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4439. var _formel = document.getElementById("studyDetail");
  4440. U.UF.F.windowZooming(_formel);
  4441. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4442. var _formel = document.getElementById("studentStudy");
  4443. U.UF.F.windowZooming(_formel);
  4444. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4445. // var _formel = document.getElementById("study");
  4446. //如果最大化了,那麼就把他縮小
  4447. // if (_formel.ismaximize) {
  4448. // return;
  4449. // }
  4450. // U.UF.F.windowZooming(_formel);
  4451. // U.UF.F.topWindow(_formel);
  4452. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4453. // var _formel = document.getElementById("studyDetail");
  4454. //如果最大化了,那麼就把他縮小
  4455. // if (_formel.ismaximize) {
  4456. // return;
  4457. // }
  4458. // U.UF.F.windowZooming(_formel);
  4459. // U.UF.F.topWindow(_formel);
  4460. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4461. // var _formel = document.getElementById("studentStudy");
  4462. // if (_formel.ismaximize) {
  4463. // return;
  4464. // }
  4465. // U.UF.F.windowZooming(_formel);
  4466. // U.UF.F.topWindow(_formel);
  4467. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4468. var _formel = document.getElementById("study");
  4469. // if (_formel.ismaximize) {
  4470. // return;
  4471. // }
  4472. // U.UF.F.windowZooming(_formel);
  4473. U.UF.F.topWindow(_formel);
  4474. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4475. var _formel = document.getElementById("studentIndex");
  4476. U.UF.F.windowZooming(_formel);
  4477. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4478. var _formel = document.getElementById("studyDetailS");
  4479. U.UF.F.windowZooming(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4481. var _formel = document.getElementById("studioIndex");
  4482. U.UF.F.windowZooming(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4484. var _formel = document.getElementById("studyDetailStudio");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4487. var _formel = document.getElementById("studyDetailStudio");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4490. var _formel = document.getElementById("studyDetailNT");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4493. var _formel = document.getElementById("studyDetailS");
  4494. U.UF.F.windowZooming(_formel);
  4495. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4496. var _formel = document.getElementById("studyDetailS");
  4497. U.UF.F.topWindow(_formel);
  4498. } else if (e.data.tools && e.data.tools == "1") {
  4499. // U.MD.D.I.openApplication("whiteboard")
  4500. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4501. } else if (e.data.tools && e.data.tools == "2") {
  4502. U.MD.D.I.openApplication("note")
  4503. } else if (e.data.tools && e.data.tools == "3") {
  4504. // U.MD.D.I.openApplication("mind")
  4505. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4506. } else if (e.data.tools && e.data.tools == "4") {
  4507. U.MD.D.I.openApplication("investigation")
  4508. } else if (e.data.tools && e.data.tools == "6") {
  4509. // U.MD.D.I.openApplication("doc")
  4510. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4511. } else if (e.data.tools && e.data.tools == "7") {
  4512. // U.MD.D.I.openApplication("mindNetwork")
  4513. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4514. } else if (e.data.tools && e.data.tools == "8") {
  4515. U.MD.D.I.openApplication("library")
  4516. } else if (e.data.tools && e.data.tools == "17") {
  4517. U.MD.D.I.openApplication("stuLibrary")
  4518. } else if (e.data.tools && e.data.tools == "18") {
  4519. U.MD.D.I.openApplication("train")
  4520. } else if (e.data.tools && e.data.tools == "21") {
  4521. U.MD.D.I.openApplication("program")
  4522. } else if (e.data.tools && e.data.tools == "22") {
  4523. U.MD.D.I.openApplication("AIprogram2")
  4524. } else if (e.data.tools && e.data.tools == "23") {
  4525. U.MD.D.I.openApplication("Pythonprogram")
  4526. } else if (e.data.tools && e.data.tools == "24") {
  4527. U.MD.D.I.openApplication("AIprogram")
  4528. } else if (e.data.tools && e.data.tools == "25") {
  4529. U.MD.D.I.openApplication("sys")
  4530. } else if (e.data.tools && e.data.tools == "26") {
  4531. // U.MD.D.I.openApplication("courseDesign")
  4532. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4533. } else if (e.data.tools && e.data.tools == "31") {
  4534. U.MD.D.I.openApplication("netWorkPanel")
  4535. } else if (e.data.tools && e.data.tools == "32") {
  4536. U.MD.D.I.openApplication("codeEdit")
  4537. } else if (e.data.tools && e.data.tools == "57") {
  4538. U.MD.D.I.openApplication("CocoPi")
  4539. } else if (e.data.tools && e.data.tools == "63") {
  4540. U.MD.D.I.openApplication("Wood")
  4541. } else if (e.data.tools && e.data.tools == "58") {
  4542. U.MD.D.I.openApplication("car")
  4543. } else if (e.data.tools && e.data.tools == "59") {
  4544. U.MD.D.I.openApplication("lineSearch")
  4545. } else if (e.data.tools && e.data.tools == "60") {
  4546. U.MD.D.I.openApplication("deepLearning")
  4547. } else if (e.data.tools && e.data.tools == "61") {
  4548. U.MD.D.I.openApplication("allHistory")
  4549. } else if (e.data.tools && e.data.tools == "28") {
  4550. U.MD.D.I.openApplication("translation")
  4551. } else if (e.data.tools && e.data.tools == "37") {
  4552. U.MD.D.I.openApplication("mohe")
  4553. } else if (e.data.tools && e.data.tools == "38") {
  4554. U.MD.D.I.openApplication("24game")
  4555. } else if (e.data.tools && e.data.tools == "39") {
  4556. U.MD.D.I.openApplication("GeoGebra")
  4557. } else if (e.data.tools && e.data.tools == "43") {
  4558. U.MD.D.I.openApplication("studentEvaluate")
  4559. } else if (e.data.tools && e.data.tools == "44") {
  4560. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4561. } else if (e.data.tools && e.data.tools == "46") {
  4562. U.MD.D.I.openApplication("project")
  4563. } else if (e.data.tools && e.data.tools == "71") {
  4564. U.MD.D.I.openApplication("aigptCourse")
  4565. } else if (e.data.tools && e.data.tools == "1s") {
  4566. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4567. } else if (e.data.tools && e.data.tools == "3s") {
  4568. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4569. } else if (e.data.tools && e.data.tools == "6s") {
  4570. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4571. } else if (e.data.tools && e.data.tools == "1studio") {
  4572. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4573. } else if (e.data.tools && e.data.tools == "3studio") {
  4574. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4575. } else if (e.data.tools && e.data.tools == "6studio") {
  4576. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4577. } else if (e.data.tools && e.data.tools == "3y") {
  4578. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4579. } else if (e.data.tools && e.data.tools == "1y") {
  4580. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4581. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4582. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4583. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4584. U.MD.D.I.openApplication("AIAnalyse")
  4585. } else if (e.data.tools && e.data.tools == "1teacher") {
  4586. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4587. } else if (e.data.tools && e.data.tools == "3teacher") {
  4588. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4589. } else if (e.data.tools && e.data.tools == "7teacher") {
  4590. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4591. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4592. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4593. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4594. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4595. } else if (e.data.tools && e.data.tools == "1E") {
  4596. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4597. } else if (e.data.tools && e.data.tools == "3E") {
  4598. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4599. } else if (e.data.tools && e.data.tools == "57y") {
  4600. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4601. } else if (e.data.tools && e.data.tools == "57u") {
  4602. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4603. } else if (e.data.tools && e.data.tools == "57teacher") {
  4604. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4605. } else if (e.data.tools && e.data.tools == "64") {
  4606. U.MD.D.I.openApplication("AIChat")
  4607. } else if (e.data.tools && e.data.tools == "66") {
  4608. U.MD.D.I.openApplication("formulaEdi")
  4609. } else if (e.data.tools && e.data.tools == "67") {
  4610. U.MD.D.I.openApplication("molStr")
  4611. } else if (e.data.tools && e.data.tools == "68") {
  4612. U.MD.D.I.openApplication("timeAxis")
  4613. } else if (e.data.tools && e.data.tools == "openCourse") {
  4614. let _data = {
  4615. typea: e.data.typea || '',
  4616. typeb: e.data.typeb || '',
  4617. typed: e.data.typed || '',
  4618. }
  4619. U.MD.D.I.openInApplication("index", _data)
  4620. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4621. let _data = {
  4622. classid: e.data.classid || '',
  4623. }
  4624. U.MD.D.I.openInApplication("dataClass", _data)
  4625. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4626. let _data = {
  4627. cid: e.data.cid || '',
  4628. gid: e.data.gid || '',
  4629. }
  4630. U.MD.D.I.openInApplication("opencCscl", _data)
  4631. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4632. U.MD.D.I.openApplication("dataBoardTest")
  4633. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4634. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4635. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4636. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4637. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4638. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4639. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4640. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4641. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4642. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4643. }else if (e.data.tools && e.data.tools == "loginSz") {
  4644. U.MD.D.I.openInApplication("loginSz")
  4645. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4646. if($('#classroom_observation_board')[0]){
  4647. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4648. }
  4649. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4650. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4651. if($('#classroom_observation_ob_comment')[0]){
  4652. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4653. }
  4654. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4655. }
  4656. });
  4657. U.MD.D.I.selectUser = function () {
  4658. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4659. if (res.value[0].length > 0) {
  4660. US.userInfo = res.value[0][0];
  4661. $(".userName")[0].innerHTML = US.userInfo.username;
  4662. }
  4663. }, [], { "type": "GET", "withCredentials": true });
  4664. }
  4665. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4666. var _userinfo = US.userInfo, //登錄用戶信息
  4667. _userid = US.userInfo.userid, //登錄用戶id
  4668. _oid = _userinfo.organizeid,
  4669. _type = US.userInfo.type,
  4670. _org = US.userInfo.org,
  4671. _role = US.userInfo.role,
  4672. _classId = US.userInfo.classid;
  4673. if (_type == 4) {
  4674. tType = 4
  4675. }
  4676. switch (str) {
  4677. case "studyDetailNT": //無終端模式
  4678. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4679. setTimeout(() => {
  4680. U.MD.U.L.login();
  4681. }, 2000);
  4682. } else {
  4683. _formdiv = new U.UF.UI.form(
  4684. "課程詳情",
  4685. $$("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 }), {
  4686. "id": "studyDetailNT",
  4687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4688. "onresize": function () { }
  4689. }, {
  4690. closecallback: function () { }
  4691. }, { "style": { "height": "36px" } }).form; //創建窗體
  4692. _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); } }
  4693. break;
  4694. }
  4695. case "studyDetail":
  4696. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4697. setTimeout(() => {
  4698. U.MD.U.L.login();
  4699. }, 2000);
  4700. } else {
  4701. _formdiv = new U.UF.UI.form(
  4702. "課程詳情",
  4703. $$("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 }), {
  4704. "id": "studyDetail",
  4705. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4706. "onresize": function () { }
  4707. }, {
  4708. closecallback: function () { }
  4709. }, { "style": { "height": "36px" } }).form; //創建窗體
  4710. _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); } }
  4711. break;
  4712. }
  4713. case "studyDetailTrain":
  4714. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4715. setTimeout(() => {
  4716. U.MD.U.L.login();
  4717. }, 2000);
  4718. } else {
  4719. _formdiv = new U.UF.UI.form(
  4720. "培訓詳情",
  4721. $$("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 }), {
  4722. "id": "studyDetailTrain",
  4723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4724. "onresize": function () { }
  4725. }, {
  4726. closecallback: function () { }
  4727. }, { "style": { "height": "36px" } }).form; //創建窗體
  4728. _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); } }
  4729. break;
  4730. }
  4731. case "studyDetailS":
  4732. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4733. setTimeout(() => {
  4734. U.MD.U.L.login();
  4735. }, 2000);
  4736. } else {
  4737. _formdiv = new U.UF.UI.form(
  4738. "項目詳情",
  4739. $$("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 }), {
  4740. "id": "studyDetailS",
  4741. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4742. "onresize": function () { }
  4743. }, {
  4744. closecallback: function () { }
  4745. }, { "style": { "height": "36px" } }).form; //創建窗體
  4746. _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); } }
  4747. break;
  4748. }
  4749. case "studyDetailStudio":
  4750. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4751. setTimeout(() => {
  4752. U.MD.U.L.login();
  4753. }, 2000);
  4754. } else {
  4755. _formdiv = new U.UF.UI.form(
  4756. "工作詳情",
  4757. $$("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 }), {
  4758. "id": "studyDetailStudio",
  4759. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4760. "onresize": function () { }
  4761. }, {
  4762. closecallback: function () { }
  4763. }, { "style": { "height": "36px" } }).form; //創建窗體
  4764. _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); } }
  4765. break;
  4766. }
  4767. case "studyDetailS5":
  4768. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4769. setTimeout(() => {
  4770. U.MD.U.L.login();
  4771. }, 2000);
  4772. } else {
  4773. _formdiv = new U.UF.UI.form(
  4774. "項目詳情",
  4775. $$("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 }), {
  4776. "id": "studyDetailS",
  4777. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4778. "onresize": function () { }
  4779. }, {
  4780. closecallback: function () { }
  4781. }, { "style": { "height": "36px" } }).form; //創建窗體
  4782. _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); } }
  4783. break;
  4784. }
  4785. case "studyDetailGM":
  4786. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4787. setTimeout(() => {
  4788. U.MD.U.L.login();
  4789. }, 2000);
  4790. } else {
  4791. _formdiv = new U.UF.UI.form(
  4792. "課程詳情",
  4793. $$("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 }), {
  4794. "id": "studyDetail",
  4795. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4796. "onresize": function () { }
  4797. }, {
  4798. closecallback: function () { }
  4799. }, { "style": { "height": "36px" } }).form; //創建窗體
  4800. _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); } }
  4801. break;
  4802. }
  4803. case "hanUrl":
  4804. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4805. setTimeout(() => {
  4806. U.MD.U.L.login();
  4807. }, 2000);
  4808. } else {
  4809. _formdiv = new U.UF.UI.form(
  4810. "漢字宮",
  4811. $$("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" }), {
  4812. "id": "hanUrl",
  4813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4814. "onresize": function () { }
  4815. }, {
  4816. closecallback: function () { }
  4817. }, { "style": { "height": "36px" } }).form; //創建窗體
  4818. _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); } }
  4819. break;
  4820. }
  4821. case "index":
  4822. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4823. setTimeout(() => {
  4824. U.MD.U.L.login();
  4825. }, 2000);
  4826. } else {
  4827. _formdiv = new U.UF.UI.form(
  4828. "課程中心",
  4829. $$("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 }), {
  4830. "id": "study",
  4831. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4832. "onresize": function () { }
  4833. }, {
  4834. closecallback: function () { }
  4835. }, { "style": { "height": "36px" } }).form; //創建窗體
  4836. _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); } }
  4837. break;
  4838. }
  4839. case "dataClass":
  4840. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4841. setTimeout(() => {
  4842. U.MD.U.L.login();
  4843. }, 2000);
  4844. } else {
  4845. _formdiv = new U.UF.UI.form(
  4846. "數據報告",
  4847. $$("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 }), {
  4848. "id": "dataClass",
  4849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //創建窗體
  4854. _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); } }
  4855. break;
  4856. }
  4857. case "opencCscl":
  4858. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4859. setTimeout(() => {
  4860. U.MD.U.L.login();
  4861. }, 2000);
  4862. } else {
  4863. _formdiv = new U.UF.UI.form(
  4864. "協同建構",
  4865. $$("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 }), {
  4866. "id": "futureClass",
  4867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4868. "onresize": function () { }
  4869. }, {
  4870. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4871. }, { "style": { "height": "36px" } }).form; //創建窗體
  4872. _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); } }
  4873. break;
  4874. }
  4875. case "openCourseUpdate":
  4876. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4877. setTimeout(() => {
  4878. U.MD.U.L.login();
  4879. }, 2000);
  4880. } else {
  4881. _formdiv = new U.UF.UI.form(
  4882. "課程管理",
  4883. $$("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 }), {
  4884. "id": "openCourseUpdate",
  4885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4886. "onresize": function () { }
  4887. }, {
  4888. closecallback: function () { }
  4889. }, { "style": { "height": "36px" } }).form; //創建窗體
  4890. break;
  4891. }
  4892. case "openNewCourseUpdate":
  4893. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4894. setTimeout(() => {
  4895. U.MD.U.L.login();
  4896. }, 2000);
  4897. } else {
  4898. _formdiv = new U.UF.UI.form(
  4899. "課程管理",
  4900. $$("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 }), {
  4901. "id": "openCourseUpdate",
  4902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4903. "onresize": function () { }
  4904. }, {
  4905. closecallback: function () { }
  4906. }, { "style": { "height": "36px" } }).form; //創建窗體
  4907. break;
  4908. }
  4909. case "openCourseEUpdate":
  4910. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4911. setTimeout(() => {
  4912. U.MD.U.L.login();
  4913. }, 2000);
  4914. } else {
  4915. _formdiv = new U.UF.UI.form(
  4916. "課程管理",
  4917. $$("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 }), {
  4918. "id": "openCourseUpdate",
  4919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4920. "onresize": function () { }
  4921. }, {
  4922. closecallback: function () { }
  4923. }, { "style": { "height": "36px" } }).form; //創建窗體
  4924. break;
  4925. }
  4926. case "openCourseAiUpdate":
  4927. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4928. setTimeout(() => {
  4929. U.MD.U.L.login();
  4930. }, 2000);
  4931. } else {
  4932. _formdiv = new U.UF.UI.form(
  4933. "課程管理",
  4934. $$("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 }), {
  4935. "id": "openCourseUpdate",
  4936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4937. "onresize": function () { }
  4938. }, {
  4939. closecallback: function () { }
  4940. }, { "style": { "height": "36px" } }).form; //創建窗體
  4941. break;
  4942. }
  4943. case "openCourseNewUpdate":
  4944. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4945. setTimeout(() => {
  4946. U.MD.U.L.login();
  4947. }, 2000);
  4948. } else {
  4949. _formdiv = new U.UF.UI.form(
  4950. "課程管理",
  4951. $$("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 }), {
  4952. "id": "openCourseUpdate",
  4953. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4954. "onresize": function () { }
  4955. }, {
  4956. closecallback: function () { }
  4957. }, { "style": { "height": "36px" } }).form; //創建窗體
  4958. break;
  4959. }
  4960. case "inviteLoginSz":
  4961. _formdiv = new U.UF.UI.form(
  4962. "隨機碼登錄",
  4963. $$("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 }), {
  4964. "id": "loginSz",
  4965. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4966. "onresize": function () { }
  4967. }, {
  4968. closecallback: function () { }
  4969. }, { "style": { "height": "36px" } }).form; //創建窗體
  4970. break;
  4971. case "loginSz":
  4972. _formdiv = new U.UF.UI.form(
  4973. "教師登錄",
  4974. $$("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" }), {
  4975. "id": "loginSz",
  4976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4977. "onresize": function () { }
  4978. }, {
  4979. closecallback: function () { }
  4980. }, { "style": { "height": "36px" } }).form; //創建窗體
  4981. break;
  4982. case "teacher":
  4983. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4984. setTimeout(() => {
  4985. U.MD.U.L.login();
  4986. }, 2000);
  4987. } else {
  4988. _formdiv = new U.UF.UI.form(
  4989. "教師管理",
  4990. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4991. "id": "teacher",
  4992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //創建窗體
  4997. break;
  4998. }
  4999. case "dataBoardSZArea":
  5000. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5001. setTimeout(() => {
  5002. U.MD.U.L.login();
  5003. }, 2000);
  5004. } else {
  5005. _formdiv = new U.UF.UI.form(
  5006. "綜合數據看板",
  5007. $$("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 }), {
  5008. "id": "dataBoardSZArea",
  5009. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5010. "onresize": function () { }
  5011. }, {
  5012. closecallback: function () { }
  5013. }, { "style": { "height": "36px" } }).form; //創建窗體
  5014. break;
  5015. }
  5016. case "dataBoardSZCity":
  5017. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5018. setTimeout(() => {
  5019. U.MD.U.L.login();
  5020. }, 2000);
  5021. } else {
  5022. _formdiv = new U.UF.UI.form(
  5023. "綜合數據看板",
  5024. $$("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 }), {
  5025. "id": "dataBoardSZCity",
  5026. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5027. "onresize": function () { }
  5028. }, {
  5029. closecallback: function () { }
  5030. }, { "style": { "height": "36px" } }).form; //創建窗體
  5031. break;
  5032. }
  5033. case "classroom_observation_board":
  5034. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5035. setTimeout(() => {
  5036. U.MD.U.L.login();
  5037. }, 2000);
  5038. } else {
  5039. _formdiv = new U.UF.UI.form(
  5040. "課堂觀察",
  5041. $$("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 }), {
  5042. "id": "classroom_observation_board",
  5043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //創建窗體
  5048. break;
  5049. }
  5050. case "classroom_observation_ob_comment":
  5051. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5052. setTimeout(() => {
  5053. U.MD.U.L.login();
  5054. }, 2000);
  5055. } else {
  5056. _formdiv = new U.UF.UI.form(
  5057. "課堂審核",
  5058. $$("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 }), {
  5059. "id": "classroom_observation_ob_comment",
  5060. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5061. "onresize": function () { }
  5062. }, {
  5063. closecallback: function () { }
  5064. }, { "style": { "height": "36px" } }).form; //創建窗體
  5065. break;
  5066. }
  5067. }
  5068. }
  5069. U.MD.D.I.openApplication = function (str, obj, info) {
  5070. obj = obj || {};
  5071. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5072. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5073. _userinfo = US.userInfo, //登錄用戶信息
  5074. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5075. _oid = obj.organizeid || _userinfo.organizeid,
  5076. _type = US.userInfo.type,
  5077. _org = US.userInfo.org,
  5078. _role = US.userInfo.role,
  5079. _classId = US.userInfo.classid,
  5080. _TscreenType = 1
  5081. _screenType = 2,
  5082. _SscreenType = 3;
  5083. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5084. return;
  5085. }
  5086. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5087. switch (str) {
  5088. case "studnetProject": //好友打開
  5089. _formdiv = new U.UF.UI.form(
  5090. "我的項目",
  5091. $$("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 }), {
  5092. "id": "studnetProject",
  5093. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5094. "onresize": function () { }
  5095. }, {
  5096. closecallback: function () { }
  5097. }, { "style": { "height": "36px" } }).form; //創建窗體
  5098. _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); } }
  5099. break;
  5100. case "studentEvaluate": //好友打開
  5101. _formdiv = new U.UF.UI.form(
  5102. "我的評價",
  5103. $$("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 }), {
  5104. "id": "studentEvaluate",
  5105. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5106. "onresize": function () { }
  5107. }, {
  5108. closecallback: function () { }
  5109. }, { "style": { "height": "36px" } }).form; //創建窗體
  5110. _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); } }
  5111. break;
  5112. case "my":
  5113. _formdiv = new U.UF.UI.form(
  5114. "我的資料",
  5115. $$("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 }), {
  5116. "id": "my",
  5117. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5118. "onresize": function () { }
  5119. }, {
  5120. closecallback: function () { }
  5121. }, { "style": { "height": "36px" } }).form; //創建窗體
  5122. _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); } }
  5123. break;
  5124. case "program":
  5125. _formdiv = new U.UF.UI.form(
  5126. "編程平臺",
  5127. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5128. "id": "program",
  5129. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5130. "onresize": function () { }
  5131. }, {
  5132. closecallback: function () { }
  5133. }, { "style": { "height": "36px" } }).form; //創建窗體
  5134. _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); } }
  5135. break;
  5136. case "library":
  5137. _formdiv = new U.UF.UI.form(
  5138. "素材庫",
  5139. $$("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 }), {
  5140. "id": "library",
  5141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5142. "onresize": function () { }
  5143. }, {
  5144. closecallback: function () { }
  5145. }, { "style": { "height": "36px" } }).form; //創建窗體
  5146. _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); } }
  5147. break;
  5148. case "whiteboard":
  5149. _formdiv = new U.UF.UI.form(
  5150. "電子白板",
  5151. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5152. "id": "whiteboard",
  5153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5154. "onresize": function () { }
  5155. }, {
  5156. closecallback: function () { }
  5157. }, { "style": { "height": "36px" } }).form; //創建窗體
  5158. _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); } }
  5159. break;
  5160. case "investigation":
  5161. _formdiv = new U.UF.UI.form(
  5162. "問卷調查",
  5163. $$("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 }), {
  5164. "id": "investigation",
  5165. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5166. "onresize": function () { }
  5167. }, {
  5168. closecallback: function () { }
  5169. }, { "style": { "height": "36px" } }).form; //創建窗體
  5170. _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); } }
  5171. break;
  5172. case "note":
  5173. _formdiv = new U.UF.UI.form(
  5174. "便簽分類",
  5175. $$("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 }), {
  5176. "id": "note",
  5177. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5178. "onresize": function () { }
  5179. }, {
  5180. closecallback: function () { }
  5181. }, { "style": { "height": "36px" } }).form; //創建窗體
  5182. _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); } }
  5183. break;
  5184. // case "score":
  5185. // _formdiv = new U.UF.UI.form(
  5186. // "量規評分",
  5187. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5188. // "id": "score",
  5189. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5190. // "onresize": function() {}
  5191. // }, {
  5192. // closecallback: function() {}
  5193. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5194. // _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); } }
  5195. // break;
  5196. case "mind":
  5197. _formdiv = new U.UF.UI.form(
  5198. "思維導圖",
  5199. $$("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"
  5200. "id": "mind",
  5201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //創建窗體
  5206. _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); } }
  5207. break;
  5208. case "doc":
  5209. // U.MD.D.I.isRoom();
  5210. _formdiv = new U.UF.UI.form(
  5211. "協同文檔",
  5212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5213. "id": "doc",
  5214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { }
  5218. }, { "style": { "height": "36px" } }).form; //創建窗體
  5219. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5220. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5221. // })
  5222. _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); } }
  5223. break;
  5224. case "studentStudy":
  5225. _formdiv = new U.UF.UI.form(
  5226. "課程中心",
  5227. $$("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
  5228. "id": "studentStudy",
  5229. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5230. "onresize": function () { }
  5231. }, {
  5232. closecallback: function () { }
  5233. }, { "style": { "height": "36px" } }).form; //創建窗體
  5234. _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); } }
  5235. break;
  5236. case "train": //好友打開
  5237. _formdiv = new U.UF.UI.form(
  5238. "訓練平臺",
  5239. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5240. "id": "train",
  5241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //創建窗體
  5246. _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); } }
  5247. break;
  5248. case "mindNetwork": //好友打開
  5249. _formdiv = new U.UF.UI.form(
  5250. "思維網格",
  5251. $$("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 }), {
  5252. "id": "mindNetwork",
  5253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //創建窗體
  5258. _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); } }
  5259. break;
  5260. case "studentClassRoom": //好友打開
  5261. _formdiv = new U.UF.UI.form(
  5262. "實時課堂",
  5263. $$("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 }), {
  5264. "id": "studentClassRoom",
  5265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5266. "onresize": function () { }
  5267. }, {
  5268. closecallback: function () { }
  5269. }, { "style": { "height": "36px" } }).form; //創建窗體
  5270. _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); } }
  5271. setTimeout(() => {
  5272. U.UF.F.windowZooming(_formdiv)
  5273. }, 0);
  5274. break;
  5275. }
  5276. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5277. switch (str) {
  5278. case "studnetProject": //好友打開
  5279. _formdiv = new U.UF.UI.form(
  5280. "我的項目",
  5281. $$("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 }), {
  5282. "id": "studnetProject",
  5283. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //創建窗體
  5288. _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); } }
  5289. break;
  5290. case "studentEvaluate": //好友打開
  5291. _formdiv = new U.UF.UI.form(
  5292. "我的評價",
  5293. $$("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 }), {
  5294. "id": "studentEvaluate",
  5295. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5296. "onresize": function () { }
  5297. }, {
  5298. closecallback: function () { }
  5299. }, { "style": { "height": "36px" } }).form; //創建窗體
  5300. _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); } }
  5301. break;
  5302. case "my":
  5303. _formdiv = new U.UF.UI.form(
  5304. "我的資料",
  5305. $$("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 }), {
  5306. "id": "my",
  5307. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5308. "onresize": function () { }
  5309. }, {
  5310. closecallback: function () { }
  5311. }, { "style": { "height": "36px" } }).form; //創建窗體
  5312. _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); } }
  5313. break;
  5314. case "program":
  5315. _formdiv = new U.UF.UI.form(
  5316. "編程平臺",
  5317. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5318. "id": "program",
  5319. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5320. "onresize": function () { }
  5321. }, {
  5322. closecallback: function () { }
  5323. }, { "style": { "height": "36px" } }).form; //創建窗體
  5324. _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); } }
  5325. break;
  5326. case "library":
  5327. _formdiv = new U.UF.UI.form(
  5328. "素材庫",
  5329. $$("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 }), {
  5330. "id": "library",
  5331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5332. "onresize": function () { }
  5333. }, {
  5334. closecallback: function () { }
  5335. }, { "style": { "height": "36px" } }).form; //創建窗體
  5336. _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); } }
  5337. break;
  5338. case "whiteboard":
  5339. _formdiv = new U.UF.UI.form(
  5340. "電子白板",
  5341. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5342. "id": "whiteboard",
  5343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5344. "onresize": function () { }
  5345. }, {
  5346. closecallback: function () { }
  5347. }, { "style": { "height": "36px" } }).form; //創建窗體
  5348. _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); } }
  5349. break;
  5350. case "investigation":
  5351. _formdiv = new U.UF.UI.form(
  5352. "問卷調查",
  5353. $$("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 }), {
  5354. "id": "investigation",
  5355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5356. "onresize": function () { }
  5357. }, {
  5358. closecallback: function () { }
  5359. }, { "style": { "height": "36px" } }).form; //創建窗體
  5360. _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); } }
  5361. break;
  5362. case "note":
  5363. _formdiv = new U.UF.UI.form(
  5364. "便簽分類",
  5365. $$("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 }), {
  5366. "id": "note",
  5367. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5368. "onresize": function () { }
  5369. }, {
  5370. closecallback: function () { }
  5371. }, { "style": { "height": "36px" } }).form; //創建窗體
  5372. _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); } }
  5373. break;
  5374. // case "score":
  5375. // _formdiv = new U.UF.UI.form(
  5376. // "量規評分",
  5377. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5378. // "id": "score",
  5379. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5380. // "onresize": function() {}
  5381. // }, {
  5382. // closecallback: function() {}
  5383. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5384. // _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); } }
  5385. // break;
  5386. case "mind":
  5387. _formdiv = new U.UF.UI.form(
  5388. "思維導圖",
  5389. $$("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"
  5390. "id": "mind",
  5391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5392. "onresize": function () { }
  5393. }, {
  5394. closecallback: function () { }
  5395. }, { "style": { "height": "36px" } }).form; //創建窗體
  5396. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5397. break;
  5398. case "doc":
  5399. // U.MD.D.I.isRoom();
  5400. _formdiv = new U.UF.UI.form(
  5401. "協同文檔",
  5402. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5403. "id": "doc",
  5404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5405. "onresize": function () { }
  5406. }, {
  5407. closecallback: function () { }
  5408. }, { "style": { "height": "36px" } }).form; //創建窗體
  5409. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5410. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5411. })
  5412. _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); } }
  5413. break;
  5414. case "train": //好友打開
  5415. _formdiv = new U.UF.UI.form(
  5416. "訓練平臺",
  5417. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5418. "id": "train",
  5419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5420. "onresize": function () { }
  5421. }, {
  5422. closecallback: function () { }
  5423. }, { "style": { "height": "36px" } }).form; //創建窗體
  5424. _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); } }
  5425. break;
  5426. case "studentStudy":
  5427. _formdiv = new U.UF.UI.form(
  5428. "課程中心",
  5429. $$("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
  5430. "id": "studentStudy",
  5431. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5432. "onresize": function () { }
  5433. }, {
  5434. closecallback: function () { }
  5435. }, { "style": { "height": "36px" } }).form; //創建窗體
  5436. _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); } }
  5437. break;
  5438. case "mindNetwork": //好友打開
  5439. _formdiv = new U.UF.UI.form(
  5440. "思維網格",
  5441. $$("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 }), {
  5442. "id": "mindNetwork",
  5443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5444. "onresize": function () { }
  5445. }, {
  5446. closecallback: function () { }
  5447. }, { "style": { "height": "36px" } }).form; //創建窗體
  5448. _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); } }
  5449. break;
  5450. case "studentClassRoom": //好友打開
  5451. _formdiv = new U.UF.UI.form(
  5452. "實時課堂",
  5453. $$("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 }), {
  5454. "id": "studentClassRoom",
  5455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5456. "onresize": function () { }
  5457. }, {
  5458. closecallback: function () { }
  5459. }, { "style": { "height": "36px" } }).form; //創建窗體
  5460. _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); } }
  5461. setTimeout(() => {
  5462. U.UF.F.windowZooming(_formdiv)
  5463. }, 0);
  5464. break;
  5465. }
  5466. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5467. //選擇應用處理
  5468. switch (str) {
  5469. case "project": //好友打開
  5470. _formdiv = new U.UF.UI.form(
  5471. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5472. $$("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 }), {
  5473. "id": "project",
  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/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5480. break;
  5481. case "student":
  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/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5485. "id": "student",
  5486. "style": { "width": "90%", "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/student.png)" }, "name": "學生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. case "evaluate":
  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 + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5497. "id": "evaluate",
  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/evaluation.png)" }, "name": "學生評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5504. break;
  5505. case "sys":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5509. "id": "sys",
  5510. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目標管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5516. break;
  5517. case "courseDesign":
  5518. _formdiv = new U.UF.UI.form(
  5519. "項目設計",
  5520. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5521. "id": "courseDesign",
  5522. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //創建窗體
  5527. _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); } }
  5528. break;
  5529. case "program":
  5530. _formdiv = new U.UF.UI.form(
  5531. "編程平臺",
  5532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5533. "id": "program",
  5534. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //創建窗體
  5539. _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); } }
  5540. break;
  5541. case "class":
  5542. _formdiv = new U.UF.UI.form(
  5543. "班級管理",
  5544. $$("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 }), {
  5545. "id": "class",
  5546. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5547. "onresize": function () { }
  5548. }, {
  5549. closecallback: function () { }
  5550. }, { "style": { "height": "36px" } }).form; //創建窗體
  5551. _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); } }
  5552. break;
  5553. case "Grade":
  5554. _formdiv = new U.UF.UI.form(
  5555. "年級管理",
  5556. $$("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 }), {
  5557. "id": "Grade",
  5558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //創建窗體
  5563. _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); } }
  5564. break;
  5565. case "teacherOffice":
  5566. _formdiv = new U.UF.UI.form(
  5567. "教研室",
  5568. $$("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 }), {
  5569. "id": "teacherOffice",
  5570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //創建窗體
  5575. _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); } }
  5576. break;
  5577. case "my":
  5578. _formdiv = new U.UF.UI.form(
  5579. "我的資料",
  5580. $$("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 }), {
  5581. "id": "my",
  5582. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //創建窗體
  5587. _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); } }
  5588. break;
  5589. case "notice":
  5590. _formdiv = new U.UF.UI.form(
  5591. "通知公告",
  5592. $$("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 }), {
  5593. "id": "notice",
  5594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //創建窗體
  5599. _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); } }
  5600. break;
  5601. case "library":
  5602. _formdiv = new U.UF.UI.form(
  5603. "素材庫",
  5604. $$("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 }), {
  5605. "id": "library",
  5606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //創建窗體
  5611. _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); } }
  5612. break;
  5613. case "whiteboard":
  5614. _formdiv = new U.UF.UI.form(
  5615. "電子白板",
  5616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5617. "id": "whiteboard",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //創建窗體
  5623. _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); } }
  5624. break;
  5625. case "investigation":
  5626. _formdiv = new U.UF.UI.form(
  5627. "問卷調查",
  5628. $$("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 }), {
  5629. "id": "investigation",
  5630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //創建窗體
  5635. _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); } }
  5636. break;
  5637. case "note":
  5638. _formdiv = new U.UF.UI.form(
  5639. "便簽分類",
  5640. $$("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 }), {
  5641. "id": "note",
  5642. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //創建窗體
  5647. _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); } }
  5648. break;
  5649. // case "score":
  5650. // _formdiv = new U.UF.UI.form(
  5651. // "量規評分",
  5652. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5653. // "id": "score",
  5654. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5655. // "onresize": function() {}
  5656. // }, {
  5657. // closecallback: function() {}
  5658. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5659. // _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); } }
  5660. // break;
  5661. case "mind":
  5662. _formdiv = new U.UF.UI.form(
  5663. "思維導圖",
  5664. $$("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"
  5665. "id": "mind",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //創建窗體
  5671. _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); } }
  5672. break;
  5673. case "doc":
  5674. // U.MD.D.I.isRoom();
  5675. _formdiv = new U.UF.UI.form(
  5676. "協同文檔",
  5677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5678. "id": "doc",
  5679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //創建窗體
  5684. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5685. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5686. })
  5687. _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); } }
  5688. break;
  5689. case "study":
  5690. _formdiv = new U.UF.UI.form(
  5691. "課程中心",
  5692. $$("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
  5693. "id": "study",
  5694. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, { "style": { "height": "36px" } }).form; //創建窗體
  5699. _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); } }
  5700. break;
  5701. case "mindNetwork": //好友打開
  5702. _formdiv = new U.UF.UI.form(
  5703. "思維網格",
  5704. $$("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 }), {
  5705. "id": "mindNetwork",
  5706. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5707. "onresize": function () { }
  5708. }, {
  5709. closecallback: function () { }
  5710. }, { "style": { "height": "36px" } }).form; //創建窗體
  5711. _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); } }
  5712. break;
  5713. case "train": //好友打開
  5714. _formdiv = new U.UF.UI.form(
  5715. "訓練平臺",
  5716. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5717. "id": "mindNetwork",
  5718. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5719. "onresize": function () { }
  5720. }, {
  5721. closecallback: function () { }
  5722. }, { "style": { "height": "36px" } }).form; //創建窗體
  5723. _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); } }
  5724. break;
  5725. case "teacherClassRoom": //好友打開
  5726. _formdiv = new U.UF.UI.form(
  5727. "實時課堂",
  5728. $$("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 }), {
  5729. "id": "teacherClassRoom",
  5730. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5731. "onresize": function () { }
  5732. }, {
  5733. closecallback: function () { }
  5734. }, { "style": { "height": "36px" } }).form; //創建窗體
  5735. _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); } }
  5736. setTimeout(() => {
  5737. U.UF.F.windowZooming(_formdiv)
  5738. }, 0);
  5739. break;
  5740. }
  5741. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5742. switch (str) {
  5743. case "project": //好友打開
  5744. _formdiv = new U.UF.UI.form(
  5745. "課程管理",
  5746. $$("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 }), {
  5747. "id": "project",
  5748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5749. "onresize": function () { }
  5750. }, {
  5751. closecallback: function () { }
  5752. }, { "style": { "height": "36px" } }).form; //創建窗體
  5753. _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); } }
  5754. break;
  5755. case "evaluate":
  5756. _formdiv = new U.UF.UI.form(
  5757. "學生評價",
  5758. $$("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 }), {
  5759. "id": "evaluate",
  5760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5761. "onresize": function () { }
  5762. }, {
  5763. closecallback: function () { }
  5764. }, { "style": { "height": "36px" } }).form; //創建窗體
  5765. _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); } }
  5766. break;
  5767. case "notice":
  5768. _formdiv = new U.UF.UI.form(
  5769. "通知公告",
  5770. $$("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 }), {
  5771. "id": "notice",
  5772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5773. "onresize": function () { }
  5774. }, {
  5775. closecallback: function () { }
  5776. }, { "style": { "height": "36px" } }).form; //創建窗體
  5777. _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); } }
  5778. break;
  5779. case "stuLibrary":
  5780. _formdiv = new U.UF.UI.form(
  5781. "學習資料",
  5782. $$("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 }), {
  5783. "id": "stuLibrary",
  5784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5785. "onresize": function () { }
  5786. }, {
  5787. closecallback: function () { }
  5788. }, { "style": { "height": "36px" } }).form; //創建窗體
  5789. _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); } }
  5790. break;
  5791. case "program":
  5792. _formdiv = new U.UF.UI.form(
  5793. "編程平臺",
  5794. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5795. "id": "program",
  5796. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5797. "onresize": function () { }
  5798. }, {
  5799. closecallback: function () { }
  5800. }, { "style": { "height": "36px" } }).form; //創建窗體
  5801. _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); } }
  5802. break;
  5803. case "whiteboard":
  5804. _formdiv = new U.UF.UI.form(
  5805. "電子白板",
  5806. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5807. "id": "whiteboard",
  5808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5809. "onresize": function () { }
  5810. }, {
  5811. closecallback: function () { }
  5812. }, { "style": { "height": "36px" } }).form; //創建窗體
  5813. _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); } }
  5814. break;
  5815. case "investigation":
  5816. _formdiv = new U.UF.UI.form(
  5817. "問卷調查",
  5818. $$("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 }), {
  5819. "id": "investigation",
  5820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5821. "onresize": function () { }
  5822. }, {
  5823. closecallback: function () { }
  5824. }, { "style": { "height": "36px" } }).form; //創建窗體
  5825. _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); } }
  5826. break;
  5827. case "mind":
  5828. _formdiv = new U.UF.UI.form(
  5829. "思維導圖",
  5830. $$("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"
  5831. "id": "mind",
  5832. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5833. "onresize": function () { }
  5834. }, {
  5835. closecallback: function () { }
  5836. }, { "style": { "height": "36px" } }).form; //創建窗體
  5837. _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); } }
  5838. break;
  5839. case "doc":
  5840. // U.MD.D.I.isRoom();
  5841. _formdiv = new U.UF.UI.form(
  5842. "協同文檔",
  5843. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5844. "id": "doc",
  5845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //創建窗體
  5850. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5851. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5852. })
  5853. _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); } }
  5854. break;
  5855. case "study":
  5856. _formdiv = new U.UF.UI.form(
  5857. "課程中心",
  5858. $$("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
  5859. "id": "study",
  5860. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //創建窗體
  5865. _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); } }
  5866. break;
  5867. case "mindNetwork": //好友打開
  5868. _formdiv = new U.UF.UI.form(
  5869. "思維網格",
  5870. $$("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 }), {
  5871. "id": "mindNetwork",
  5872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5873. "onresize": function () { }
  5874. }, {
  5875. closecallback: function () { }
  5876. }, { "style": { "height": "36px" } }).form; //創建窗體
  5877. _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); } }
  5878. break;
  5879. case "train": //好友打開
  5880. _formdiv = new U.UF.UI.form(
  5881. "訓練平臺",
  5882. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5883. "id": "train",
  5884. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5885. "onresize": function () { }
  5886. }, {
  5887. closecallback: function () { }
  5888. }, { "style": { "height": "36px" } }).form; //創建窗體
  5889. _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); } }
  5890. break;
  5891. case "sys":
  5892. _formdiv = new U.UF.UI.form(
  5893. "目標管理",
  5894. $$("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 }), {
  5895. "id": "sys",
  5896. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5897. "onresize": function () { }
  5898. }, {
  5899. closecallback: function () { }
  5900. }, { "style": { "height": "36px" } }).form; //創建窗體
  5901. _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); } }
  5902. break;
  5903. case "courseDesign":
  5904. _formdiv = new U.UF.UI.form(
  5905. "項目設計",
  5906. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5907. "id": "courseDesign",
  5908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //創建窗體
  5913. _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); } }
  5914. break;
  5915. }
  5916. } else if (!_type) {
  5917. switch (str) {
  5918. case "my":
  5919. _formdiv = new U.UF.UI.form(
  5920. "我的資料",
  5921. $$("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 }), {
  5922. "id": "my",
  5923. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5924. "onresize": function () { }
  5925. }, {
  5926. closecallback: function () { }
  5927. }, { "style": { "height": "36px" } }).form; //創建窗體
  5928. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5929. break;
  5930. }
  5931. }
  5932. switch (str) {
  5933. // AIprogram2 AI體驗 aihub.cocorobo.cn
  5934. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  5935. // AIprogram AI編程 ai-blockly.cocorobo.cn
  5936. case "formulaEdi": //公式編輯
  5937. _formdiv = new U.UF.UI.form(
  5938. "公式編輯",
  5939. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5940. "id": "formulaEdi",
  5941. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5942. "onresize": function () { }
  5943. }, {
  5944. closecallback: function () { }
  5945. }, { "style": { "height": "36px" } }).form; //創建窗體
  5946. _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); } }
  5947. break;
  5948. case "molStr": //分子結構
  5949. _formdiv = new U.UF.UI.form(
  5950. "分子結構",
  5951. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5952. "id": "molStr",
  5953. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5954. "onresize": function () { }
  5955. }, {
  5956. closecallback: function () { }
  5957. }, { "style": { "height": "36px" } }).form; //創建窗體
  5958. _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); } }
  5959. break;
  5960. case "timeAxis": //時間軸
  5961. _formdiv = new U.UF.UI.form(
  5962. "時間軸",
  5963. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5964. "id": "timeAxis",
  5965. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5966. "onresize": function () { }
  5967. }, {
  5968. closecallback: function () { }
  5969. }, { "style": { "height": "36px" } }).form; //創建窗體
  5970. _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); } }
  5971. break;
  5972. case "AIprogram2": //AI體驗
  5973. _formdiv = new U.UF.UI.form(
  5974. "AI體驗",
  5975. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5976. "id": "AIprogram2",
  5977. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5978. "onresize": function () { }
  5979. }, {
  5980. closecallback: function () { }
  5981. }, { "style": { "height": "36px" } }).form; //創建窗體
  5982. _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); } }
  5983. break;
  5984. case "Pythonprogram": //python編程
  5985. _formdiv = new U.UF.UI.form(
  5986. "Python編程",
  5987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5988. "id": "Pythonprogram",
  5989. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5990. "onresize": function () { }
  5991. }, {
  5992. closecallback: function () { }
  5993. }, { "style": { "height": "36px" } }).form; //創建窗體
  5994. _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); } }
  5995. break;
  5996. case "AIprogram": //ai編程
  5997. _formdiv = new U.UF.UI.form(
  5998. "AI編程平臺",
  5999. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6000. "id": "AIprogram",
  6001. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //創建窗體
  6006. _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); } }
  6007. break;
  6008. case "CocoPi": //CocoPi
  6009. _formdiv = new U.UF.UI.form(
  6010. "CocoPi",
  6011. $$("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" }), {
  6012. "id": "CocoPi",
  6013. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6014. "onresize": function () { }
  6015. }, {
  6016. closecallback: function () { }
  6017. }, { "style": { "height": "36px" } }).form; //創建窗體
  6018. _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); } }
  6019. break;
  6020. case "Wood": //Wood
  6021. _formdiv = new U.UF.UI.form(
  6022. "海龜編程",
  6023. $$("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/" }), {
  6024. "id": "Wood",
  6025. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6026. "onresize": function () { }
  6027. }, {
  6028. closecallback: function () { }
  6029. }, { "style": { "height": "36px" } }).form; //創建窗體
  6030. _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); } }
  6031. break;
  6032. case "car": //模擬駕駛
  6033. _formdiv = new U.UF.UI.form(
  6034. "模擬駕駛",
  6035. $$("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/" }), {
  6036. "id": "car",
  6037. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6038. "onresize": function () { }
  6039. }, {
  6040. closecallback: function () { }
  6041. }, { "style": { "height": "36px" } }).form; //創建窗體
  6042. _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); } }
  6043. break;
  6044. case "lineSearch": //路徑搜索
  6045. _formdiv = new U.UF.UI.form(
  6046. "路徑搜索",
  6047. $$("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/" }), {
  6048. "id": "lineSearch",
  6049. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6050. "onresize": function () { }
  6051. }, {
  6052. closecallback: function () { }
  6053. }, { "style": { "height": "36px" } }).form; //創建窗體
  6054. _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); } }
  6055. break;
  6056. case "deepLearning": //深度學習
  6057. _formdiv = new U.UF.UI.form(
  6058. "深度學習",
  6059. $$("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/#" }), {
  6060. "id": "deepLearning",
  6061. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, { "style": { "height": "36px" } }).form; //創建窗體
  6066. _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); } }
  6067. break;
  6068. case "allHistory": //深度學習
  6069. _formdiv = new U.UF.UI.form(
  6070. "全歷史",
  6071. $$("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/" }), {
  6072. "id": "allHistory",
  6073. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, { "style": { "height": "36px" } }).form; //創建窗體
  6078. _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); } }
  6079. break;
  6080. case "chatPDF": //ai編程
  6081. _formdiv = new U.UF.UI.form(
  6082. "chatPDF",
  6083. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6084. "id": "chatPDF",
  6085. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6086. "onresize": function () { }
  6087. }, {
  6088. closecallback: function () { }
  6089. }, { "style": { "height": "36px" } }).form; //創建窗體
  6090. _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); } }
  6091. break;
  6092. case "resources": //國家教育
  6093. _formdiv = new U.UF.UI.form(
  6094. "國家教育",
  6095. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6096. "id": "resources",
  6097. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6098. "onresize": function () { }
  6099. }, {
  6100. closecallback: function () { }
  6101. }, { "style": { "height": "36px" } }).form; //創建窗體
  6102. _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); } }
  6103. break;
  6104. case "codeEdit": //源碼編輯
  6105. _formdiv = new U.UF.UI.form(
  6106. "源碼編輯",
  6107. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6108. "id": "codeEdit",
  6109. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //創建窗體
  6114. _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); } }
  6115. break; //
  6116. case "MindMap": //MindMap
  6117. _formdiv = new U.UF.UI.form(
  6118. "MindMap",
  6119. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6120. "id": "MindMap",
  6121. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //創建窗體
  6126. _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); } }
  6127. break;
  6128. case "netWorkPanel": //netWorkPanel
  6129. _formdiv = new U.UF.UI.form(
  6130. "netWorkPanel",
  6131. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6132. "id": "netWorkPanel",
  6133. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6134. "onresize": function () { }
  6135. }, {
  6136. closecallback: function () { }
  6137. }, { "style": { "height": "36px" } }).form; //創建窗體
  6138. _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); } }
  6139. break;
  6140. case "GeoGebra": //GeoGebra
  6141. _formdiv = new U.UF.UI.form(
  6142. "GeoGebra",
  6143. $$("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" }), {
  6144. "id": "GeoGebra",
  6145. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //創建窗體
  6150. _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); } }
  6151. break;
  6152. case "translation": //翻譯
  6153. _formdiv = new U.UF.UI.form(
  6154. "翻譯",
  6155. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6156. "id": "translation",
  6157. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //創建窗體
  6162. _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); } }
  6163. break;
  6164. case "mohe": //魔盒
  6165. _formdiv = new U.UF.UI.form(
  6166. "魔盒識字",
  6167. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6168. "id": "mohe",
  6169. "style": { "width": "375px", "height": "667px", "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/mohe.png)" }, "name": "魔盒識字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6175. break;
  6176. case "24game": //24點
  6177. _formdiv = new U.UF.UI.form(
  6178. "24點",
  6179. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6180. "id": "24game",
  6181. "style": { "width": "375px", "height": "667px", "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/24game.png)" }, "name": "24點", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6187. break;
  6188. case "case":
  6189. _formdiv = new U.UF.UI.form(
  6190. "課程進展",
  6191. $$("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 }), {
  6192. "id": "case",
  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/case.png)" }, "name": "課程進展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6199. break;
  6200. case "snf":
  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": "//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" }), {
  6204. "id": "snf",
  6205. "style": { "width": "90%", "height": "90%", "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/snf.png)" }, "name": "賽諾梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6211. break;
  6212. case "hanFamily":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6216. "id": "hanFamily",
  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/hanFamily.png)" }, "name": "漢字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6223. break;
  6224. case "hanClassics":
  6225. _formdiv = new U.UF.UI.form(
  6226. "國學經典",
  6227. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6228. "id": "hanClassics",
  6229. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6230. "onresize": function () { }
  6231. }, {
  6232. closecallback: function () { }
  6233. }, { "style": { "height": "36px" } }).form; //創建窗體
  6234. _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); } }
  6235. break;
  6236. case "hanTraining":
  6237. _formdiv = new U.UF.UI.form(
  6238. "筆畫訓練",
  6239. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6240. "id": "hanTraining",
  6241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6242. "onresize": function () { }
  6243. }, {
  6244. closecallback: function () { }
  6245. }, { "style": { "height": "36px" } }).form; //創建窗體
  6246. _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); } }
  6247. break;
  6248. case "hanClass":
  6249. _formdiv = new U.UF.UI.form(
  6250. "書法課堂",
  6251. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6252. "id": "hanClass",
  6253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6254. "onresize": function () { }
  6255. }, {
  6256. closecallback: function () { }
  6257. }, { "style": { "height": "36px" } }).form; //創建窗體
  6258. _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); } }
  6259. break;
  6260. case "han":
  6261. _formdiv = new U.UF.UI.form(
  6262. "漢字宮",
  6263. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6264. "id": "han",
  6265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6266. "onresize": function () { }
  6267. }, {
  6268. closecallback: function () { }
  6269. }, { "style": { "height": "36px" } }).form; //創建窗體
  6270. _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); } }
  6271. break;
  6272. case "projectGM": //課程管理
  6273. _formdiv = new U.UF.UI.form(
  6274. "課程管理",
  6275. $$("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 }), {
  6276. "id": "projectGM",
  6277. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6278. "onresize": function () { }
  6279. }, {
  6280. closecallback: function () { }
  6281. }, { "style": { "height": "36px" } }).form; //創建窗體
  6282. _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); } }
  6283. break;
  6284. case "studyGM": //課程中心
  6285. _formdiv = new U.UF.UI.form(
  6286. "課程中心",
  6287. $$("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
  6288. "id": "study",
  6289. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6290. "onresize": function () { }
  6291. }, {
  6292. closecallback: function () { }
  6293. }, { "style": { "height": "36px" } }).form; //創建窗體
  6294. _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); } }
  6295. break;
  6296. // studentGM
  6297. case "studentGM": //學生管理
  6298. _formdiv = new U.UF.UI.form(
  6299. "學生管理",
  6300. $$("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 }), {
  6301. "id": "studentGM",
  6302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6303. "onresize": function () { }
  6304. }, {
  6305. closecallback: function () { }
  6306. }, { "style": { "height": "36px" } }).form; //創建窗體
  6307. _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); } }
  6308. break;
  6309. case "evaluateGM": //學生評價
  6310. _formdiv = new U.UF.UI.form(
  6311. "學生評價",
  6312. $$("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 }), {
  6313. "id": "evaluateGM",
  6314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6315. "onresize": function () { }
  6316. }, {
  6317. closecallback: function () { }
  6318. }, { "style": { "height": "36px" } }).form; //創建窗體
  6319. _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); } }
  6320. break;
  6321. // classGM
  6322. case "classGM": //班級管理
  6323. _formdiv = new U.UF.UI.form(
  6324. "班級管理",
  6325. $$("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 }), {
  6326. "id": "classGM",
  6327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, { "style": { "height": "36px" } }).form; //創建窗體
  6332. _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); } }
  6333. break;
  6334. // dataGM
  6335. case "dataGM":
  6336. _formdiv = new U.UF.UI.form(
  6337. "我的資料",
  6338. $$("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 }), {
  6339. "id": "dataGM",
  6340. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //創建窗體
  6345. _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); } }
  6346. break;
  6347. // caseGM
  6348. case "caseGM": //課程進展
  6349. _formdiv = new U.UF.UI.form(
  6350. "課程進展",
  6351. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6352. "id": "caseGM",
  6353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6354. "onresize": function () { }
  6355. }, {
  6356. closecallback: function () { }
  6357. }, { "style": { "height": "36px" } }).form; //創建窗體
  6358. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "課程進展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6359. break;
  6360. // meterialGM
  6361. case "meterialGM": //素材庫
  6362. _formdiv = new U.UF.UI.form(
  6363. "素材庫",
  6364. $$("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 }), {
  6365. "id": "meterialGM",
  6366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //創建窗體
  6371. _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); } }
  6372. break;
  6373. // evaluateSGM
  6374. case "evaluateSGM": //我的評價
  6375. _formdiv = new U.UF.UI.form(
  6376. "我的評價",
  6377. $$("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 }), {
  6378. "id": "evaluateSGM",
  6379. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6380. "onresize": function () { }
  6381. }, {
  6382. closecallback: function () { }
  6383. }, { "style": { "height": "36px" } }).form; //創建窗體
  6384. _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); } }
  6385. break;
  6386. case "jupyter": //jupyter
  6387. _formdiv = new U.UF.UI.form(
  6388. "jupyter",
  6389. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6390. "id": "jupyter",
  6391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6392. "onresize": function () { }
  6393. }, {
  6394. closecallback: function () { }
  6395. }, { "style": { "height": "36px" } }).form; //創建窗體
  6396. _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); } }
  6397. break;
  6398. case "number": //數字實驗室
  6399. _formdiv = new U.UF.UI.form(
  6400. "數字實驗室",
  6401. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6402. "id": "number",
  6403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6404. "onresize": function () { }
  6405. }, {
  6406. closecallback: function () { }
  6407. }, { "style": { "height": "36px" } }).form; //創建窗體
  6408. _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); } }
  6409. break;
  6410. case "studentCourse": //項目管理 學生
  6411. _formdiv = new U.UF.UI.form(
  6412. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6413. $$("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 }), {
  6414. "id": "studentCourse",
  6415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6416. "onresize": function () { }
  6417. }, {
  6418. closecallback: function () { }
  6419. }, { "style": { "height": "36px" } }).form; //創建窗體
  6420. _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); } }
  6421. break;
  6422. case "studentCourseS": //項目管理 老師
  6423. _formdiv = new U.UF.UI.form(
  6424. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6425. $$("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 }), {
  6426. "id": "studentCourseS",
  6427. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6428. "onresize": function () { }
  6429. }, {
  6430. closecallback: function () { }
  6431. }, { "style": { "height": "36px" } }).form; //創建窗體
  6432. _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); } }
  6433. break;
  6434. case "studentIndex": //項目中心
  6435. _formdiv = new U.UF.UI.form(
  6436. "項目中心",
  6437. $$("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 }), {
  6438. "id": "studentIndex",
  6439. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6440. "onresize": function () { }
  6441. }, {
  6442. closecallback: function () { }
  6443. }, { "style": { "height": "36px" } }).form; //創建窗體
  6444. _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); } }
  6445. break;
  6446. case "CaseDesignS":
  6447. _formdiv = new U.UF.UI.form(
  6448. "項目進展",
  6449. $$("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 }), {
  6450. "id": "case",
  6451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6452. "onresize": function () { }
  6453. }, {
  6454. closecallback: function () { }
  6455. }, { "style": { "height": "36px" } }).form; //創建窗體
  6456. _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); } }
  6457. break;
  6458. case "tcStudent": //騰訊學生管理
  6459. _formdiv = new U.UF.UI.form(
  6460. "學生管理",
  6461. $$("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 }), {
  6462. "id": "tcStudent",
  6463. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6464. "onresize": function () { }
  6465. }, {
  6466. closecallback: function () { }
  6467. }, { "style": { "height": "36px" } }).form; //創建窗體
  6468. _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); } }
  6469. break;
  6470. case "tcSchool": //騰訊學校管理
  6471. _formdiv = new U.UF.UI.form(
  6472. "學校管理",
  6473. $$("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 }), {
  6474. "id": "tcSchool",
  6475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6476. "onresize": function () { }
  6477. }, {
  6478. closecallback: function () { }
  6479. }, { "style": { "height": "36px" } }).form; //創建窗體
  6480. _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); } }
  6481. break;
  6482. case "tcTeacher": //騰訊學校管理
  6483. _formdiv = new U.UF.UI.form(
  6484. "教師管理",
  6485. $$("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 }), {
  6486. "id": "tcTeacher",
  6487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6488. "onresize": function () { }
  6489. }, {
  6490. closecallback: function () { }
  6491. }, { "style": { "height": "36px" } }).form; //創建窗體
  6492. _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); } }
  6493. break;
  6494. case "teacher":
  6495. _formdiv = new U.UF.UI.form(
  6496. "教師管理",
  6497. $$("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 }), {
  6498. "id": "teacher",
  6499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6500. "onresize": function () { }
  6501. }, {
  6502. closecallback: function () { }
  6503. }, { "style": { "height": "36px" } }).form; //創建窗體
  6504. _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); } }
  6505. break;
  6506. case "tcData": //騰訊我的資料
  6507. _formdiv = new U.UF.UI.form(
  6508. "我的資料",
  6509. $$("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 }), {
  6510. "id": "tcData",
  6511. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6512. "onresize": function () { }
  6513. }, {
  6514. closecallback: function () { }
  6515. }, { "style": { "height": "36px" } }).form; //創建窗體
  6516. _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); } }
  6517. break;
  6518. case "tcNotice": //騰訊消息通知
  6519. _formdiv = new U.UF.UI.form(
  6520. "消息通知",
  6521. $$("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 }), {
  6522. "id": "tcNotice",
  6523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6524. "onresize": function () { }
  6525. }, {
  6526. closecallback: function () { }
  6527. }, { "style": { "height": "36px" } }).form; //創建窗體
  6528. _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); } }
  6529. break;
  6530. case "myReport": //好友打開
  6531. _formdiv = new U.UF.UI.form(
  6532. "我的評價",
  6533. $$("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 }), {
  6534. "id": "myReport",
  6535. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6536. "onresize": function () { }
  6537. }, {
  6538. closecallback: function () { }
  6539. }, { "style": { "height": "36px" } }).form; //創建窗體
  6540. _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); } }
  6541. break;
  6542. case "learnAna": //好友打開
  6543. _formdiv = new U.UF.UI.form(
  6544. "學習分析",
  6545. $$("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 }), {
  6546. "id": "learnAna",
  6547. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6548. "onresize": function () { }
  6549. }, {
  6550. closecallback: function () { }
  6551. }, { "style": { "height": "36px" } }).form; //創建窗體
  6552. _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); } }
  6553. break;
  6554. case "AIChat": //AI共創
  6555. _formdiv = new U.UF.UI.form(
  6556. "AI共創",
  6557. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  6558. "id": "AIChat",
  6559. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6560. "onresize": function () { }
  6561. }, {
  6562. istop: true,
  6563. closecallback: function () { $("#aichat_icon").remove(); },
  6564. narrowcallback: function () {
  6565. if (!$("#aichat_icon")[0]) {
  6566. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6567. }
  6568. },
  6569. }, { "style": { "height": "36px" } }).form; //創建窗體
  6570. _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); } }
  6571. break;
  6572. case "ainew": //AI共創
  6573. _formdiv = new U.UF.UI.form(
  6574. "AI協同",
  6575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  6576. "id": "ainew",
  6577. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, { "style": { "height": "36px" } }).form; //創建窗體
  6582. _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); } }
  6583. break;
  6584. case "gpt4": //gpt4
  6585. _formdiv = new U.UF.UI.form(
  6586. "AI助手",
  6587. $$("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 }), {
  6588. "id": "gpt4",
  6589. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6590. "onresize": function () { }
  6591. }, {
  6592. closecallback: function () { }
  6593. }, { "style": { "height": "36px" } }).form; //創建窗體
  6594. _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); } }
  6595. break;
  6596. case "aigpt": //gpt4
  6597. _formdiv = new U.UF.UI.form(
  6598. "AI助手+",
  6599. $$("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 }), {
  6600. "id": "aigpt",
  6601. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6602. "onresize": function () { }
  6603. }, {
  6604. closecallback: function () {
  6605. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6606. }
  6607. }, { "style": { "height": "36px" } }).form; //創建窗體
  6608. _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); } }
  6609. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6610. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6611. })
  6612. break;
  6613. case "aiKnowledge": //aiKnowledge
  6614. _formdiv = new U.UF.UI.form(
  6615. "知識建構",
  6616. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6617. "id": "aiKnowledge",
  6618. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //創建窗體
  6623. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知識建構", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6624. break;
  6625. case "futureClass": //AI共創
  6626. _formdiv = new U.UF.UI.form(
  6627. "協同建構",
  6628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.hk
  6629. "id": "synergyCourse",
  6630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () {
  6634. $("iframe", _formdiv)[0].contentWindow.loginout();
  6635. }
  6636. }, { "style": { "height": "36px" } }).form; //創建窗體
  6637. _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); } }
  6638. break;
  6639. case "aiagent": //ai agent
  6640. _formdiv = new U.UF.UI.form(
  6641. "AI Agent",
  6642. $$("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" }), {
  6643. "id": "AIAgent",
  6644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6645. "onresize": function () { }
  6646. }, {
  6647. closecallback: function () { }
  6648. }, { "style": { "height": "36px" } }).form; //創建窗體
  6649. _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); } }
  6650. break;
  6651. case "dataBoard": //數據看板
  6652. _formdiv = new U.UF.UI.form(
  6653. "數據看板",
  6654. $$("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 }), {
  6655. "id": "dataBoard",
  6656. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6657. "onresize": function () { }
  6658. }, {
  6659. closecallback: function () { }
  6660. }, { "style": { "height": "36px" } }).form; //創建窗體
  6661. _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); } }
  6662. break;
  6663. case "dataBoardSies": //數據融合
  6664. _formdiv = new U.UF.UI.form(
  6665. "數據融合",
  6666. $$("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 }), {
  6667. "id": "dataBoardSies",
  6668. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6669. "onresize": function () { }
  6670. }, {
  6671. closecallback: function () { }
  6672. }, { "style": { "height": "36px" } }).form; //創建窗體
  6673. _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); } }
  6674. break;
  6675. case "dataBoardNew": //數據看板
  6676. _formdiv = new U.UF.UI.form(
  6677. "綜合看板",
  6678. $$("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 }), {
  6679. "id": "dataBoardNew",
  6680. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6681. "onresize": function () { }
  6682. }, {
  6683. closecallback: function () { }
  6684. }, { "style": { "height": "36px" } }).form; //創建窗體
  6685. _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); } }
  6686. break;
  6687. case "dataBoardTest": //數據看板
  6688. _formdiv = new U.UF.UI.form(
  6689. "評測看板",
  6690. $$("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 }), {
  6691. "id": "dataBoardTest",
  6692. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6693. "onresize": function () { }
  6694. }, {
  6695. closecallback: function () { }
  6696. }, { "style": { "height": "36px" } }).form; //創建窗體
  6697. _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); } }
  6698. break;
  6699. case "AIAnalyse": //AI共創
  6700. _formdiv = new U.UF.UI.form(
  6701. "AI分析",
  6702. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  6703. "id": "AIAnalyse",
  6704. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6705. "onresize": function () { }
  6706. }, {
  6707. closecallback: function () { }
  6708. }, { "style": { "height": "36px" } }).form; //創建窗體
  6709. _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); } }
  6710. break;
  6711. case "studioCourse": //AI共創
  6712. _formdiv = new U.UF.UI.form(
  6713. "工作管理",
  6714. $$("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 }), {
  6715. "id": "studioCourse",
  6716. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6717. "onresize": function () { }
  6718. }, {
  6719. closecallback: function () { }
  6720. }, { "style": { "height": "36px" } }).form; //創建窗體
  6721. _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); } }
  6722. break;
  6723. case "studioIndex": //AI共創
  6724. _formdiv = new U.UF.UI.form(
  6725. "工作中心",
  6726. $$("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 }), {
  6727. "id": "studioIndex",
  6728. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6729. "onresize": function () { }
  6730. }, {
  6731. closecallback: function () { }
  6732. }, { "style": { "height": "36px" } }).form; //創建窗體
  6733. _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); } }
  6734. break;
  6735. case "source":
  6736. _formdiv = new U.UF.UI.form(
  6737. "教學資源",
  6738. $$("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 }), {
  6739. "id": "source",
  6740. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6741. "onresize": function () { }
  6742. }, {
  6743. closecallback: function () { }
  6744. }, { "style": { "height": "36px" } }).form; //創建窗體
  6745. _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); } }
  6746. break;
  6747. case "testTeacher":
  6748. _formdiv = new U.UF.UI.form(
  6749. "教師管理",
  6750. $$("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 }), {
  6751. "id": "testTeacher",
  6752. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6753. "onresize": function () { }
  6754. }, {
  6755. closecallback: function () { }
  6756. }, { "style": { "height": "36px" } }).form; //創建窗體
  6757. _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); } }
  6758. break;
  6759. case "testStudent":
  6760. _formdiv = new U.UF.UI.form(
  6761. "教師中心",
  6762. $$("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 }), {
  6763. "id": "testStudent",
  6764. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6765. "onresize": function () { }
  6766. }, {
  6767. closecallback: function () { }
  6768. }, { "style": { "height": "36px" } }).form; //創建窗體
  6769. _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); } }
  6770. break;
  6771. case "testTeacherSies":
  6772. _formdiv = new U.UF.UI.form(
  6773. "教師管理",
  6774. $$("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 }), {
  6775. "id": "testTeacherSies",
  6776. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6777. "onresize": function () { }
  6778. }, {
  6779. closecallback: function () { }
  6780. }, { "style": { "height": "36px" } }).form; //創建窗體
  6781. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教師管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6782. break;
  6783. case "testStudentSies":
  6784. _formdiv = new U.UF.UI.form(
  6785. "教師中心",
  6786. $$("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 }), {
  6787. "id": "testStudentSies",
  6788. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //創建窗體
  6793. _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); } }
  6794. break;
  6795. case "ytpbl": //消息通知
  6796. _formdiv = new U.UF.UI.form(
  6797. "案例征集",
  6798. $$("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 }), {
  6799. "id": "ytpbl",
  6800. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6801. "onresize": function () { }
  6802. }, {
  6803. closecallback: function () { }
  6804. }, { "style": { "height": "36px" } }).form; //創建窗體
  6805. _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); } }
  6806. // 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");
  6807. break;
  6808. case "aiCourseResource": //人工智能窗體
  6809. _formdiv = new U.UF.UI.form(
  6810. false,
  6811. $$("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 }), {
  6812. "id": "aiCourseResource",
  6813. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6814. "onresize": function () { },
  6815. "isdrag": false,
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //創建窗體
  6819. _taskbar = ''
  6820. break;
  6821. case "szdjgCocooroboX": //圖形化編程
  6822. _formdiv = new U.UF.UI.form(
  6823. "圖形化編程",
  6824. $$("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" }), {
  6825. "id": "szdjgCocooroboX",
  6826. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //創建窗體
  6831. _taskbar = ''
  6832. break;
  6833. case "szdjgPython": //python編程
  6834. _formdiv = new U.UF.UI.form(
  6835. "Python編程",
  6836. $$("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" }), {
  6837. "id": "szdjgPython",
  6838. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //創建窗體
  6843. _taskbar = ''
  6844. break;
  6845. case "Record":
  6846. _formdiv = new U.UF.UI.form(
  6847. "觀察記錄",
  6848. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6849. "id": "Record",
  6850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6851. "onresize": function () { }
  6852. }, {
  6853. closecallback: function () { }
  6854. }, { "style": { "height": "36px" } }).form; //創建窗體
  6855. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "觀察記錄", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6856. break;
  6857. case "aigptCourse":
  6858. _formdiv = new U.UF.UI.form(
  6859. "AI智能體",
  6860. $$("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' }), {
  6861. "id": "aigptCourse",
  6862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //創建窗體
  6867. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能體", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6868. break;
  6869. case "classroomObservation":
  6870. _formdiv = new U.UF.UI.form(
  6871. "課堂觀察",
  6872. $$("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 }), {
  6873. "id": "classroomObservation",
  6874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //創建窗體
  6879. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "課堂觀察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6880. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6881. break;
  6882. case "pblCourse":
  6883. _formdiv = new U.UF.UI.form(
  6884. "學生PBL",
  6885. $$("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 }), {
  6886. "id": "pblCourse",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //創建窗體
  6892. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "學生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6893. break;
  6894. case "appStore":
  6895. _formdiv = new U.UF.UI.form(
  6896. "應用中心",
  6897. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/appStore?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6898. "id": "pblCourse",
  6899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //創建窗體
  6904. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "應用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6905. break;
  6906. }
  6907. //U.MD.D.I.openClick(str);
  6908. //如果有任務欄信息
  6909. if (_taskbar) {
  6910. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  6911. }
  6912. }
  6913. // U.MD.D.I.openClick = function(str){
  6914. // var click = '';
  6915. // switch(str){
  6916. // case 'friend':
  6917. // click = '我的好友';
  6918. // break;
  6919. // case 'domain':
  6920. // click = '域名管理';
  6921. // break;
  6922. // case 'disk':
  6923. // click = '我的雲盤';
  6924. // break;
  6925. // case 'word':
  6926. // click = 'Word';
  6927. // break;
  6928. // case 'excel':
  6929. // click = 'Execl';
  6930. // break;
  6931. // case 'txt':
  6932. // click = '文本文件';
  6933. // break;
  6934. // case 'lookupFriend':
  6935. // click = '查找好友';
  6936. // break;
  6937. // case 'ftp':
  6938. // click = 'FTP';
  6939. // break;
  6940. // case 'group':
  6941. // click = '群組';
  6942. // break;
  6943. // case 'set':
  6944. // click = '我的設置';
  6945. // break;
  6946. // case 'systemSet':
  6947. // click = '系統設置';
  6948. // break;
  6949. // case 'boomYun':
  6950. // click = '互聯辦公';
  6951. // break;
  6952. // case 'xz':
  6953. // click = '雲端下載';
  6954. // break;
  6955. // case 'client':
  6956. // click = '有思瀏覽器';
  6957. // break;
  6958. // case 'backEndProgramming':
  6959. // click = '在線後臺編程';
  6960. // break;
  6961. // case 'frontEndProgramming':
  6962. // click = '在線前端編程';
  6963. // break;
  6964. // default: break;
  6965. // }
  6966. // if(U.MD.D.I.Ip && click){
  6967. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6968. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6969. // })
  6970. // }
  6971. // }
  6972. /**
  6973. *函數作用:ajax簡易函數,使用post格式
  6974. *@param url {data} 後臺地址
  6975. *@param data {data} 參數json
  6976. *@param fn {data} 回調函數
  6977. *
  6978. */
  6979. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6980. // var xhr = new XMLHttpRequest();
  6981. // xhr.open("GET",url,true);
  6982. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6983. // xhr.onreadystatechange = function(){
  6984. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6985. // fn.call(this,xhr.responseText);
  6986. // }
  6987. // };
  6988. // xhr.send();
  6989. // }
  6990. /*判斷是否是內網IP*/
  6991. // U.MD.D.I.isInnerIPFn = function(str){
  6992. // var curPageUrl = str;
  6993. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  6994. // curPageUrl =curPageUrl.replace(reg1,'');
  6995. // // console.log('curPageUrl-1 '+curPageUrl);
  6996. // var reg2 = /\:+/g;//替換冒號為一點
  6997. // curPageUrl =curPageUrl.replace(reg2,'.');
  6998. // // console.log('curPageUrl-2 '+curPageUrl);
  6999. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7000. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7001. // if(curPageUrl[2] != '16'){
  7002. // return ipAddress;
  7003. // }else{
  7004. // return false;
  7005. // }
  7006. // }
  7007. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7008. // //compatibility for firefox and chrome
  7009. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7010. // var pc = new myPeerConnection({
  7011. // iceServers: []
  7012. // }),
  7013. // noop = function() {},
  7014. // localIPs = {},
  7015. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7016. // key;
  7017. // function iterateIP(ip) {
  7018. // if (!localIPs[ip]) onNewIP(ip);
  7019. // localIPs[ip] = true;
  7020. // }
  7021. // //create a bogus data channel
  7022. // pc.createDataChannel("");
  7023. // // create offer and set local description
  7024. // pc.createOffer().then(function(sdp) {
  7025. // sdp.sdp.split('\n').forEach(function(line) {
  7026. // if (line.indexOf('candidate') < 0) return;
  7027. // line.match(ipRegex).forEach(iterateIP);
  7028. // });
  7029. // pc.setLocalDescription(sdp, noop, noop);
  7030. // }).catch(function(reason) {
  7031. // // An error occurred, so handle the failure to connect
  7032. // });
  7033. // //sten for candidate events
  7034. // pc.onicecandidate = function(ice) {
  7035. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7036. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7037. // };
  7038. // }
  7039. // U.MD.D.I.getUserIpBool = function(callback){
  7040. // U.MD.D.I.getUserIP(function(ip){
  7041. // alert("Got IP! :" + ip);
  7042. // });
  7043. //}
  7044. //#endregion
  7045. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7046. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7047. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7048. _userinfo = US.userInfo, //登錄用戶信息
  7049. _userid = US.userInfo.userid //登錄用戶id
  7050. let _iframe;
  7051. let _cid = cid,
  7052. _stage = stage,
  7053. _task = task,
  7054. _tool = tool;
  7055. var _jie = $$("div", {
  7056. "style": {
  7057. "position": "absolute",
  7058. "bottom": "50px",
  7059. "right": "50px",
  7060. "zIndex": "9999",
  7061. "backgroundColor": "#2268bc",
  7062. "color": "#fff",
  7063. "padding": "12px 20px",
  7064. "cursor": "pointer",
  7065. "borderRadius": "4px",
  7066. },
  7067. "innerHTML": "提交作業"
  7068. })
  7069. let aTool = ''
  7070. let _loading = document.createElement('div')
  7071. _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;"
  7072. // _loading.id = "";
  7073. let _lchild = document.createElement('div')
  7074. let _limg = document.createElement('img')
  7075. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7076. _limg.style = "width: 26px;margin-right: 10px;"
  7077. _lchild.appendChild(_limg)
  7078. let _lspan = document.createElement('span')
  7079. _lspan.innerHTML = "上傳中..."
  7080. _lchild.appendChild(_lspan)
  7081. _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%);"
  7082. _loading.appendChild(_lchild)
  7083. var _box = $$('div', {
  7084. "style": {
  7085. "position": "relative",
  7086. "width": "100%",
  7087. "height": "100%",
  7088. },
  7089. })
  7090. _box.appendChild(_loading)
  7091. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7092. switch (str) {
  7093. case "whiteboard":
  7094. aTool = 1;
  7095. _iframe = $$("iframe", {
  7096. "frameborder": "no",
  7097. "border": "0",
  7098. "scrolling ": "no",
  7099. "style": {
  7100. "cssText": "border:0;width:100%;height:100%"
  7101. },
  7102. "src": "https://iwb.cocorobo.hk/"
  7103. })
  7104. _box.appendChild(_iframe);
  7105. _box.appendChild(_jie);
  7106. _formdiv = new U.UF.UI.form(
  7107. "電子白板",
  7108. _box, {
  7109. "id": "whiteboard" + cid + stage + task + tool,
  7110. "style": {
  7111. "width": "90%",
  7112. "height": "90%",
  7113. "overflow": 'hidden'
  7114. },
  7115. "onresize": function () { }
  7116. }, {
  7117. closecallback: function () { }
  7118. }, {
  7119. "style": {
  7120. "height": "36px"
  7121. }
  7122. }).form; //創建窗體
  7123. _taskbar = {
  7124. "id": str + _formdiv.id,
  7125. "style": {
  7126. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7127. },
  7128. "name": "電子白板",
  7129. "forms": _formdiv,
  7130. "click": function () {
  7131. U.MD.D.I.openApplication(str, obj, info);
  7132. }
  7133. }
  7134. break;
  7135. case "mind":
  7136. aTool = 3;
  7137. _iframe = $$("iframe", {
  7138. "frameborder": "no",
  7139. "border": "0",
  7140. "scrolling ": "no",
  7141. "style": {
  7142. "cssText": "border:0;width:100%;height:100%"
  7143. },
  7144. "src": "/kityminder-editor/dist/index.html"
  7145. })
  7146. _box.appendChild(_iframe);
  7147. _box.appendChild(_jie);
  7148. _formdiv = new U.UF.UI.form(
  7149. "思維導圖",
  7150. _box, { //"/jsmind/example/demo.html"
  7151. "id": "mind" + cid + stage + task + tool,
  7152. "style": {
  7153. "width": "90%",
  7154. "height": "90%",
  7155. "overflow": 'hidden'
  7156. },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () { }
  7160. }, {
  7161. "style": {
  7162. "height": "36px"
  7163. }
  7164. }).form; //創建窗體
  7165. _taskbar = {
  7166. "id": str + _formdiv.id,
  7167. "style": {
  7168. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7169. },
  7170. "name": "思維導圖",
  7171. "forms": _formdiv,
  7172. "click": function () {
  7173. U.MD.D.I.openApplication(str, obj, info);
  7174. }
  7175. }
  7176. break;
  7177. case "MindMap":
  7178. aTool = 3;
  7179. _iframe = $$("iframe", {
  7180. "frameborder": "no",
  7181. "border": "0",
  7182. "scrolling ": "no",
  7183. "style": {
  7184. "cssText": "border:0;width:100%;height:100%"
  7185. },
  7186. "src": "//cloud.cocorobo.hk/mind/"
  7187. })
  7188. _box.appendChild(_iframe);
  7189. _box.appendChild(_jie);
  7190. _formdiv = new U.UF.UI.form(
  7191. "思維導圖",
  7192. _box, { //"/jsmind/example/demo.html"
  7193. "id": "mind" + cid + stage + task + tool,
  7194. "style": {
  7195. "width": "90%",
  7196. "height": "90%",
  7197. "overflow": 'hidden'
  7198. },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, {
  7203. "style": {
  7204. "height": "36px"
  7205. }
  7206. }).form; //創建窗體
  7207. _taskbar = {
  7208. "id": str + _formdiv.id,
  7209. "style": {
  7210. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7211. },
  7212. "name": "思維導圖",
  7213. "forms": _formdiv,
  7214. "click": function () {
  7215. U.MD.D.I.openApplication(str, obj, info);
  7216. }
  7217. }
  7218. break;
  7219. case "doc":
  7220. aTool = 6;
  7221. _iframe = $$("iframe", {
  7222. "frameborder": "no",
  7223. "border": "0",
  7224. "scrolling ": "no",
  7225. "style": {
  7226. "cssText": "border:0;width:100%;height:100%"
  7227. },
  7228. "src": "/Office/Word/WordEditArea.htm"
  7229. })
  7230. _box.appendChild(_iframe);
  7231. _box.appendChild(_jie);
  7232. _formdiv = new U.UF.UI.form(
  7233. "協同文檔",
  7234. _box, {
  7235. "id": "doc" + cid + stage + task + tool,
  7236. "style": {
  7237. "width": "90%",
  7238. "height": "90%",
  7239. "overflow": 'hidden'
  7240. },
  7241. "onresize": function () { }
  7242. }, {
  7243. closecallback: function () { }
  7244. }, {
  7245. "style": {
  7246. "height": "36px"
  7247. }
  7248. }).form; //創建窗體
  7249. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7250. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7251. })
  7252. _taskbar = {
  7253. "id": str + _formdiv.id,
  7254. "style": {
  7255. "backgroundImage": "url(/img/icon/doc.png)"
  7256. },
  7257. "name": "協同文檔",
  7258. "forms": _formdiv,
  7259. "click": function () {
  7260. U.MD.D.I.openApplication(str, obj, info);
  7261. }
  7262. }
  7263. break;
  7264. case "mindNetwork": //好友打開
  7265. aTool = 7;
  7266. _iframe = $$("iframe", {
  7267. "webkitallowfullscreen": "",
  7268. "mozallowfullscreen": "",
  7269. "allowfullscreen": "",
  7270. "frameborder": "no",
  7271. "border": "0",
  7272. "scrolling ": "no",
  7273. "style": {
  7274. "cssText": "border:0; width:100%; height:100%;"
  7275. },
  7276. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7277. })
  7278. _box.appendChild(_iframe);
  7279. _box.appendChild(_jie);
  7280. _formdiv = new U.UF.UI.form(
  7281. "思維網格",
  7282. _box, {
  7283. "id": "mindNetwork" + cid + stage + task + tool,
  7284. "style": {
  7285. "width": "90%",
  7286. "height": "90%",
  7287. "overflow": 'hidden'
  7288. },
  7289. "onresize": function () { }
  7290. }, {
  7291. closecallback: function () { }
  7292. }, {
  7293. "style": {
  7294. "height": "36px"
  7295. }
  7296. }).form; //創建窗體
  7297. _taskbar = {
  7298. "id": str + _formdiv.id,
  7299. "style": {
  7300. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7301. },
  7302. "name": "思維網格",
  7303. "forms": _formdiv,
  7304. "click": function () {
  7305. U.MD.D.I.openApplication(str, obj, info);
  7306. }
  7307. }
  7308. break;
  7309. case "courseDesign":
  7310. _iframe = $$("iframe", {
  7311. "webkitallowfullscreen": "",
  7312. "mozallowfullscreen": "",
  7313. "allowfullscreen": "",
  7314. "frameborder": "no",
  7315. "border": "0",
  7316. "scrolling ": "no",
  7317. "style": {
  7318. "cssText": "border:0; width:100%; height:100%;"
  7319. },
  7320. "src": "/course-design-vue"
  7321. })
  7322. _box.appendChild(_iframe);
  7323. _box.appendChild(_jie);
  7324. _formdiv = new U.UF.UI.form(
  7325. "項目設計",
  7326. _box, {
  7327. "id": "courseDesign" + cid + stage + task + tool,
  7328. "style": {
  7329. "width": "90%",
  7330. "height": "90%",
  7331. "overflow": 'hidden'
  7332. },
  7333. "onresize": function () { }
  7334. }, {
  7335. closecallback: function () { }
  7336. }, {
  7337. "style": {
  7338. "height": "36px"
  7339. }
  7340. }).form; //創建窗體
  7341. _taskbar = {
  7342. "id": str + _formdiv.id,
  7343. "style": {
  7344. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7345. },
  7346. "name": "項目設計",
  7347. "forms": _formdiv,
  7348. "click": function () {
  7349. U.MD.D.I.openApplication(str, obj, info);
  7350. }
  7351. }
  7352. break;
  7353. }
  7354. const script1 = document.createElement("script");
  7355. script1.type = "text/javascript";
  7356. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7357. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7358. const script2 = document.createElement("script");
  7359. script2.type = "text/javascript";
  7360. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7361. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7362. const script3 = document.createElement("script");
  7363. script3.type = "text/javascript";
  7364. script3.charset = "UTF-8";
  7365. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7366. const script4 = document.createElement("script");
  7367. script4.type = "text/javascript";
  7368. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7369. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7370. if (_iframe) {
  7371. if (str == 'doc') {
  7372. _iframe = _formdiv.querySelector('iframe')
  7373. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7374. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7375. _iframe.contentWindow.document.body.appendChild(script1);
  7376. _iframe.contentWindow.document.body.appendChild(script2);
  7377. // _iframe.contentWindow.document.body.appendChild(script3);
  7378. _iframe.contentWindow.document.body.appendChild(script4);
  7379. })
  7380. if (onloadListener) {
  7381. _iframe.contentDocument.location.reload()
  7382. } else {
  7383. _iframe.contentDocument.location.reload()
  7384. }
  7385. } else if (str == 'courseDesign') {
  7386. U.UF.DL.iframeLoad(_iframe, function () {
  7387. // _iframe.contentWindow.U.MD.O.W.load();
  7388. // _iframe.contentWindow.document.body.appendChild(script1);
  7389. _iframe.contentWindow.document.body.appendChild(script2);
  7390. _iframe.contentWindow.document.body.appendChild(script4);
  7391. })
  7392. } else if (str == 'mind') {
  7393. _iframe = _formdiv.querySelector('iframe')
  7394. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7395. //
  7396. _iframe.contentWindow.document.body.appendChild(script1);
  7397. _iframe.contentWindow.document.body.appendChild(script2);
  7398. _iframe.contentWindow.document.body.appendChild(script4);
  7399. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7400. })
  7401. if (onloadListener) {
  7402. _iframe.contentDocument.location.reload()
  7403. } else {
  7404. _iframe.contentDocument.location.reload()
  7405. }
  7406. } else if (str == 'whiteboard') {
  7407. _iframe = _formdiv.querySelector('iframe')
  7408. let onloadListener = _iframe.onload = () => {
  7409. _iframe.contentWindow.document.body.appendChild(script1);
  7410. _iframe.contentWindow.document.body.appendChild(script2);
  7411. _iframe.contentWindow.document.body.appendChild(script4);
  7412. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7413. };
  7414. // if (onloadListener) {
  7415. // try {
  7416. // _iframe.src += "?cocorobo="+new Date().getTime()
  7417. // _iframe.contentWindow.document.location.reload()
  7418. // } catch (error) {
  7419. // }
  7420. // } else {
  7421. // _iframe.contentDocument.location.reload()
  7422. // }
  7423. } else {
  7424. _iframe.onload = () => {
  7425. _iframe.contentWindow.document.body.appendChild(script1);
  7426. _iframe.contentWindow.document.body.appendChild(script2);
  7427. // _iframe.contentWindow.document.body.appendChild(script3);
  7428. _iframe.contentWindow.document.body.appendChild(script4);
  7429. };
  7430. }
  7431. _jie.onclick = async () => {
  7432. let text = ''
  7433. if (aTool == 1) {
  7434. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7435. } else if (aTool == 6) {
  7436. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7437. } else if (aTool == 3) {
  7438. text = await U.MD.D.I.getEditorContent(_iframe);
  7439. }
  7440. _loading.style.display = 'flex'
  7441. console.log(_loading);
  7442. var _ajs = _iframe.contentWindow.document.createElement("script");
  7443. _ajs.type = "text/javascript";
  7444. _ajs.innerHTML =
  7445. // 'console.log(' + _loading + ');\n' +
  7446. 'var _js = document.createElement("script");\n' +
  7447. '_js.type="text/javascript";\n' +
  7448. '_js.charset="UTF-8";\n' +
  7449. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7450. "_js.onload = function(){\n" +
  7451. ' var a = document.getElementsByTagName("img")\n' +
  7452. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7453. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7454. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7455. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7456. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7457. "beforeUpload_shishi(file," +
  7458. "'" +
  7459. _userid +
  7460. "'" +
  7461. ", " +
  7462. "'" +
  7463. _cid +
  7464. "'" +
  7465. ", " +
  7466. "'" +
  7467. _stage +
  7468. "'" +
  7469. ", " +
  7470. "'" +
  7471. _task +
  7472. "'" +
  7473. ", " +
  7474. "'" +
  7475. _tool +
  7476. "'" +
  7477. ", " +
  7478. "'" +
  7479. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7480. "'" +
  7481. ", " +
  7482. "'" +
  7483. aTool +
  7484. "'" +
  7485. ", " +
  7486. "`" +
  7487. text +
  7488. "`" +
  7489. ")\n" +
  7490. " });\n" +
  7491. "}\n" +
  7492. "document.head.appendChild(_js);\n";
  7493. _iframe.contentWindow.document.head.appendChild(_ajs);
  7494. }
  7495. }
  7496. //U.MD.D.I.openClick(str);
  7497. //如果有任務欄信息
  7498. // if (_taskbar) {
  7499. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7500. // }
  7501. }
  7502. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7503. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7504. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7505. _userinfo = US.userInfo, //登錄用戶信息
  7506. _userid = US.userInfo.userid //登錄用戶id
  7507. let _iframe;
  7508. let _cid = cid,
  7509. _stage = stage,
  7510. _task = task,
  7511. _tool = tool;
  7512. var _jie = $$("div", {
  7513. "style": {
  7514. "position": "absolute",
  7515. "bottom": "50px",
  7516. "right": "50px",
  7517. "zIndex": "9999",
  7518. "backgroundColor": "#2268bc",
  7519. "color": "#fff",
  7520. "padding": "12px 20px",
  7521. "cursor": "pointer",
  7522. "borderRadius": "4px",
  7523. },
  7524. "innerHTML": "提交作業"
  7525. })
  7526. let aTool = ''
  7527. let _loading = document.createElement('div')
  7528. _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;"
  7529. // _loading.id = "";
  7530. let _lchild = document.createElement('div')
  7531. let _limg = document.createElement('img')
  7532. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7533. _limg.style = "width: 26px;margin-right: 10px;"
  7534. _lchild.appendChild(_limg)
  7535. let _lspan = document.createElement('span')
  7536. _lspan.innerHTML = "上傳中..."
  7537. _lchild.appendChild(_lspan)
  7538. _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%);"
  7539. _loading.appendChild(_lchild)
  7540. let _box = $$('div', {
  7541. "style": {
  7542. "position": "relative",
  7543. "width": "100%",
  7544. "height": "100%",
  7545. },
  7546. })
  7547. _box.appendChild(_loading)
  7548. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7549. switch (str) {
  7550. case "whiteboard":
  7551. aTool = 1;
  7552. _iframe = $$("iframe", {
  7553. "frameborder": "no",
  7554. "border": "0",
  7555. "scrolling ": "no",
  7556. "style": {
  7557. "cssText": "border:0;width:100%;height:100%"
  7558. },
  7559. "src": "https://iwb.cocorobo.hk/"
  7560. })
  7561. _box.appendChild(_iframe);
  7562. _box.appendChild(_jie);
  7563. _formdiv = new U.UF.UI.form(
  7564. "電子白板",
  7565. _box, {
  7566. "id": "whiteboard" + cid + stage + task + tool,
  7567. "style": {
  7568. "width": "90%",
  7569. "height": "90%",
  7570. "overflow": 'hidden'
  7571. },
  7572. "onresize": function () { }
  7573. }, {
  7574. closecallback: function () { }
  7575. }, {
  7576. "style": {
  7577. "height": "36px"
  7578. }
  7579. }).form; //創建窗體
  7580. _taskbar = {
  7581. "id": str + _formdiv.id,
  7582. "style": {
  7583. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7584. },
  7585. "name": "電子白板",
  7586. "forms": _formdiv,
  7587. "click": function () {
  7588. U.MD.D.I.openApplication(str, obj, info);
  7589. }
  7590. }
  7591. break;
  7592. case "mind":
  7593. aTool = 3;
  7594. _iframe = $$("iframe", {
  7595. "frameborder": "no",
  7596. "border": "0",
  7597. "scrolling ": "no",
  7598. "style": {
  7599. "cssText": "border:0;width:100%;height:100%"
  7600. },
  7601. "src": "/kityminder-editor/dist/index.html"
  7602. })
  7603. _box.appendChild(_iframe);
  7604. _box.appendChild(_jie);
  7605. _formdiv = new U.UF.UI.form(
  7606. "思維導圖",
  7607. _box, { //"/jsmind/example/demo.html"
  7608. "id": "mind" + cid + stage + task + tool,
  7609. "style": {
  7610. "width": "90%",
  7611. "height": "90%",
  7612. "overflow": 'hidden'
  7613. },
  7614. "onresize": function () { }
  7615. }, {
  7616. closecallback: function () { }
  7617. }, {
  7618. "style": {
  7619. "height": "36px"
  7620. }
  7621. }).form; //創建窗體
  7622. _taskbar = {
  7623. "id": str + _formdiv.id,
  7624. "style": {
  7625. "backgroundImage": "url(/img/icon/mindMapping.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 "MindMap":
  7635. aTool = 3;
  7636. _iframe = $$("iframe", {
  7637. "frameborder": "no",
  7638. "border": "0",
  7639. "scrolling ": "no",
  7640. "style": {
  7641. "cssText": "border:0;width:100%;height:100%"
  7642. },
  7643. "src": "//cloud.cocorobo.hk/mind/"
  7644. })
  7645. _box.appendChild(_iframe);
  7646. _box.appendChild(_jie);
  7647. _formdiv = new U.UF.UI.form(
  7648. "思維導圖",
  7649. _box, { //"/jsmind/example/demo.html"
  7650. "id": "mind" + cid + stage + task + tool,
  7651. "style": {
  7652. "width": "90%",
  7653. "height": "90%",
  7654. "overflow": 'hidden'
  7655. },
  7656. "onresize": function () { }
  7657. }, {
  7658. closecallback: function () { }
  7659. }, {
  7660. "style": {
  7661. "height": "36px"
  7662. }
  7663. }).form; //創建窗體
  7664. _taskbar = {
  7665. "id": str + _formdiv.id,
  7666. "style": {
  7667. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7668. },
  7669. "name": "思維導圖",
  7670. "forms": _formdiv,
  7671. "click": function () {
  7672. U.MD.D.I.openApplication(str, obj, info);
  7673. }
  7674. }
  7675. break;
  7676. case "doc":
  7677. aTool = 6;
  7678. _iframe = $$("iframe", {
  7679. "frameborder": "no",
  7680. "border": "0",
  7681. "scrolling ": "no",
  7682. "style": {
  7683. "cssText": "border:0;width:100%;height:100%"
  7684. },
  7685. "src": "/Office/Word/WordEditArea.htm"
  7686. })
  7687. _box.appendChild(_iframe);
  7688. _box.appendChild(_jie);
  7689. _formdiv = new U.UF.UI.form(
  7690. "協同文檔",
  7691. _box, {
  7692. "id": "doc" + cid + stage + task + tool,
  7693. "style": {
  7694. "width": "90%",
  7695. "height": "90%",
  7696. "overflow": 'hidden'
  7697. },
  7698. "onresize": function () { }
  7699. }, {
  7700. closecallback: function () { }
  7701. }, {
  7702. "style": {
  7703. "height": "36px"
  7704. }
  7705. }).form; //創建窗體
  7706. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7707. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7708. })
  7709. _taskbar = {
  7710. "id": str + _formdiv.id,
  7711. "style": {
  7712. "backgroundImage": "url(/img/icon/doc.png)"
  7713. },
  7714. "name": "協同文檔",
  7715. "forms": _formdiv,
  7716. "click": function () {
  7717. U.MD.D.I.openApplication(str, obj, info);
  7718. }
  7719. }
  7720. break;
  7721. case "mindNetwork": //好友打開
  7722. aTool = 7;
  7723. _iframe = $$("iframe", {
  7724. "webkitallowfullscreen": "",
  7725. "mozallowfullscreen": "",
  7726. "allowfullscreen": "",
  7727. "frameborder": "no",
  7728. "border": "0",
  7729. "scrolling ": "no",
  7730. "style": {
  7731. "cssText": "border:0; width:100%; height:100%;"
  7732. },
  7733. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7734. })
  7735. _box.appendChild(_iframe);
  7736. _box.appendChild(_jie);
  7737. _formdiv = new U.UF.UI.form(
  7738. "思維網格",
  7739. _box, {
  7740. "id": "mindNetwork" + cid + stage + task + tool,
  7741. "style": {
  7742. "width": "90%",
  7743. "height": "90%",
  7744. "overflow": 'hidden'
  7745. },
  7746. "onresize": function () { }
  7747. }, {
  7748. closecallback: function () { }
  7749. }, {
  7750. "style": {
  7751. "height": "36px"
  7752. }
  7753. }).form; //創建窗體
  7754. _taskbar = {
  7755. "id": str + _formdiv.id,
  7756. "style": {
  7757. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7758. },
  7759. "name": "思維網格",
  7760. "forms": _formdiv,
  7761. "click": function () {
  7762. U.MD.D.I.openApplication(str, obj, info);
  7763. }
  7764. }
  7765. break;
  7766. case "courseDesign":
  7767. _iframe = $$("iframe", {
  7768. "webkitallowfullscreen": "",
  7769. "mozallowfullscreen": "",
  7770. "allowfullscreen": "",
  7771. "frameborder": "no",
  7772. "border": "0",
  7773. "scrolling ": "no",
  7774. "style": {
  7775. "cssText": "border:0; width:100%; height:100%;"
  7776. },
  7777. "src": "/course-design-vue"
  7778. })
  7779. _box.appendChild(_iframe);
  7780. _box.appendChild(_jie);
  7781. _formdiv = new U.UF.UI.form(
  7782. "項目設計",
  7783. _box, {
  7784. "id": "courseDesign" + cid + stage + task + tool,
  7785. "style": {
  7786. "width": "90%",
  7787. "height": "90%",
  7788. "overflow": 'hidden'
  7789. },
  7790. "onresize": function () { }
  7791. }, {
  7792. closecallback: function () { }
  7793. }, {
  7794. "style": {
  7795. "height": "36px"
  7796. }
  7797. }).form; //創建窗體
  7798. _taskbar = {
  7799. "id": str + _formdiv.id,
  7800. "style": {
  7801. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7802. },
  7803. "name": "項目設計",
  7804. "forms": _formdiv,
  7805. "click": function () {
  7806. U.MD.D.I.openApplication(str, obj, info);
  7807. }
  7808. }
  7809. break;
  7810. }
  7811. const script1 = document.createElement("script");
  7812. script1.type = "text/javascript";
  7813. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7814. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7815. const script2 = document.createElement("script");
  7816. script2.type = "text/javascript";
  7817. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7818. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7819. const script3 = document.createElement("script");
  7820. script3.type = "text/javascript";
  7821. script3.charset = "UTF-8";
  7822. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7823. const script4 = document.createElement("script");
  7824. script4.type = "text/javascript";
  7825. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7826. script4.src = window.origin + "/js/Common/jietu2E.js";
  7827. if (_iframe) {
  7828. if (str == 'doc') {
  7829. _iframe = _formdiv.querySelector('iframe')
  7830. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7831. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7832. _iframe.contentWindow.document.body.appendChild(script1);
  7833. _iframe.contentWindow.document.body.appendChild(script2);
  7834. // _iframe.contentWindow.document.body.appendChild(script3);
  7835. _iframe.contentWindow.document.body.appendChild(script4);
  7836. })
  7837. if (onloadListener) {
  7838. _iframe.contentDocument.location.reload()
  7839. } else {
  7840. _iframe.contentDocument.location.reload()
  7841. }
  7842. } else if (str == 'courseDesign') {
  7843. U.UF.DL.iframeLoad(_iframe, function () {
  7844. // _iframe.contentWindow.U.MD.O.W.load();
  7845. // _iframe.contentWindow.document.body.appendChild(script1);
  7846. _iframe.contentWindow.document.body.appendChild(script2);
  7847. _iframe.contentWindow.document.body.appendChild(script4);
  7848. })
  7849. } else if (str == 'mind') {
  7850. _iframe = _formdiv.querySelector('iframe')
  7851. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7852. //
  7853. _iframe.contentWindow.document.body.appendChild(script1);
  7854. _iframe.contentWindow.document.body.appendChild(script2);
  7855. _iframe.contentWindow.document.body.appendChild(script4);
  7856. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7857. })
  7858. if (onloadListener) {
  7859. _iframe.contentDocument.location.reload()
  7860. } else {
  7861. _iframe.contentDocument.location.reload()
  7862. }
  7863. } else if (str == 'whiteboard') {
  7864. _iframe = _formdiv.querySelector('iframe')
  7865. let onloadListener = _iframe.onload = () => {
  7866. _iframe.contentWindow.document.body.appendChild(script1);
  7867. _iframe.contentWindow.document.body.appendChild(script2);
  7868. _iframe.contentWindow.document.body.appendChild(script4);
  7869. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7870. };
  7871. // if (onloadListener) {
  7872. // try {
  7873. // _iframe.src += "?cocorobo="+new Date().getTime()
  7874. // _iframe.contentWindow.document.location.reload()
  7875. // } catch (error) {
  7876. // }
  7877. // } else {
  7878. // _iframe.contentDocument.location.reload()
  7879. // }
  7880. } else {
  7881. _iframe.onload = () => {
  7882. _iframe.contentWindow.document.body.appendChild(script1);
  7883. _iframe.contentWindow.document.body.appendChild(script2);
  7884. // _iframe.contentWindow.document.body.appendChild(script3);
  7885. _iframe.contentWindow.document.body.appendChild(script4);
  7886. };
  7887. }
  7888. _jie.onclick = async () => {
  7889. let text = ''
  7890. if (aTool == 1) {
  7891. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7892. } else if (aTool == 6) {
  7893. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7894. } else if (aTool == 3) {
  7895. text = await U.MD.D.I.getEditorContent(_iframe);
  7896. }
  7897. _loading.style.display = 'flex'
  7898. console.log(_loading);
  7899. var _ajs = _iframe.contentWindow.document.createElement("script");
  7900. _ajs.type = "text/javascript";
  7901. _ajs.innerHTML =
  7902. // 'console.log(' + _loading + ');\n' +
  7903. 'var _js = document.createElement("script");\n' +
  7904. '_js.type="text/javascript";\n' +
  7905. '_js.charset="UTF-8";\n' +
  7906. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7907. "_js.onload = function(){\n" +
  7908. ' var a = document.getElementsByTagName("img")\n' +
  7909. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7910. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7911. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7912. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7913. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7914. "beforeUpload_shishi(file," +
  7915. "'" +
  7916. _userid +
  7917. "'" +
  7918. ", " +
  7919. "'" +
  7920. _cid +
  7921. "'" +
  7922. ", " +
  7923. "'" +
  7924. _stage +
  7925. "'" +
  7926. ", " +
  7927. "'" +
  7928. _task +
  7929. "'" +
  7930. ", " +
  7931. "'" +
  7932. _tool +
  7933. "'" +
  7934. ", " +
  7935. "'" +
  7936. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7937. "'" +
  7938. ", " +
  7939. "'" +
  7940. aTool +
  7941. "'" +
  7942. ", " +
  7943. "`" +
  7944. text +
  7945. "`" +
  7946. ")\n" +
  7947. " });\n" +
  7948. "}\n" +
  7949. "document.head.appendChild(_js);\n";
  7950. _iframe.contentWindow.document.head.appendChild(_ajs);
  7951. }
  7952. }
  7953. //U.MD.D.I.openClick(str);
  7954. //如果有任務欄信息
  7955. // if (_taskbar) {
  7956. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7957. // }
  7958. }
  7959. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7960. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7961. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7962. _userid = student.userid, //登錄用戶id
  7963. _username = student.student //用戶名字
  7964. let _iframe;
  7965. let _cid = cid,
  7966. _stage = stage,
  7967. _task = task,
  7968. _tool = tool;
  7969. var _jie = $$("div", {
  7970. "style": {
  7971. "position": "absolute",
  7972. "bottom": "50px",
  7973. "right": "50px",
  7974. "zIndex": "9999",
  7975. "backgroundColor": "#2268bc",
  7976. "color": "#fff",
  7977. "padding": "12px 20px",
  7978. "cursor": "pointer",
  7979. "borderRadius": "4px",
  7980. },
  7981. "innerHTML": "提交作業"
  7982. })
  7983. let aTool = ''
  7984. let _loading = document.createElement('div')
  7985. _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;"
  7986. // _loading.id = "";
  7987. let _lchild = document.createElement('div')
  7988. let _limg = document.createElement('img')
  7989. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7990. _limg.style = "width: 26px;margin-right: 10px;"
  7991. _lchild.appendChild(_limg)
  7992. let _lspan = document.createElement('span')
  7993. _lspan.innerHTML = "上傳中..."
  7994. _lchild.appendChild(_lspan)
  7995. _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%);"
  7996. _loading.appendChild(_lchild)
  7997. var _box = $$('div', {
  7998. "style": {
  7999. "position": "relative",
  8000. "width": "100%",
  8001. "height": "100%",
  8002. },
  8003. })
  8004. _box.appendChild(_loading)
  8005. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8006. switch (str) {
  8007. case "whiteboard":
  8008. aTool = 1;
  8009. _iframe = $$("iframe", {
  8010. "frameborder": "no",
  8011. "border": "0",
  8012. "scrolling ": "no",
  8013. "style": {
  8014. "cssText": "border:0;width:100%;height:100%"
  8015. },
  8016. "src": "https://iwb.cocorobo.hk/"
  8017. })
  8018. _box.appendChild(_iframe);
  8019. _box.appendChild(_jie);
  8020. _formdiv = new U.UF.UI.form(
  8021. "電子白板-" + _username,
  8022. _box, {
  8023. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8024. "style": {
  8025. "width": "90%",
  8026. "height": "90%",
  8027. "overflow": 'hidden'
  8028. },
  8029. "onresize": function () { }
  8030. }, {
  8031. closecallback: function () { }
  8032. }, {
  8033. "style": {
  8034. "height": "36px"
  8035. }
  8036. }).form; //創建窗體
  8037. _taskbar = {
  8038. "id": str + _formdiv.id,
  8039. "style": {
  8040. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8041. },
  8042. "name": "電子白板",
  8043. "forms": _formdiv,
  8044. "click": function () {
  8045. U.MD.D.I.openApplication(str, obj, info);
  8046. }
  8047. }
  8048. break;
  8049. case "mind":
  8050. aTool = 3;
  8051. _iframe = $$("iframe", {
  8052. "frameborder": "no",
  8053. "border": "0",
  8054. "scrolling ": "no",
  8055. "style": {
  8056. "cssText": "border:0;width:100%;height:100%"
  8057. },
  8058. "src": "/kityminder-editor/dist/index.html"
  8059. })
  8060. _box.appendChild(_iframe);
  8061. _box.appendChild(_jie);
  8062. _formdiv = new U.UF.UI.form(
  8063. "思維導圖-" + _username,
  8064. _box, { //"/jsmind/example/demo.html"
  8065. "id": "mind" + cid + stage + task + tool + _userid,
  8066. "style": {
  8067. "width": "90%",
  8068. "height": "90%",
  8069. "overflow": 'hidden'
  8070. },
  8071. "onresize": function () { }
  8072. }, {
  8073. closecallback: function () { }
  8074. }, {
  8075. "style": {
  8076. "height": "36px"
  8077. }
  8078. }).form; //創建窗體
  8079. _taskbar = {
  8080. "id": str + _formdiv.id,
  8081. "style": {
  8082. "backgroundImage": "url(/img/icon/mindMapping.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 "MindMap":
  8092. aTool = 3;
  8093. _iframe = $$("iframe", {
  8094. "frameborder": "no",
  8095. "border": "0",
  8096. "scrolling ": "no",
  8097. "style": {
  8098. "cssText": "border:0;width:100%;height:100%"
  8099. },
  8100. "src": "//cloud.cocorobo.hk/mind/"
  8101. })
  8102. _box.appendChild(_iframe);
  8103. _box.appendChild(_jie);
  8104. _formdiv = new U.UF.UI.form(
  8105. "思維導圖-" + _username,
  8106. _box, { //"/jsmind/example/demo.html"
  8107. "id": "mind" + cid + stage + task + tool + _userid,
  8108. "style": {
  8109. "width": "90%",
  8110. "height": "90%",
  8111. "overflow": 'hidden'
  8112. },
  8113. "onresize": function () { }
  8114. }, {
  8115. closecallback: function () { }
  8116. }, {
  8117. "style": {
  8118. "height": "36px"
  8119. }
  8120. }).form; //創建窗體
  8121. _taskbar = {
  8122. "id": str + _formdiv.id,
  8123. "style": {
  8124. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8125. },
  8126. "name": "思維導圖",
  8127. "forms": _formdiv,
  8128. "click": function () {
  8129. U.MD.D.I.openApplication(str, obj, info);
  8130. }
  8131. }
  8132. break;
  8133. case "doc":
  8134. aTool = 6;
  8135. _iframe = $$("iframe", {
  8136. "frameborder": "no",
  8137. "border": "0",
  8138. "scrolling ": "no",
  8139. "style": {
  8140. "cssText": "border:0;width:100%;height:100%"
  8141. },
  8142. "src": "/Office/Word/WordEditArea.htm"
  8143. })
  8144. _box.appendChild(_iframe);
  8145. _box.appendChild(_jie);
  8146. _formdiv = new U.UF.UI.form(
  8147. "協同文檔-" + _username,
  8148. _box, {
  8149. "id": "doc" + cid + stage + task + tool + _userid,
  8150. "style": {
  8151. "width": "90%",
  8152. "height": "90%",
  8153. "overflow": 'hidden'
  8154. },
  8155. "onresize": function () { }
  8156. }, {
  8157. closecallback: function () { }
  8158. }, {
  8159. "style": {
  8160. "height": "36px"
  8161. }
  8162. }).form; //創建窗體
  8163. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8164. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8165. })
  8166. _taskbar = {
  8167. "id": str + _formdiv.id,
  8168. "style": {
  8169. "backgroundImage": "url(/img/icon/doc.png)"
  8170. },
  8171. "name": "協同文檔",
  8172. "forms": _formdiv,
  8173. "click": function () {
  8174. U.MD.D.I.openApplication(str, obj, info);
  8175. }
  8176. }
  8177. break;
  8178. case "mindNetwork": //好友打開
  8179. aTool = 7;
  8180. _iframe = $$("iframe", {
  8181. "webkitallowfullscreen": "",
  8182. "mozallowfullscreen": "",
  8183. "allowfullscreen": "",
  8184. "frameborder": "no",
  8185. "border": "0",
  8186. "scrolling ": "no",
  8187. "style": {
  8188. "cssText": "border:0; width:100%; height:100%;"
  8189. },
  8190. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8191. })
  8192. _box.appendChild(_iframe);
  8193. _box.appendChild(_jie);
  8194. _formdiv = new U.UF.UI.form(
  8195. "思維網格-" + _username,
  8196. _box, {
  8197. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8198. "style": {
  8199. "width": "90%",
  8200. "height": "90%",
  8201. "overflow": 'hidden'
  8202. },
  8203. "onresize": function () { }
  8204. }, {
  8205. closecallback: function () { }
  8206. }, {
  8207. "style": {
  8208. "height": "36px"
  8209. }
  8210. }).form; //創建窗體
  8211. _taskbar = {
  8212. "id": str + _formdiv.id,
  8213. "style": {
  8214. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8215. },
  8216. "name": "思維網格",
  8217. "forms": _formdiv,
  8218. "click": function () {
  8219. U.MD.D.I.openApplication(str, obj, info);
  8220. }
  8221. }
  8222. break;
  8223. case "courseDesign":
  8224. _iframe = $$("iframe", {
  8225. "webkitallowfullscreen": "",
  8226. "mozallowfullscreen": "",
  8227. "allowfullscreen": "",
  8228. "frameborder": "no",
  8229. "border": "0",
  8230. "scrolling ": "no",
  8231. "style": {
  8232. "cssText": "border:0; width:100%; height:100%;"
  8233. },
  8234. "src": "/course-design-vue"
  8235. })
  8236. _box.appendChild(_iframe);
  8237. _box.appendChild(_jie);
  8238. _formdiv = new U.UF.UI.form(
  8239. "項目設計-" + _username,
  8240. _box, {
  8241. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8242. "style": {
  8243. "width": "90%",
  8244. "height": "90%",
  8245. "overflow": 'hidden'
  8246. },
  8247. "onresize": function () { }
  8248. }, {
  8249. closecallback: function () { }
  8250. }, {
  8251. "style": {
  8252. "height": "36px"
  8253. }
  8254. }).form; //創建窗體
  8255. _taskbar = {
  8256. "id": str + _formdiv.id,
  8257. "style": {
  8258. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8259. },
  8260. "name": "項目設計",
  8261. "forms": _formdiv,
  8262. "click": function () {
  8263. U.MD.D.I.openApplication(str, obj, info);
  8264. }
  8265. }
  8266. break;
  8267. }
  8268. const script1 = document.createElement("script");
  8269. script1.type = "text/javascript";
  8270. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8271. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8272. const script2 = document.createElement("script");
  8273. script2.type = "text/javascript";
  8274. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8275. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8276. const script3 = document.createElement("script");
  8277. script3.type = "text/javascript";
  8278. script3.charset = "UTF-8";
  8279. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8280. const script4 = document.createElement("script");
  8281. script4.type = "text/javascript";
  8282. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8283. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8284. if (_iframe) {
  8285. if (str == 'doc') {
  8286. _iframe = _formdiv.querySelector('iframe')
  8287. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8288. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8289. _iframe.contentWindow.document.body.appendChild(script1);
  8290. _iframe.contentWindow.document.body.appendChild(script2);
  8291. // _iframe.contentWindow.document.body.appendChild(script3);
  8292. _iframe.contentWindow.document.body.appendChild(script4);
  8293. })
  8294. if (onloadListener) {
  8295. _iframe.contentDocument.location.reload()
  8296. } else {
  8297. _iframe.contentDocument.location.reload()
  8298. }
  8299. } else if (str == 'courseDesign') {
  8300. U.UF.DL.iframeLoad(_iframe, function () {
  8301. // _iframe.contentWindow.U.MD.O.W.load();
  8302. // _iframe.contentWindow.document.body.appendChild(script1);
  8303. _iframe.contentWindow.document.body.appendChild(script2);
  8304. _iframe.contentWindow.document.body.appendChild(script4);
  8305. })
  8306. } else if (str == 'mind') {
  8307. _iframe = _formdiv.querySelector('iframe')
  8308. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8309. //
  8310. _iframe.contentWindow.document.body.appendChild(script1);
  8311. _iframe.contentWindow.document.body.appendChild(script2);
  8312. _iframe.contentWindow.document.body.appendChild(script4);
  8313. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8314. })
  8315. if (onloadListener) {
  8316. _iframe.contentDocument.location.reload()
  8317. } else {
  8318. _iframe.contentDocument.location.reload()
  8319. }
  8320. } else if (str == 'whiteboard') {
  8321. _iframe = _formdiv.querySelector('iframe')
  8322. let onloadListener = _iframe.onload = () => {
  8323. _iframe.contentWindow.document.body.appendChild(script1);
  8324. _iframe.contentWindow.document.body.appendChild(script2);
  8325. _iframe.contentWindow.document.body.appendChild(script4);
  8326. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8327. };
  8328. // if (onloadListener) {
  8329. // try {
  8330. // _iframe.src += "?cocorobo="+new Date().getTime()
  8331. // _iframe.contentWindow.document.location.reload()
  8332. // } catch (error) {
  8333. // }
  8334. // } else {
  8335. // _iframe.contentDocument.location.reload()
  8336. // }
  8337. } else {
  8338. _iframe.onload = () => {
  8339. _iframe.contentWindow.document.body.appendChild(script1);
  8340. _iframe.contentWindow.document.body.appendChild(script2);
  8341. // _iframe.contentWindow.document.body.appendChild(script3);
  8342. _iframe.contentWindow.document.body.appendChild(script4);
  8343. };
  8344. }
  8345. _jie.onclick = async () => {
  8346. let text = ''
  8347. if (aTool == 1) {
  8348. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8349. } else if (aTool == 6) {
  8350. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8351. } else if (aTool == 3) {
  8352. text = await U.MD.D.I.getEditorContent(_iframe);
  8353. }
  8354. _loading.style.display = 'flex'
  8355. console.log(_loading);
  8356. var _ajs = _iframe.contentWindow.document.createElement("script");
  8357. _ajs.type = "text/javascript";
  8358. _ajs.innerHTML =
  8359. // 'console.log(' + _loading + ');\n' +
  8360. 'var _js = document.createElement("script");\n' +
  8361. '_js.type="text/javascript";\n' +
  8362. '_js.charset="UTF-8";\n' +
  8363. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8364. "_js.onload = function(){\n" +
  8365. ' var a = document.getElementsByTagName("img")\n' +
  8366. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8367. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8368. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8369. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8370. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8371. "beforeUpload_shishi(file," +
  8372. "'" +
  8373. _userid +
  8374. "'" +
  8375. ", " +
  8376. "'" +
  8377. _cid +
  8378. "'" +
  8379. ", " +
  8380. "'" +
  8381. _stage +
  8382. "'" +
  8383. ", " +
  8384. "'" +
  8385. _task +
  8386. "'" +
  8387. ", " +
  8388. "'" +
  8389. _tool +
  8390. "'" +
  8391. ", " +
  8392. "'" +
  8393. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8394. "'" +
  8395. ", " +
  8396. "'" +
  8397. aTool +
  8398. "'" +
  8399. ", " +
  8400. "`" +
  8401. text +
  8402. "`" +
  8403. ")\n" +
  8404. " });\n" +
  8405. "}\n" +
  8406. "document.head.appendChild(_js);\n";
  8407. _iframe.contentWindow.document.head.appendChild(_ajs);
  8408. }
  8409. }
  8410. }
  8411. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8412. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8413. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8414. _userid = student.userid, //登錄用戶id
  8415. _username = student.student //用戶名字
  8416. let _iframe;
  8417. let _cid = cid,
  8418. _stage = stage,
  8419. _task = task,
  8420. _tool = tool;
  8421. var _jie = $$("div", {
  8422. "style": {
  8423. "position": "absolute",
  8424. "bottom": "50px",
  8425. "right": "50px",
  8426. "zIndex": "9999",
  8427. "backgroundColor": "#2268bc",
  8428. "color": "#fff",
  8429. "padding": "12px 20px",
  8430. "cursor": "pointer",
  8431. "borderRadius": "4px",
  8432. },
  8433. "innerHTML": "提交作業"
  8434. })
  8435. let aTool = ''
  8436. let _loading = document.createElement('div')
  8437. _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;"
  8438. // _loading.id = "";
  8439. let _lchild = document.createElement('div')
  8440. let _limg = document.createElement('img')
  8441. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8442. _limg.style = "width: 26px;margin-right: 10px;"
  8443. _lchild.appendChild(_limg)
  8444. let _lspan = document.createElement('span')
  8445. _lspan.innerHTML = "上傳中..."
  8446. _lchild.appendChild(_lspan)
  8447. _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%);"
  8448. _loading.appendChild(_lchild)
  8449. var _box = $$('div', {
  8450. "style": {
  8451. "position": "relative",
  8452. "width": "100%",
  8453. "height": "100%",
  8454. },
  8455. })
  8456. _box.appendChild(_loading)
  8457. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8458. switch (str) {
  8459. case "whiteboard":
  8460. aTool = 1;
  8461. _iframe = $$("iframe", {
  8462. "frameborder": "no",
  8463. "border": "0",
  8464. "scrolling ": "no",
  8465. "style": {
  8466. "cssText": "border:0;width:100%;height:100%"
  8467. },
  8468. "src": "https://iwb.cocorobo.hk/"
  8469. })
  8470. _box.appendChild(_iframe);
  8471. _box.appendChild(_jie);
  8472. _formdiv = new U.UF.UI.form(
  8473. "電子白板-" + _username,
  8474. _box, {
  8475. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8476. "style": {
  8477. "width": "90%",
  8478. "height": "90%",
  8479. "overflow": 'hidden'
  8480. },
  8481. "onresize": function () { }
  8482. }, {
  8483. closecallback: function () { }
  8484. }, {
  8485. "style": {
  8486. "height": "36px"
  8487. }
  8488. }).form; //創建窗體
  8489. _taskbar = {
  8490. "id": str + _formdiv.id,
  8491. "style": {
  8492. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8493. },
  8494. "name": "電子白板",
  8495. "forms": _formdiv,
  8496. "click": function () {
  8497. U.MD.D.I.openApplication(str, obj, info);
  8498. }
  8499. }
  8500. break;
  8501. case "mind":
  8502. aTool = 3;
  8503. _iframe = $$("iframe", {
  8504. "frameborder": "no",
  8505. "border": "0",
  8506. "scrolling ": "no",
  8507. "style": {
  8508. "cssText": "border:0;width:100%;height:100%"
  8509. },
  8510. "src": "/kityminder-editor/dist/index.html"
  8511. })
  8512. _box.appendChild(_iframe);
  8513. _box.appendChild(_jie);
  8514. _formdiv = new U.UF.UI.form(
  8515. "思維導圖-" + _username,
  8516. _box, { //"/jsmind/example/demo.html"
  8517. "id": "mind" + cid + stage + task + tool + _userid,
  8518. "style": {
  8519. "width": "90%",
  8520. "height": "90%",
  8521. "overflow": 'hidden'
  8522. },
  8523. "onresize": function () { }
  8524. }, {
  8525. closecallback: function () { }
  8526. }, {
  8527. "style": {
  8528. "height": "36px"
  8529. }
  8530. }).form; //創建窗體
  8531. _taskbar = {
  8532. "id": str + _formdiv.id,
  8533. "style": {
  8534. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8535. },
  8536. "name": "思維導圖",
  8537. "forms": _formdiv,
  8538. "click": function () {
  8539. U.MD.D.I.openApplication(str, obj, info);
  8540. }
  8541. }
  8542. break;
  8543. case "MindMap":
  8544. aTool = 3;
  8545. _iframe = $$("iframe", {
  8546. "frameborder": "no",
  8547. "border": "0",
  8548. "scrolling ": "no",
  8549. "style": {
  8550. "cssText": "border:0;width:100%;height:100%"
  8551. },
  8552. "src": "//cloud.cocorobo.hk/mind/"
  8553. })
  8554. _box.appendChild(_iframe);
  8555. _box.appendChild(_jie);
  8556. _formdiv = new U.UF.UI.form(
  8557. "思維導圖-" + _username,
  8558. _box, { //"/jsmind/example/demo.html"
  8559. "id": "mind" + cid + stage + task + tool + _userid,
  8560. "style": {
  8561. "width": "90%",
  8562. "height": "90%",
  8563. "overflow": 'hidden'
  8564. },
  8565. "onresize": function () { }
  8566. }, {
  8567. closecallback: function () { }
  8568. }, {
  8569. "style": {
  8570. "height": "36px"
  8571. }
  8572. }).form; //創建窗體
  8573. _taskbar = {
  8574. "id": str + _formdiv.id,
  8575. "style": {
  8576. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8577. },
  8578. "name": "思維導圖",
  8579. "forms": _formdiv,
  8580. "click": function () {
  8581. U.MD.D.I.openApplication(str, obj, info);
  8582. }
  8583. }
  8584. break;
  8585. case "doc":
  8586. aTool = 6;
  8587. _iframe = $$("iframe", {
  8588. "frameborder": "no",
  8589. "border": "0",
  8590. "scrolling ": "no",
  8591. "style": {
  8592. "cssText": "border:0;width:100%;height:100%"
  8593. },
  8594. "src": "/Office/Word/WordEditArea.htm"
  8595. })
  8596. _box.appendChild(_iframe);
  8597. _box.appendChild(_jie);
  8598. _formdiv = new U.UF.UI.form(
  8599. "協同文檔-" + _username,
  8600. _box, {
  8601. "id": "doc" + cid + stage + task + tool + _userid,
  8602. "style": {
  8603. "width": "90%",
  8604. "height": "90%",
  8605. "overflow": 'hidden'
  8606. },
  8607. "onresize": function () { }
  8608. }, {
  8609. closecallback: function () { }
  8610. }, {
  8611. "style": {
  8612. "height": "36px"
  8613. }
  8614. }).form; //創建窗體
  8615. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8616. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8617. })
  8618. _taskbar = {
  8619. "id": str + _formdiv.id,
  8620. "style": {
  8621. "backgroundImage": "url(/img/icon/doc.png)"
  8622. },
  8623. "name": "協同文檔",
  8624. "forms": _formdiv,
  8625. "click": function () {
  8626. U.MD.D.I.openApplication(str, obj, info);
  8627. }
  8628. }
  8629. break;
  8630. case "mindNetwork": //好友打開
  8631. aTool = 7;
  8632. _iframe = $$("iframe", {
  8633. "webkitallowfullscreen": "",
  8634. "mozallowfullscreen": "",
  8635. "allowfullscreen": "",
  8636. "frameborder": "no",
  8637. "border": "0",
  8638. "scrolling ": "no",
  8639. "style": {
  8640. "cssText": "border:0; width:100%; height:100%;"
  8641. },
  8642. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8643. })
  8644. _box.appendChild(_iframe);
  8645. _box.appendChild(_jie);
  8646. _formdiv = new U.UF.UI.form(
  8647. "思維網格-" + _username,
  8648. _box, {
  8649. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8650. "style": {
  8651. "width": "90%",
  8652. "height": "90%",
  8653. "overflow": 'hidden'
  8654. },
  8655. "onresize": function () { }
  8656. }, {
  8657. closecallback: function () { }
  8658. }, {
  8659. "style": {
  8660. "height": "36px"
  8661. }
  8662. }).form; //創建窗體
  8663. _taskbar = {
  8664. "id": str + _formdiv.id,
  8665. "style": {
  8666. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8667. },
  8668. "name": "思維網格",
  8669. "forms": _formdiv,
  8670. "click": function () {
  8671. U.MD.D.I.openApplication(str, obj, info);
  8672. }
  8673. }
  8674. break;
  8675. case "courseDesign":
  8676. _iframe = $$("iframe", {
  8677. "webkitallowfullscreen": "",
  8678. "mozallowfullscreen": "",
  8679. "allowfullscreen": "",
  8680. "frameborder": "no",
  8681. "border": "0",
  8682. "scrolling ": "no",
  8683. "style": {
  8684. "cssText": "border:0; width:100%; height:100%;"
  8685. },
  8686. "src": "/course-design-vue"
  8687. })
  8688. _box.appendChild(_iframe);
  8689. _box.appendChild(_jie);
  8690. _formdiv = new U.UF.UI.form(
  8691. "項目設計-" + _username,
  8692. _box, {
  8693. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8694. "style": {
  8695. "width": "90%",
  8696. "height": "90%",
  8697. "overflow": 'hidden'
  8698. },
  8699. "onresize": function () { }
  8700. }, {
  8701. closecallback: function () { }
  8702. }, {
  8703. "style": {
  8704. "height": "36px"
  8705. }
  8706. }).form; //創建窗體
  8707. _taskbar = {
  8708. "id": str + _formdiv.id,
  8709. "style": {
  8710. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8711. },
  8712. "name": "項目設計",
  8713. "forms": _formdiv,
  8714. "click": function () {
  8715. U.MD.D.I.openApplication(str, obj, info);
  8716. }
  8717. }
  8718. break;
  8719. }
  8720. const script1 = document.createElement("script");
  8721. script1.type = "text/javascript";
  8722. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8723. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8724. const script2 = document.createElement("script");
  8725. script2.type = "text/javascript";
  8726. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8727. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8728. const script3 = document.createElement("script");
  8729. script3.type = "text/javascript";
  8730. script3.charset = "UTF-8";
  8731. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8732. const script4 = document.createElement("script");
  8733. script4.type = "text/javascript";
  8734. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8735. script4.src = window.origin + "/js/Common/jietu2E.js";
  8736. if (_iframe) {
  8737. if (str == 'doc') {
  8738. _iframe = _formdiv.querySelector('iframe')
  8739. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8740. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8741. _iframe.contentWindow.document.body.appendChild(script1);
  8742. _iframe.contentWindow.document.body.appendChild(script2);
  8743. // _iframe.contentWindow.document.body.appendChild(script3);
  8744. _iframe.contentWindow.document.body.appendChild(script4);
  8745. })
  8746. if (onloadListener) {
  8747. _iframe.contentDocument.location.reload()
  8748. } else {
  8749. _iframe.contentDocument.location.reload()
  8750. }
  8751. } else if (str == 'courseDesign') {
  8752. U.UF.DL.iframeLoad(_iframe, function () {
  8753. // _iframe.contentWindow.U.MD.O.W.load();
  8754. // _iframe.contentWindow.document.body.appendChild(script1);
  8755. _iframe.contentWindow.document.body.appendChild(script2);
  8756. _iframe.contentWindow.document.body.appendChild(script4);
  8757. })
  8758. } else if (str == 'mind') {
  8759. _iframe = _formdiv.querySelector('iframe')
  8760. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8761. //
  8762. _iframe.contentWindow.document.body.appendChild(script1);
  8763. _iframe.contentWindow.document.body.appendChild(script2);
  8764. _iframe.contentWindow.document.body.appendChild(script4);
  8765. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8766. })
  8767. if (onloadListener) {
  8768. _iframe.contentDocument.location.reload()
  8769. } else {
  8770. _iframe.contentDocument.location.reload()
  8771. }
  8772. } else if (str == 'whiteboard') {
  8773. _iframe = _formdiv.querySelector('iframe')
  8774. let onloadListener = _iframe.onload = () => {
  8775. _iframe.contentWindow.document.body.appendChild(script1);
  8776. _iframe.contentWindow.document.body.appendChild(script2);
  8777. _iframe.contentWindow.document.body.appendChild(script4);
  8778. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8779. };
  8780. // if (onloadListener) {
  8781. // try {
  8782. // _iframe.src += "?cocorobo="+new Date().getTime()
  8783. // _iframe.contentWindow.document.location.reload()
  8784. // } catch (error) {
  8785. // }
  8786. // } else {
  8787. // _iframe.contentDocument.location.reload()
  8788. // }
  8789. } else {
  8790. _iframe.onload = () => {
  8791. _iframe.contentWindow.document.body.appendChild(script1);
  8792. _iframe.contentWindow.document.body.appendChild(script2);
  8793. // _iframe.contentWindow.document.body.appendChild(script3);
  8794. _iframe.contentWindow.document.body.appendChild(script4);
  8795. };
  8796. }
  8797. _jie.onclick = async () => {
  8798. let text = ''
  8799. if (aTool == 1) {
  8800. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8801. } else if (aTool == 6) {
  8802. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8803. } else if (aTool == 3) {
  8804. text = await U.MD.D.I.getEditorContent(_iframe);
  8805. }
  8806. _loading.style.display = 'flex'
  8807. console.log(_loading);
  8808. var _ajs = _iframe.contentWindow.document.createElement("script");
  8809. _ajs.type = "text/javascript";
  8810. _ajs.innerHTML =
  8811. // 'console.log(' + _loading + ');\n' +
  8812. 'var _js = document.createElement("script");\n' +
  8813. '_js.type="text/javascript";\n' +
  8814. '_js.charset="UTF-8";\n' +
  8815. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8816. "_js.onload = function(){\n" +
  8817. ' var a = document.getElementsByTagName("img")\n' +
  8818. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8819. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8820. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8821. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8822. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8823. "beforeUpload_shishi(file," +
  8824. "'" +
  8825. _userid +
  8826. "'" +
  8827. ", " +
  8828. "'" +
  8829. _cid +
  8830. "'" +
  8831. ", " +
  8832. "'" +
  8833. _stage +
  8834. "'" +
  8835. ", " +
  8836. "'" +
  8837. _task +
  8838. "'" +
  8839. ", " +
  8840. "'" +
  8841. _tool +
  8842. "'" +
  8843. ", " +
  8844. "'" +
  8845. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8846. "'" +
  8847. ", " +
  8848. "'" +
  8849. aTool +
  8850. "'" +
  8851. ", " +
  8852. "`" +
  8853. text +
  8854. "`" +
  8855. ")\n" +
  8856. " });\n" +
  8857. "}\n" +
  8858. "document.head.appendChild(_js);\n";
  8859. _iframe.contentWindow.document.head.appendChild(_ajs);
  8860. }
  8861. }
  8862. }
  8863. U.MD.D.I.getEditorContent = function (iframe) {
  8864. return new Promise((resolve, reject) => {
  8865. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8866. console.log(content);
  8867. resolve(content)
  8868. });
  8869. });
  8870. }
  8871. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8872. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8873. // if (res.value[0].length > 0) {
  8874. // // resolve(res.value[0][0].text);
  8875. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8876. // $(fileInput).val('');
  8877. // });
  8878. // }
  8879. // }, [], { "type": "GET", "withCredentials": true });
  8880. var xmlhttp;
  8881. var Mac, Sn, DeviceId
  8882. if (window.XMLHttpRequest) {
  8883. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  8884. xmlhttp = new XMLHttpRequest();
  8885. }
  8886. else {
  8887. // IE6, IE5 瀏覽器執行代碼
  8888. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8889. }
  8890. xmlhttp.onreadystatechange = function () {
  8891. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8892. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8893. // resolve(res.value[0][0].text);
  8894. if (type == '2') {
  8895. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8896. } else if (type == '3') {
  8897. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8898. }
  8899. } else {
  8900. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8901. }
  8902. }
  8903. }
  8904. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8905. xmlhttp.send();
  8906. }
  8907. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8908. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8909. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8910. _userinfo = US.userInfo, //登錄用戶信息
  8911. _userid = US.userInfo.userid //登錄用戶id
  8912. let _iframe;
  8913. let _cid = cid,
  8914. _stage = stage,
  8915. _task = task,
  8916. _tool = tool;
  8917. var _jie = $$("div", {
  8918. "style": {
  8919. "position": "absolute",
  8920. "bottom": "50px",
  8921. "right": "50px",
  8922. "zIndex": "9999",
  8923. "backgroundColor": "#2268bc",
  8924. "color": "#fff",
  8925. "padding": "12px 20px",
  8926. "cursor": "pointer",
  8927. "borderRadius": "4px",
  8928. },
  8929. "innerHTML": "確認並提交"
  8930. })
  8931. let aTool = ''
  8932. let _loading = document.createElement('div')
  8933. _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;"
  8934. // _loading.id = "";
  8935. let _lchild = document.createElement('div')
  8936. let _limg = document.createElement('img')
  8937. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8938. _limg.style = "width: 26px;margin-right: 10px;"
  8939. _lchild.appendChild(_limg)
  8940. let _lspan = document.createElement('span')
  8941. _lspan.innerHTML = "上傳中..."
  8942. _lchild.appendChild(_lspan)
  8943. _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%);"
  8944. _loading.appendChild(_lchild)
  8945. var _box = $$('div', {
  8946. "style": {
  8947. "position": "relative",
  8948. "width": "100%",
  8949. "height": "100%",
  8950. },
  8951. })
  8952. _box.appendChild(_loading)
  8953. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8954. switch (str) {
  8955. case "whiteboard":
  8956. aTool = 1;
  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": "https://iwb.cocorobo.hk/"
  8965. })
  8966. _box.appendChild(_iframe);
  8967. _box.appendChild(_jie);
  8968. _formdiv = new U.UF.UI.form(
  8969. "電子白板",
  8970. _box, {
  8971. "id": "whiteboards" + cid + stage + task + tool,
  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. _taskbar = {
  8986. "id": str + _formdiv.id,
  8987. "style": {
  8988. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8989. },
  8990. "name": "電子白板",
  8991. "forms": _formdiv,
  8992. "click": function () {
  8993. U.MD.D.I.openApplication(str, obj, info);
  8994. }
  8995. }
  8996. break;
  8997. case "mind":
  8998. aTool = 3;
  8999. _iframe = $$("iframe", {
  9000. "frameborder": "no",
  9001. "border": "0",
  9002. "scrolling ": "no",
  9003. "style": {
  9004. "cssText": "border:0;width:100%;height:100%"
  9005. },
  9006. "src": "/kityminder-editor/dist/index.html"
  9007. });
  9008. _box.appendChild(_iframe);
  9009. _box.appendChild(_jie);
  9010. _formdiv = new U.UF.UI.form(
  9011. "思維導圖",
  9012. _box, { //"/jsmind/example/demo.html"
  9013. "id": "minds" + cid + stage + task + tool,
  9014. "style": {
  9015. "width": "90%",
  9016. "height": "90%",
  9017. "overflow": 'hidden'
  9018. },
  9019. "onresize": function () { }
  9020. }, {
  9021. closecallback: function () { }
  9022. }, {
  9023. "style": {
  9024. "height": "36px"
  9025. }
  9026. }).form; //創建窗體
  9027. _taskbar = {
  9028. "id": str + _formdiv.id,
  9029. "style": {
  9030. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9031. },
  9032. "name": "思維導圖",
  9033. "forms": _formdiv,
  9034. "click": function () {
  9035. U.MD.D.I.openApplication(str, obj, info);
  9036. }
  9037. }
  9038. break;
  9039. case "doc":
  9040. aTool = 6;
  9041. _iframe = $$("iframe", {
  9042. "frameborder": "no",
  9043. "border": "0",
  9044. "scrolling ": "no",
  9045. "style": {
  9046. "cssText": "border:0;width:100%;height:100%"
  9047. },
  9048. "src": "/Office/Word/WordEditArea.htm"
  9049. })
  9050. _box.appendChild(_iframe);
  9051. _box.appendChild(_jie);
  9052. _formdiv = new U.UF.UI.form(
  9053. "協同文檔",
  9054. _box, {
  9055. "id": "docs" + cid + stage + task + tool,
  9056. "style": {
  9057. "width": "90%",
  9058. "height": "90%",
  9059. "overflow": 'hidden'
  9060. },
  9061. "onresize": function () { }
  9062. }, {
  9063. closecallback: function () { }
  9064. }, {
  9065. "style": {
  9066. "height": "36px"
  9067. }
  9068. }).form; //創建窗體
  9069. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9070. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9071. })
  9072. _taskbar = {
  9073. "id": str + _formdiv.id,
  9074. "style": {
  9075. "backgroundImage": "url(/img/icon/doc.png)"
  9076. },
  9077. "name": "協同文檔",
  9078. "forms": _formdiv,
  9079. "click": function () {
  9080. U.MD.D.I.openApplication(str, obj, info);
  9081. }
  9082. }
  9083. break;
  9084. }
  9085. const script1 = document.createElement("script");
  9086. script1.type = "text/javascript";
  9087. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9088. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9089. const script2 = document.createElement("script");
  9090. script2.type = "text/javascript";
  9091. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9092. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9093. const script3 = document.createElement("script");
  9094. script3.type = "text/javascript";
  9095. script3.charset = "UTF-8";
  9096. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9097. const script4 = document.createElement("script");
  9098. script4.type = "text/javascript";
  9099. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9100. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9101. if (_iframe) {
  9102. if (str == 'doc') {
  9103. _iframe = _formdiv.querySelector('iframe')
  9104. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9105. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9106. _iframe.contentWindow.document.body.appendChild(script1);
  9107. _iframe.contentWindow.document.body.appendChild(script2);
  9108. // _iframe.contentWindow.document.body.appendChild(script3);
  9109. _iframe.contentWindow.document.body.appendChild(script4);
  9110. })
  9111. if (onloadListener) {
  9112. _iframe.contentDocument.location.reload()
  9113. } else {
  9114. _iframe.contentDocument.location.reload()
  9115. }
  9116. } else if (str == 'mind') {
  9117. _iframe = _formdiv.querySelector('iframe')
  9118. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9119. _iframe.contentWindow.document.body.appendChild(script1);
  9120. _iframe.contentWindow.document.body.appendChild(script2);
  9121. _iframe.contentWindow.document.body.appendChild(script4);
  9122. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9123. })
  9124. if (onloadListener) {
  9125. _iframe.contentDocument.location.reload()
  9126. } else {
  9127. _iframe.contentDocument.location.reload()
  9128. }
  9129. } else {
  9130. _iframe.onload = () => {
  9131. _iframe.contentWindow.document.body.appendChild(script1);
  9132. _iframe.contentWindow.document.body.appendChild(script2);
  9133. // _iframe.contentWindow.document.body.appendChild(script3);
  9134. _iframe.contentWindow.document.body.appendChild(script4);
  9135. };
  9136. }
  9137. _jie.onclick = async () => {
  9138. let text = ''
  9139. if (aTool == 6) {
  9140. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9141. } else if (aTool == 3) {
  9142. text = await U.MD.D.I.getEditorContent(_iframe);
  9143. }
  9144. _loading.style.display = 'flex'
  9145. console.log(_loading);
  9146. var _ajs = _iframe.contentWindow.document.createElement("script");
  9147. _ajs.type = "text/javascript";
  9148. _ajs.innerHTML =
  9149. // 'console.log(' + _loading + ');\n' +
  9150. 'var _js = document.createElement("script");\n' +
  9151. '_js.type="text/javascript";\n' +
  9152. '_js.charset="UTF-8";\n' +
  9153. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9154. "_js.onload = function(){\n" +
  9155. ' var a = document.getElementsByTagName("img")\n' +
  9156. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9157. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9158. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9159. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9160. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9161. "beforeUpload_shishi(file," +
  9162. "'" +
  9163. _userid +
  9164. "'" +
  9165. ", " +
  9166. "'" +
  9167. _cid +
  9168. "'" +
  9169. ", " +
  9170. "'" +
  9171. _stage +
  9172. "'" +
  9173. ", " +
  9174. "'" +
  9175. _task +
  9176. "'" +
  9177. ", " +
  9178. "'" +
  9179. _tool +
  9180. "'" +
  9181. ", " +
  9182. "'" +
  9183. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9184. "'" +
  9185. ", " +
  9186. "'" +
  9187. aTool +
  9188. "'" +
  9189. ", " +
  9190. "`" +
  9191. text +
  9192. "`" +
  9193. ")\n" +
  9194. " });\n" +
  9195. "}\n" +
  9196. "document.head.appendChild(_js);\n";
  9197. _iframe.contentWindow.document.head.appendChild(_ajs);
  9198. }
  9199. }
  9200. //U.MD.D.I.openClick(str);
  9201. //如果有任務欄信息
  9202. // if (_taskbar) {
  9203. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9204. // }
  9205. }
  9206. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9207. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9208. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9209. _userinfo = US.userInfo, //登錄用戶信息
  9210. _userid = US.userInfo.userid //登錄用戶id
  9211. let _iframe;
  9212. let _cid = cid,
  9213. _stage = stage,
  9214. _task = task,
  9215. _tool = tool;
  9216. var _jie = $$("div", {
  9217. "style": {
  9218. "position": "absolute",
  9219. "bottom": "50px",
  9220. "right": "50px",
  9221. "zIndex": "9999",
  9222. "backgroundColor": "#2268bc",
  9223. "color": "#fff",
  9224. "padding": "12px 20px",
  9225. "cursor": "pointer",
  9226. "borderRadius": "4px",
  9227. },
  9228. "innerHTML": "確認並提交"
  9229. })
  9230. let aTool = ''
  9231. let _loading = document.createElement('div')
  9232. _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;"
  9233. // _loading.id = "";
  9234. let _lchild = document.createElement('div')
  9235. let _limg = document.createElement('img')
  9236. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9237. _limg.style = "width: 26px;margin-right: 10px;"
  9238. _lchild.appendChild(_limg)
  9239. let _lspan = document.createElement('span')
  9240. _lspan.innerHTML = "上傳中..."
  9241. _lchild.appendChild(_lspan)
  9242. _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%);"
  9243. _loading.appendChild(_lchild)
  9244. var _box = $$('div', {
  9245. "style": {
  9246. "position": "relative",
  9247. "width": "100%",
  9248. "height": "100%",
  9249. },
  9250. })
  9251. _box.appendChild(_loading)
  9252. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9253. switch (str) {
  9254. case "whiteboard":
  9255. aTool = 1;
  9256. _iframe = $$("iframe", {
  9257. "frameborder": "no",
  9258. "border": "0",
  9259. "scrolling ": "no",
  9260. "style": {
  9261. "cssText": "border:0;width:100%;height:100%"
  9262. },
  9263. "src": "https://iwb.cocorobo.hk/"
  9264. })
  9265. _box.appendChild(_iframe);
  9266. _box.appendChild(_jie);
  9267. _formdiv = new U.UF.UI.form(
  9268. "電子白板",
  9269. _box, {
  9270. "id": "whiteboards" + cid + stage + task + tool,
  9271. "style": {
  9272. "width": "90%",
  9273. "height": "90%",
  9274. "overflow": 'hidden'
  9275. },
  9276. "onresize": function () { }
  9277. }, {
  9278. closecallback: function () { }
  9279. }, {
  9280. "style": {
  9281. "height": "36px"
  9282. }
  9283. }).form; //創建窗體
  9284. _taskbar = {
  9285. "id": str + _formdiv.id,
  9286. "style": {
  9287. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9288. },
  9289. "name": "電子白板",
  9290. "forms": _formdiv,
  9291. "click": function () {
  9292. U.MD.D.I.openApplication(str, obj, info);
  9293. }
  9294. }
  9295. break;
  9296. case "mind":
  9297. aTool = 3;
  9298. _iframe = $$("iframe", {
  9299. "frameborder": "no",
  9300. "border": "0",
  9301. "scrolling ": "no",
  9302. "style": {
  9303. "cssText": "border:0;width:100%;height:100%"
  9304. },
  9305. "src": "/kityminder-editor/dist/index.html"
  9306. });
  9307. _box.appendChild(_iframe);
  9308. _box.appendChild(_jie);
  9309. _formdiv = new U.UF.UI.form(
  9310. "思維導圖",
  9311. _box, { //"/jsmind/example/demo.html"
  9312. "id": "minds" + cid + stage + task + tool,
  9313. "style": {
  9314. "width": "90%",
  9315. "height": "90%",
  9316. "overflow": 'hidden'
  9317. },
  9318. "onresize": function () { }
  9319. }, {
  9320. closecallback: function () { }
  9321. }, {
  9322. "style": {
  9323. "height": "36px"
  9324. }
  9325. }).form; //創建窗體
  9326. _taskbar = {
  9327. "id": str + _formdiv.id,
  9328. "style": {
  9329. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9330. },
  9331. "name": "思維導圖",
  9332. "forms": _formdiv,
  9333. "click": function () {
  9334. U.MD.D.I.openApplication(str, obj, info);
  9335. }
  9336. }
  9337. break;
  9338. case "doc":
  9339. aTool = 6;
  9340. _iframe = $$("iframe", {
  9341. "frameborder": "no",
  9342. "border": "0",
  9343. "scrolling ": "no",
  9344. "style": {
  9345. "cssText": "border:0;width:100%;height:100%"
  9346. },
  9347. "src": "/Office/Word/WordEditArea.htm"
  9348. })
  9349. _box.appendChild(_iframe);
  9350. _box.appendChild(_jie);
  9351. _formdiv = new U.UF.UI.form(
  9352. "協同文檔",
  9353. _box, {
  9354. "id": "docs" + cid + stage + task + tool,
  9355. "style": {
  9356. "width": "90%",
  9357. "height": "90%",
  9358. "overflow": 'hidden'
  9359. },
  9360. "onresize": function () { }
  9361. }, {
  9362. closecallback: function () { }
  9363. }, {
  9364. "style": {
  9365. "height": "36px"
  9366. }
  9367. }).form; //創建窗體
  9368. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9369. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9370. })
  9371. _taskbar = {
  9372. "id": str + _formdiv.id,
  9373. "style": {
  9374. "backgroundImage": "url(/img/icon/doc.png)"
  9375. },
  9376. "name": "協同文檔",
  9377. "forms": _formdiv,
  9378. "click": function () {
  9379. U.MD.D.I.openApplication(str, obj, info);
  9380. }
  9381. }
  9382. break;
  9383. }
  9384. const script1 = document.createElement("script");
  9385. script1.type = "text/javascript";
  9386. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9387. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9388. const script2 = document.createElement("script");
  9389. script2.type = "text/javascript";
  9390. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9391. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9392. const script3 = document.createElement("script");
  9393. script3.type = "text/javascript";
  9394. script3.charset = "UTF-8";
  9395. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9396. const script4 = document.createElement("script");
  9397. script4.type = "text/javascript";
  9398. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9399. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  9400. if (_iframe) {
  9401. if (str == 'doc') {
  9402. _iframe = _formdiv.querySelector('iframe')
  9403. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9404. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9405. _iframe.contentWindow.document.body.appendChild(script1);
  9406. _iframe.contentWindow.document.body.appendChild(script2);
  9407. // _iframe.contentWindow.document.body.appendChild(script3);
  9408. _iframe.contentWindow.document.body.appendChild(script4);
  9409. })
  9410. if (onloadListener) {
  9411. _iframe.contentDocument.location.reload()
  9412. } else {
  9413. _iframe.contentDocument.location.reload()
  9414. }
  9415. } else if (str == 'mind') {
  9416. _iframe = _formdiv.querySelector('iframe')
  9417. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9418. _iframe.contentWindow.document.body.appendChild(script1);
  9419. _iframe.contentWindow.document.body.appendChild(script2);
  9420. _iframe.contentWindow.document.body.appendChild(script4);
  9421. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9422. })
  9423. if (onloadListener) {
  9424. _iframe.contentDocument.location.reload()
  9425. } else {
  9426. _iframe.contentDocument.location.reload()
  9427. }
  9428. } else {
  9429. _iframe.onload = () => {
  9430. _iframe.contentWindow.document.body.appendChild(script1);
  9431. _iframe.contentWindow.document.body.appendChild(script2);
  9432. // _iframe.contentWindow.document.body.appendChild(script3);
  9433. _iframe.contentWindow.document.body.appendChild(script4);
  9434. };
  9435. }
  9436. _jie.onclick = async () => {
  9437. let text = ''
  9438. if (aTool == 6) {
  9439. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9440. } else if (aTool == 3) {
  9441. text = await U.MD.D.I.getEditorContent(_iframe);
  9442. }
  9443. _loading.style.display = 'flex'
  9444. console.log(_loading);
  9445. var _ajs = _iframe.contentWindow.document.createElement("script");
  9446. _ajs.type = "text/javascript";
  9447. _ajs.innerHTML =
  9448. // 'console.log(' + _loading + ');\n' +
  9449. 'var _js = document.createElement("script");\n' +
  9450. '_js.type="text/javascript";\n' +
  9451. '_js.charset="UTF-8";\n' +
  9452. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9453. "_js.onload = function(){\n" +
  9454. ' var a = document.getElementsByTagName("img")\n' +
  9455. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9456. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9457. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9458. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9459. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9460. "beforeUpload_shishi(file," +
  9461. "'" +
  9462. _userid +
  9463. "'" +
  9464. ", " +
  9465. "'" +
  9466. _cid +
  9467. "'" +
  9468. ", " +
  9469. "'" +
  9470. _stage +
  9471. "'" +
  9472. ", " +
  9473. "'" +
  9474. _task +
  9475. "'" +
  9476. ", " +
  9477. "'" +
  9478. _tool +
  9479. "'" +
  9480. ", " +
  9481. "'" +
  9482. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9483. "'" +
  9484. ", " +
  9485. "'" +
  9486. aTool +
  9487. "'" +
  9488. ", " +
  9489. "`" +
  9490. text +
  9491. "`" +
  9492. ")\n" +
  9493. " });\n" +
  9494. "}\n" +
  9495. "document.head.appendChild(_js);\n";
  9496. _iframe.contentWindow.document.head.appendChild(_ajs);
  9497. }
  9498. }
  9499. //U.MD.D.I.openClick(str);
  9500. //如果有任務欄信息
  9501. // if (_taskbar) {
  9502. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9503. // }
  9504. }
  9505. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9506. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9507. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9508. _userinfo = US.userInfo, //登錄用戶信息
  9509. _userid = US.userInfo.userid //登錄用戶id
  9510. let _iframe;
  9511. let _cid = cid,
  9512. _stage = stage,
  9513. _task = task,
  9514. _tool = tool;
  9515. var _jie = $$("div", {
  9516. "style": {
  9517. "position": "absolute",
  9518. "bottom": "50px",
  9519. "right": "50px",
  9520. "zIndex": "9999",
  9521. "backgroundColor": "#2268bc",
  9522. "color": "#fff",
  9523. "padding": "12px 20px",
  9524. "cursor": "pointer",
  9525. "borderRadius": "4px",
  9526. },
  9527. "innerHTML": "上傳模板"
  9528. })
  9529. let aTool = ''
  9530. let _loading = document.createElement('div')
  9531. _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;"
  9532. // _loading.id = "";
  9533. let _lchild = document.createElement('div')
  9534. let _limg = document.createElement('img')
  9535. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9536. _limg.style = "width: 26px;margin-right: 10px;"
  9537. _lchild.appendChild(_limg)
  9538. let _lspan = document.createElement('span')
  9539. _lspan.innerHTML = "上傳中..."
  9540. _lchild.appendChild(_lspan)
  9541. _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%);"
  9542. _loading.appendChild(_lchild)
  9543. var _box = $$('div', {
  9544. "style": {
  9545. "position": "relative",
  9546. "width": "100%",
  9547. "height": "100%",
  9548. },
  9549. })
  9550. _box.appendChild(_loading)
  9551. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9552. switch (str) {
  9553. case "whiteboard":
  9554. aTool = 1;
  9555. _iframe = $$("iframe", {
  9556. "frameborder": "no",
  9557. "border": "0",
  9558. "scrolling ": "no",
  9559. "style": {
  9560. "cssText": "border:0;width:100%;height:100%"
  9561. },
  9562. "src": "https://iwb.cocorobo.hk/"
  9563. })
  9564. _box.appendChild(_iframe);
  9565. _box.appendChild(_jie);
  9566. _formdiv = new U.UF.UI.form(
  9567. "電子白板",
  9568. _box, {
  9569. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9570. "style": {
  9571. "width": "90%",
  9572. "height": "90%",
  9573. "overflow": 'hidden'
  9574. },
  9575. "onresize": function () { }
  9576. }, {
  9577. closecallback: function () { }
  9578. }, {
  9579. "style": {
  9580. "height": "36px"
  9581. }
  9582. }).form; //創建窗體
  9583. _taskbar = {
  9584. "id": str + _formdiv.id,
  9585. "style": {
  9586. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9587. },
  9588. "name": "電子白板",
  9589. "forms": _formdiv,
  9590. "click": function () {
  9591. U.MD.D.I.openApplication(str, obj, info);
  9592. }
  9593. }
  9594. break;
  9595. case "mind":
  9596. aTool = 3;
  9597. _iframe = $$("iframe", {
  9598. "frameborder": "no",
  9599. "border": "0",
  9600. "scrolling ": "no",
  9601. "style": {
  9602. "cssText": "border:0;width:100%;height:100%"
  9603. },
  9604. "src": "/kityminder-editor/dist/index.html"
  9605. });
  9606. _box.appendChild(_iframe);
  9607. _box.appendChild(_jie);
  9608. _formdiv = new U.UF.UI.form(
  9609. "思維導圖",
  9610. _box, { //"/jsmind/example/demo.html"
  9611. "id": "minds_Yu" + cid + stage + task + tool,
  9612. "style": {
  9613. "width": "90%",
  9614. "height": "90%",
  9615. "overflow": 'hidden'
  9616. },
  9617. "onresize": function () { }
  9618. }, {
  9619. closecallback: function () { }
  9620. }, {
  9621. "style": {
  9622. "height": "36px"
  9623. }
  9624. }).form; //創建窗體
  9625. _taskbar = {
  9626. "id": str + _formdiv.id,
  9627. "style": {
  9628. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9629. },
  9630. "name": "思維導圖",
  9631. "forms": _formdiv,
  9632. "click": function () {
  9633. U.MD.D.I.openApplication(str, obj, info);
  9634. }
  9635. }
  9636. break;
  9637. case "doc":
  9638. aTool = 6;
  9639. _iframe = $$("iframe", {
  9640. "frameborder": "no",
  9641. "border": "0",
  9642. "scrolling ": "no",
  9643. "style": {
  9644. "cssText": "border:0;width:100%;height:100%"
  9645. },
  9646. "src": "/Office/Word/WordEditArea.htm"
  9647. })
  9648. _box.appendChild(_iframe);
  9649. _box.appendChild(_jie);
  9650. _formdiv = new U.UF.UI.form(
  9651. "協同文檔",
  9652. _box, {
  9653. "id": "docs_Yu" + cid + stage + task + tool,
  9654. "style": {
  9655. "width": "90%",
  9656. "height": "90%",
  9657. "overflow": 'hidden'
  9658. },
  9659. "onresize": function () { }
  9660. }, {
  9661. closecallback: function () { }
  9662. }, {
  9663. "style": {
  9664. "height": "36px"
  9665. }
  9666. }).form; //創建窗體
  9667. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9668. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9669. })
  9670. _taskbar = {
  9671. "id": str + _formdiv.id,
  9672. "style": {
  9673. "backgroundImage": "url(/img/icon/doc.png)"
  9674. },
  9675. "name": "協同文檔",
  9676. "forms": _formdiv,
  9677. "click": function () {
  9678. U.MD.D.I.openApplication(str, obj, info);
  9679. }
  9680. }
  9681. break;
  9682. case "CocoPi":
  9683. aTool = 57;
  9684. _iframe = $$("iframe", {
  9685. "allowpaymentrequest": "allowpaymentrequest",
  9686. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9687. "webkitallowfullscreen": "",
  9688. "mozallowfullscreen": "",
  9689. "frameborder": "no",
  9690. "border": "0",
  9691. "scrolling ": "no",
  9692. "style": {
  9693. "cssText": "border:0;width:100%;height:100%"
  9694. },
  9695. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9696. })
  9697. _box.appendChild(_iframe);
  9698. _box.appendChild(_jie);
  9699. _formdiv = new U.UF.UI.form(
  9700. "CocoPi",
  9701. _box, {
  9702. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9703. "style": {
  9704. "width": "90%",
  9705. "height": "90%",
  9706. "overflow": 'hidden'
  9707. },
  9708. "onresize": function () { }
  9709. }, {
  9710. closecallback: function () { }
  9711. }, {
  9712. "style": {
  9713. "height": "36px"
  9714. }
  9715. }).form; //創建窗體
  9716. _taskbar = {
  9717. "id": str + _formdiv.id,
  9718. "style": {
  9719. "backgroundImage": "url(/img/icon/cocopi.png)"
  9720. },
  9721. "name": "CocoPi",
  9722. "forms": _formdiv,
  9723. "click": function () {
  9724. U.MD.D.I.openApplication(str, obj, info);
  9725. }
  9726. }
  9727. break;
  9728. }
  9729. if (_iframe) {
  9730. if (str == 'doc') {
  9731. _iframe = _formdiv.querySelector('iframe')
  9732. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9733. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9734. })
  9735. if (onloadListener) {
  9736. _iframe.contentDocument.location.reload()
  9737. } else {
  9738. _iframe.contentDocument.location.reload()
  9739. }
  9740. } else if (str == 'mind') {
  9741. _iframe = _formdiv.querySelector('iframe')
  9742. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9743. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9744. })
  9745. if (onloadListener) {
  9746. _iframe.contentDocument.location.reload()
  9747. } else {
  9748. _iframe.contentDocument.location.reload()
  9749. }
  9750. } else if (str == 'whiteboard') {
  9751. _iframe = _formdiv.querySelector('iframe')
  9752. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9753. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9754. })
  9755. // if (onloadListener) {
  9756. // try {
  9757. // _iframe.src += "?cocorobo="+new Date().getTime()
  9758. // _iframe.contentWindow.document.location.reload()
  9759. // } catch (error) {
  9760. // }
  9761. // } else {
  9762. // _iframe.contentDocument.location.reload()
  9763. // }
  9764. } else if (str == 'CocoPi') {
  9765. _iframe = _formdiv.querySelector('iframe')
  9766. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9767. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9768. })
  9769. if (onloadListener) {
  9770. _iframe.contentDocument.location.reload()
  9771. } else {
  9772. _iframe.contentDocument.location.reload()
  9773. }
  9774. } else {
  9775. _iframe.onload = () => { };
  9776. }
  9777. _jie.onclick = async () => {
  9778. let text = ''
  9779. let type = '2'
  9780. if (aTool == 1) {
  9781. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9782. type = '3'
  9783. } else if (aTool == 6) {
  9784. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9785. type = '1'
  9786. } else if (aTool == 3) {
  9787. text = await U.MD.D.I.getEditorContent(_iframe);
  9788. type = '2'
  9789. } else if (aTool == 57) {
  9790. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9791. type = '4'
  9792. }
  9793. _loading.style.display = 'flex'
  9794. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9795. }
  9796. }
  9797. //U.MD.D.I.openClick(str);
  9798. //如果有任務欄信息
  9799. // if (_taskbar) {
  9800. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9801. // }
  9802. }
  9803. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9804. var xmlhttp;
  9805. var Mac, Sn, DeviceId
  9806. if (window.XMLHttpRequest) {
  9807. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9808. xmlhttp = new XMLHttpRequest();
  9809. }
  9810. else {
  9811. // IE6, IE5 瀏覽器執行代碼
  9812. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9813. }
  9814. xmlhttp.onreadystatechange = function () {
  9815. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9816. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9817. // resolve(res.value[0][0].text);
  9818. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9819. }
  9820. }
  9821. }
  9822. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9823. xmlhttp.send();
  9824. }
  9825. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9826. var xmlhttp;
  9827. var Mac, Sn, DeviceId
  9828. if (window.XMLHttpRequest) {
  9829. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9830. xmlhttp = new XMLHttpRequest();
  9831. }
  9832. else {
  9833. // IE6, IE5 瀏覽器執行代碼
  9834. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9835. }
  9836. xmlhttp.onreadystatechange = function () {
  9837. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9838. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9839. // resolve(res.value[0][0].text);
  9840. if (type == '2') {
  9841. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9842. } else if (type == '3') {
  9843. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9844. } else if (type == '4') {
  9845. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9846. }
  9847. } else {
  9848. if (type == '2') {
  9849. iframe.contentWindow.editor.minder.importData('json', '')
  9850. } else if (type == '3') {
  9851. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9852. } else if (type == '4') {
  9853. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9854. }
  9855. }
  9856. }
  9857. }
  9858. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9859. xmlhttp.send();
  9860. }
  9861. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9862. var xmlhttp;
  9863. var Mac, Sn, DeviceId
  9864. if (window.XMLHttpRequest) {
  9865. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9866. xmlhttp = new XMLHttpRequest();
  9867. }
  9868. else {
  9869. // IE6, IE5 瀏覽器執行代碼
  9870. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9871. }
  9872. xmlhttp.onreadystatechange = function () {
  9873. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9874. if (xmlhttp.response) {
  9875. // resolve(res.value[0][0].text);
  9876. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9877. // $(fileInput).val('');
  9878. // });
  9879. span.innerHTML = '上傳成功'
  9880. setTimeout(() => {
  9881. loading.style.display = 'none'
  9882. }, 1000);
  9883. }
  9884. }
  9885. }
  9886. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9887. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9888. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9889. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9890. // 設置請求頭,表示請求體的編碼格式
  9891. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9892. // 設置請求體,使用url-encoded格式的數據
  9893. }
  9894. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9895. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9896. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9897. _userinfo = US.userInfo, //登錄用戶信息
  9898. _userid = US.userInfo.userid //登錄用戶id
  9899. let _iframe;
  9900. let _cid = cid,
  9901. _stage = stage,
  9902. _task = task,
  9903. _tool = tool;
  9904. var _jie = $$("div", {
  9905. "style": {
  9906. "position": "absolute",
  9907. "bottom": "50px",
  9908. "right": "50px",
  9909. "zIndex": "9999",
  9910. "backgroundColor": "#2268bc",
  9911. "color": "#fff",
  9912. "padding": "12px 20px",
  9913. "cursor": "pointer",
  9914. "borderRadius": "4px",
  9915. },
  9916. "innerHTML": "提交作業"
  9917. })
  9918. let aTool = ''
  9919. let _loading = document.createElement('div')
  9920. _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;"
  9921. // _loading.id = "";
  9922. let _lchild = document.createElement('div')
  9923. let _limg = document.createElement('img')
  9924. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9925. _limg.style = "width: 26px;margin-right: 10px;"
  9926. _lchild.appendChild(_limg)
  9927. let _lspan = document.createElement('span')
  9928. _lspan.innerHTML = "上傳中..."
  9929. _lchild.appendChild(_lspan)
  9930. _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%);"
  9931. _loading.appendChild(_lchild)
  9932. var _box = $$('div', {
  9933. "style": {
  9934. "position": "relative",
  9935. "width": "100%",
  9936. "height": "100%",
  9937. },
  9938. })
  9939. _box.appendChild(_loading)
  9940. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9941. switch (str) {
  9942. case "CocoPi":
  9943. aTool = 57;
  9944. _iframe = $$("iframe", {
  9945. "allowpaymentrequest": "allowpaymentrequest",
  9946. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9947. "webkitallowfullscreen": "",
  9948. "mozallowfullscreen": "",
  9949. "frameborder": "no",
  9950. "border": "0",
  9951. "scrolling ": "no",
  9952. "style": {
  9953. "cssText": "border:0;width:100%;height:100%"
  9954. },
  9955. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9956. })
  9957. _box.appendChild(_iframe);
  9958. _box.appendChild(_jie);
  9959. _formdiv = new U.UF.UI.form(
  9960. "CocoPi",
  9961. _box, {
  9962. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9963. "style": {
  9964. "width": "90%",
  9965. "height": "90%",
  9966. "overflow": 'hidden'
  9967. },
  9968. "onresize": function () { }
  9969. }, {
  9970. closecallback: function () { }
  9971. }, {
  9972. "style": {
  9973. "height": "36px"
  9974. }
  9975. }).form; //創建窗體
  9976. _taskbar = {
  9977. "id": str + _formdiv.id,
  9978. "style": {
  9979. "backgroundImage": "url(/img/icon/cocopi.png)"
  9980. },
  9981. "name": "CocoPi",
  9982. "forms": _formdiv,
  9983. "click": function () {
  9984. U.MD.D.I.openApplication(str, obj, info);
  9985. }
  9986. }
  9987. break;
  9988. }
  9989. if (_iframe) {
  9990. if (str == 'CocoPi') {
  9991. _iframe = _formdiv.querySelector('iframe')
  9992. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9993. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9994. })
  9995. if (onloadListener) {
  9996. _iframe.contentDocument.location.reload()
  9997. } else {
  9998. _iframe.contentDocument.location.reload()
  9999. }
  10000. }
  10001. _jie.onclick = async () => {
  10002. let text = ''
  10003. if (aTool == 57) {
  10004. text = _iframe.contentWindow.getLoadXmlStr()
  10005. }
  10006. _loading.style.display = 'flex'
  10007. console.log(_loading);
  10008. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10009. _loading.style.display = 'none'
  10010. let _div = document.createElement('div')
  10011. _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;"
  10012. let _inner = document.createElement('div')
  10013. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10014. _inner.innerHTML = "上傳成功"
  10015. _div.appendChild(_inner)
  10016. _iframe.contentWindow.window.document.body.appendChild(_div)
  10017. _div.onclick = () => {
  10018. _iframe.contentWindow.window.document.body.removeChild(_div)
  10019. }
  10020. setTimeout(() => {
  10021. _iframe.contentWindow.window.document.body.removeChild(_div)
  10022. }, 1000);
  10023. }, [], { "type": "POST", "withCredentials": true });
  10024. }
  10025. }
  10026. }
  10027. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10028. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10029. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10030. _userid = student.userid, //登錄用戶id
  10031. _username = student.student //用戶名字
  10032. let _iframe;
  10033. let _cid = cid,
  10034. _stage = stage,
  10035. _task = task,
  10036. _tool = tool;
  10037. var _jie = $$("div", {
  10038. "style": {
  10039. "position": "absolute",
  10040. "bottom": "50px",
  10041. "right": "50px",
  10042. "zIndex": "9999",
  10043. "backgroundColor": "#2268bc",
  10044. "color": "#fff",
  10045. "padding": "12px 20px",
  10046. "cursor": "pointer",
  10047. "borderRadius": "4px",
  10048. },
  10049. "innerHTML": "提交作業"
  10050. })
  10051. let aTool = ''
  10052. let _loading = document.createElement('div')
  10053. _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;"
  10054. // _loading.id = "";
  10055. let _lchild = document.createElement('div')
  10056. let _limg = document.createElement('img')
  10057. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10058. _limg.style = "width: 26px;margin-right: 10px;"
  10059. _lchild.appendChild(_limg)
  10060. let _lspan = document.createElement('span')
  10061. _lspan.innerHTML = "上傳中..."
  10062. _lchild.appendChild(_lspan)
  10063. _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%);"
  10064. _loading.appendChild(_lchild)
  10065. var _box = $$('div', {
  10066. "style": {
  10067. "position": "relative",
  10068. "width": "100%",
  10069. "height": "100%",
  10070. },
  10071. })
  10072. _box.appendChild(_loading)
  10073. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10074. switch (str) {
  10075. case "CocoPi":
  10076. aTool = 57;
  10077. _iframe = $$("iframe", {
  10078. "allowpaymentrequest": "allowpaymentrequest",
  10079. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10080. "webkitallowfullscreen": "",
  10081. "mozallowfullscreen": "",
  10082. "frameborder": "no",
  10083. "border": "0",
  10084. "scrolling ": "no",
  10085. "style": {
  10086. "cssText": "border:0;width:100%;height:100%"
  10087. },
  10088. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10089. })
  10090. _box.appendChild(_iframe);
  10091. _box.appendChild(_jie);
  10092. _formdiv = new U.UF.UI.form(
  10093. "CocoPi-" + _username,
  10094. _box, {
  10095. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10096. "style": {
  10097. "width": "90%",
  10098. "height": "90%",
  10099. "overflow": 'hidden'
  10100. },
  10101. "onresize": function () { }
  10102. }, {
  10103. closecallback: function () { }
  10104. }, {
  10105. "style": {
  10106. "height": "36px"
  10107. }
  10108. }).form; //創建窗體
  10109. _taskbar = {
  10110. "id": str + _formdiv.id,
  10111. "style": {
  10112. "backgroundImage": "url(/img/icon/cocopi.png)"
  10113. },
  10114. "name": "CocoPi",
  10115. "forms": _formdiv,
  10116. "click": function () {
  10117. U.MD.D.I.openApplication(str, obj, info);
  10118. }
  10119. }
  10120. break;
  10121. }
  10122. if (_iframe) {
  10123. if (str == 'CocoPi') {
  10124. _iframe = _formdiv.querySelector('iframe')
  10125. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10126. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10127. })
  10128. if (onloadListener) {
  10129. _iframe.contentDocument.location.reload()
  10130. } else {
  10131. _iframe.contentDocument.location.reload()
  10132. }
  10133. }
  10134. _jie.onclick = async () => {
  10135. let text = ''
  10136. if (aTool == 57) {
  10137. text = _iframe.contentWindow.getLoadXmlStr()
  10138. }
  10139. _loading.style.display = 'flex'
  10140. console.log(_loading);
  10141. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10142. _loading.style.display = 'none'
  10143. let _div = document.createElement('div')
  10144. _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;"
  10145. let _inner = document.createElement('div')
  10146. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10147. _inner.innerHTML = "上傳成功"
  10148. _div.appendChild(_inner)
  10149. _iframe.contentWindow.window.document.body.appendChild(_div)
  10150. _div.onclick = () => {
  10151. _iframe.contentWindow.window.document.body.removeChild(_div)
  10152. }
  10153. setTimeout(() => {
  10154. _iframe.contentWindow.window.document.body.removeChild(_div)
  10155. }, 1000);
  10156. }, [], { "type": "POST", "withCredentials": true });
  10157. }
  10158. }
  10159. }
  10160. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10161. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10162. if (res.value[0].length > 0) {
  10163. if (atool == 57) {
  10164. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10165. }
  10166. } else {
  10167. if (atool == 57) {
  10168. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10169. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10170. }
  10171. }
  10172. }, [], { "type": "POST", "withCredentials": true });
  10173. }