DeskTop.js 661 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院實小教師桌面圖標的全局變量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小學教師桌面圖標的全局變量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小學學生桌面圖標的全局變量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //雲海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未來教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未來教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未來教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成華教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成華教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成華教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //鹽田區幼兒園
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //鹽田區幼兒園
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaStudentDeskIcon = [
  1405. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //szdjg
  1411. U.MD.D.I.szdjgTeacherDeskIcon = [
  1412. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgStudentDeskIcon = [
  1417. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1418. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1419. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1421. ];
  1422. //010607
  1423. U.MD.D.I.x010607TeacherDeskIcon = [
  1424. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1425. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1427. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1428. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1429. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1430. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1431. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1432. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1433. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1435. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1436. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1437. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1438. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607StudentDeskIcon = [
  1442. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1443. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1444. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. ];
  1447. //010608
  1448. U.MD.D.I.x010608TeacherDeskIcon = [
  1449. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1450. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1451. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1452. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1453. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1454. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1455. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1456. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1457. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1460. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1461. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1462. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1463. ];
  1464. //010608
  1465. U.MD.D.I.x010608StudentDeskIcon = [
  1466. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1467. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1468. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1470. ];
  1471. //xhly
  1472. U.MD.D.I.xhlyTeacherDeskIcon = [
  1473. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1474. ];
  1475. //010608
  1476. U.MD.D.I.xhlyStudentDeskIcon = [
  1477. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. ];
  1479. //北師大
  1480. U.MD.D.I.BSDNSteacherDeskIcon = [
  1481. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1482. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1484. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1485. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1488. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1489. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1491. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1492. ];
  1493. //北師大
  1494. U.MD.D.I.BSDNSstudentDeskIcon = [
  1495. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1496. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1497. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. ];
  1500. //CUHK_EDU
  1501. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1502. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1513. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1514. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1515. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1516. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1520. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1521. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1522. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. ];
  1525. //010503
  1526. U.MD.D.I.x010503TeacherDeskIcon = [
  1527. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1528. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1529. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1530. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1531. { "Name": "項目管理", "Url": "studentCourseS", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. ];
  1537. //010503
  1538. U.MD.D.I.x010503StudentDeskIcon = [
  1539. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //SPROUT Lab
  1545. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1546. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1553. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. ];
  1556. //SPROUT Lab
  1557. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1558. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1559. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. ];
  1563. //010204
  1564. U.MD.D.I.x010204TeacherDeskIcon = [
  1565. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1566. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204StudentDeskIcon = [
  1570. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. ];
  1575. //trail
  1576. U.MD.D.I.trailTeacherDeskIcon = [
  1577. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1578. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailStudentDeskIcon = [
  1582. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504TeacherDeskIcon = [
  1589. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1592. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1593. { "Name": "項目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1596. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1598. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1599. ];
  1600. //010504
  1601. U.MD.D.I.x010504StudentDeskIcon = [
  1602. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //SCNUET
  1608. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1609. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1614. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1615. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1616. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1617. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1618. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1619. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1620. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1621. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1622. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1623. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1624. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1625. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1626. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1627. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1628. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1630. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1631. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1632. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1633. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1634. ];
  1635. //SCNUET
  1636. U.MD.D.I.SCNUETAdminDeskIcon = [
  1637. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1640. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1641. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1642. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1643. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1644. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1645. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1646. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1647. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1648. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1649. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1650. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1651. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1652. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1653. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1654. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1655. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1656. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1657. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1658. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1659. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1660. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1661. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1662. ];
  1663. //SCNUET
  1664. U.MD.D.I.SCNUETStudentDeskIcon = [
  1665. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1666. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1667. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1668. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. ];
  1670. //x020201
  1671. U.MD.D.I.x020201TeacherDeskIcon = [
  1672. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1673. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1677. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1678. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1679. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1680. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1682. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1683. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1684. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1685. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1686. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1687. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1688. ];
  1689. //x020201
  1690. U.MD.D.I.x020201AdminDeskIcon = [
  1691. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1692. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1693. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1694. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1695. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1696. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1697. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1698. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1699. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1700. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1701. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1702. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1703. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1704. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1706. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1707. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1708. ];
  1709. //020201
  1710. U.MD.D.I.x020201StudentDeskIcon = [
  1711. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1712. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1713. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1714. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. ];
  1716. //010611
  1717. U.MD.D.I.x010611TeacherDeskIcon = [
  1718. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1719. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1721. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1722. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1723. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1724. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1727. ];
  1728. //010611
  1729. U.MD.D.I.x010611StudentDeskIcon = [
  1730. { "Name": "項目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1734. ];
  1735. //tianyuan
  1736. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1737. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1738. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1740. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1741. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1742. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1743. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1744. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. ];
  1748. //010611
  1749. U.MD.D.I.tianyuanStudentDeskIcon = [
  1750. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1751. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1752. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1753. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1754. ];
  1755. //#region 桌面初始化a
  1756. /**
  1757. * 初始化桌面的起始函數
  1758. *
  1759. */
  1760. U.MD.D.I.init = function () {
  1761. if ($("#U_MD_D_K")[0]) {
  1762. //初始化桌面圖標
  1763. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1764. // var clickUrl = ':12588/requestIp.php';
  1765. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1766. // U.MD.D.I.Ip = data;
  1767. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1768. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1769. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1770. // })
  1771. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1772. // })
  1773. }
  1774. }
  1775. /**
  1776. * 模式切換
  1777. *
  1778. */
  1779. U.MD.D.I.ModeCheck = function (type) {
  1780. if (US.Config.type == type) {
  1781. return
  1782. }
  1783. US.Config.type = type
  1784. $('.U_PBL_Check .active')[0].className = ''
  1785. if (type == 1) {
  1786. $('.U_PBL_Check div')[0].className = 'active'
  1787. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1788. } else {
  1789. $('.U_PBL_Check div')[1].className = 'active'
  1790. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1791. }
  1792. //初始化桌面圖標
  1793. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1794. if (type == 2) {
  1795. U.MD.D.I.openApplication("project")
  1796. }
  1797. }
  1798. /**
  1799. * 隱藏任務欄
  1800. *
  1801. * @param {element} 桌面元素
  1802. */
  1803. U.MD.D.I.hiddenTaskbar = function (el) {
  1804. //任務欄位置變小
  1805. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1806. //桌面的位置變大
  1807. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1808. }
  1809. /**
  1810. * 隱藏任務欄
  1811. *
  1812. * @param {element} 桌面元素
  1813. */
  1814. U.MD.D.I.hiddenTaskbarout = function (el) {
  1815. //任務欄位置變小
  1816. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1817. //任務欄位置變化
  1818. U.selectEl(el).css({ "bottom": "-60px" });
  1819. //桌面的位置變大
  1820. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1821. }
  1822. }
  1823. /**
  1824. * 初始化打印桌面圖標
  1825. *
  1826. * @param {element} 桌面元素
  1827. */
  1828. U.MD.D.I.initDesktopIcons = function (el, type) {
  1829. var i, //用於循環
  1830. _content, //桌面圖標元素
  1831. _iconcontent, //桌面圖標元素
  1832. _frag = $$("frag"), //定義一個碎片元素
  1833. _type = US.userInfo.type,
  1834. _org = US.userInfo.org,
  1835. _oid = US.userInfo.organizeid,
  1836. _role = US.userInfo.role,
  1837. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  1838. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  1839. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  1840. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  1841. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  1842. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  1843. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  1844. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1845. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1846. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1847. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  1848. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  1849. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  1850. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  1851. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  1852. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  1853. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  1854. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  1855. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  1856. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  1857. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  1858. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  1859. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  1860. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  1861. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1862. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1863. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  1864. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  1865. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  1866. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  1867. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  1868. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  1869. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1870. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1871. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1872. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1873. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1874. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1875. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1876. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1877. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1878. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  1879. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1880. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1881. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1882. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1883. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  1884. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1885. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1886. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1887. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1888. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1889. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1890. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1891. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1892. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1893. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1894. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  1895. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1896. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1897. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1898. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1899. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1900. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1901. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1902. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1903. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1904. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1905. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1906. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  1907. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  1908. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  1909. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  1910. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1911. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1912. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1913. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1914. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1915. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1916. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1917. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1918. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1919. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1920. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1921. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1922. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1923. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1924. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1925. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1926. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1927. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1928. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1929. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1930. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1931. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1932. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1933. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1934. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1935. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1936. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1937. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1938. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1939. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1940. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1941. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1942. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1943. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1944. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1945. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1946. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1947. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1948. 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'];
  1949. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc'];
  1950. //清楚桌面圖標
  1951. el.innerHTML = "";
  1952. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1953. _teacherDesktopIconInfo.push(
  1954. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1955. { "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)" } },
  1956. )
  1957. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1958. }
  1959. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1960. _teacherDesktopIconInfo.push(
  1961. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1962. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1963. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1964. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1965. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1966. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1967. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1968. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1969. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1970. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1971. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1973. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1974. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1975. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1976. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1977. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1978. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1979. )
  1980. }
  1981. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  1982. _teacherDesktopIconInfo.push(
  1983. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1984. )
  1985. }
  1986. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1987. // _teacherDesktopIconInfo.push(
  1988. // )
  1989. // }
  1990. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1991. _teacherDesktopIconInfo.push(
  1992. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1993. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1994. )
  1995. }
  1996. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1997. _teacherDesktopIconInfo.push(
  1998. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1999. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2000. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2001. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2002. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2003. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2004. )
  2005. _studentDesktopIconInfo.push(
  2006. )
  2007. }
  2008. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2009. _teacherDesktopIconInfo.push(
  2010. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2011. )
  2012. _studentDesktopIconInfo.push(
  2013. )
  2014. }
  2015. //010606 組織
  2016. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2017. _teacherDesktopIconInfo.push(
  2018. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2019. )
  2020. _studentDesktopIconInfo.push(
  2021. )
  2022. }
  2023. //麒麟二中 和 民新小學
  2024. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2025. _teacherDesktopIconInfo.push(
  2026. )
  2027. }
  2028. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2029. _teacherDesktopIconInfo.push(
  2030. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2031. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2032. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2033. )
  2034. }
  2035. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2036. _hkTeacherDeskIconInfo.push(
  2037. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2038. )
  2039. }
  2040. //北師大附中(010601)
  2041. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2042. // _teacherDesktopIconInfo.push(
  2043. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2044. // )
  2045. // _studentDesktopIconInfo.push(
  2046. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2047. // )
  2048. // }
  2049. //樂善堂余近卿中學
  2050. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2053. )
  2054. }
  2055. // Education Artificial Intelligence
  2056. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2057. _teacherDesktopIconInfo.push(
  2058. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2059. )
  2060. }
  2061. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2062. _teacherDesktopIconInfo.push(
  2063. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2064. )
  2065. }
  2066. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2067. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2068. _teacherDesktopIconInfo.push(
  2069. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2070. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2071. )
  2072. }
  2073. //麒麟二中
  2074. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2075. _studentDesktopIconInfo.push(
  2076. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2077. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2078. )
  2079. }
  2080. //萬科雙語
  2081. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2082. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2083. if (el.Name == '項目管理') {
  2084. el.Name = 'PBL項目'
  2085. }
  2086. return el
  2087. })
  2088. _studentDesktopIconInfo3.push(
  2089. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2090. )
  2091. }
  2092. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2093. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2094. return el.Name != '魔盒識字' && el.Name != '24點'
  2095. })
  2096. }
  2097. 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) {
  2098. _studentDesktopIconInfo.push(
  2099. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2100. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2101. )
  2102. }
  2103. //循環創建桌面圖標
  2104. if (type == 1) {
  2105. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2106. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2107. _content = $$("div", {
  2108. className: "U_MD_D_KO",
  2109. "onmousedown": U.UF.C.closure(function (obj) {
  2110. //防止拖動圖標即打開了桌面應用
  2111. U.MD.D.click(this, obj);
  2112. }, [_studentDesktopIconInfo[i]]),
  2113. "onclick": U.UF.C.closure(function (obj) {
  2114. //防止拖動圖標即打開了桌面應用
  2115. U.MD.D.click(this, obj);
  2116. }, [_studentDesktopIconInfo[i]])
  2117. }, _frag); //
  2118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2121. }
  2122. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2123. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2124. _content = $$("div", {
  2125. className: "U_MD_D_KO",
  2126. "onmousedown": U.UF.C.closure(function (obj) {
  2127. //防止拖動圖標即打開了桌面應用
  2128. U.MD.D.click(this, obj);
  2129. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2130. "onclick": U.UF.C.closure(function (obj) {
  2131. //防止拖動圖標即打開了桌面應用
  2132. U.MD.D.click(this, obj);
  2133. }, [_hkZJLSStudentDeskIconInfo[i]])
  2134. }, _frag); //
  2135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2138. } //
  2139. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2140. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2141. _content = $$("div", {
  2142. className: "U_MD_D_KO",
  2143. "onmousedown": U.UF.C.closure(function (obj) {
  2144. //防止拖動圖標即打開了桌面應用
  2145. U.MD.D.click(this, obj);
  2146. }, [_ytyStudentDeskIconInfo[i]]),
  2147. "onclick": U.UF.C.closure(function (obj) {
  2148. //防止拖動圖標即打開了桌面應用
  2149. U.MD.D.click(this, obj);
  2150. }, [_ytyStudentDeskIconInfo[i]])
  2151. }, _frag); //
  2152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2155. } //
  2156. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2157. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2158. _content = $$("div", {
  2159. className: "U_MD_D_KO",
  2160. "onmousedown": U.UF.C.closure(function (obj) {
  2161. //防止拖動圖標即打開了桌面應用
  2162. U.MD.D.click(this, obj);
  2163. }, [_jccssylStudentDeskIconInfo[i]]),
  2164. "onclick": U.UF.C.closure(function (obj) {
  2165. //防止拖動圖標即打開了桌面應用
  2166. U.MD.D.click(this, obj);
  2167. }, [_jccssylStudentDeskIconInfo[i]])
  2168. }, _frag); //
  2169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2172. }
  2173. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2174. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2175. _content = $$("div", {
  2176. className: "U_MD_D_KO",
  2177. "onmousedown": U.UF.C.closure(function (obj) {
  2178. //防止拖動圖標即打開了桌面應用
  2179. U.MD.D.click(this, obj);
  2180. }, [_scnuaiStudentDeskIconInfo[i]]),
  2181. "onclick": U.UF.C.closure(function (obj) {
  2182. //防止拖動圖標即打開了桌面應用
  2183. U.MD.D.click(this, obj);
  2184. }, [_scnuaiStudentDeskIconInfo[i]])
  2185. }, _frag); //
  2186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2189. }
  2190. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2191. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2192. _content = $$("div", {
  2193. className: "U_MD_D_KO",
  2194. "onmousedown": U.UF.C.closure(function (obj) {
  2195. //防止拖動圖標即打開了桌面應用
  2196. U.MD.D.click(this, obj);
  2197. }, [_caleStudentDeskIconInfo[i]]),
  2198. "onclick": U.UF.C.closure(function (obj) {
  2199. //防止拖動圖標即打開了桌面應用
  2200. U.MD.D.click(this, obj);
  2201. }, [_caleStudentDeskIconInfo[i]])
  2202. }, _frag); //
  2203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2206. }
  2207. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2208. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2209. _content = $$("div", {
  2210. className: "U_MD_D_KO",
  2211. "onmousedown": U.UF.C.closure(function (obj) {
  2212. //防止拖動圖標即打開了桌面應用
  2213. U.MD.D.click(this, obj);
  2214. }, [_thuioeStudentDeskIconInfo[i]]),
  2215. "onclick": U.UF.C.closure(function (obj) {
  2216. //防止拖動圖標即打開了桌面應用
  2217. U.MD.D.click(this, obj);
  2218. }, [_thuioeStudentDeskIconInfo[i]])
  2219. }, _frag); //
  2220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2223. }
  2224. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2225. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2226. _content = $$("div", {
  2227. className: "U_MD_D_KO",
  2228. "onmousedown": U.UF.C.closure(function (obj) {
  2229. //防止拖動圖標即打開了桌面應用
  2230. U.MD.D.click(this, obj);
  2231. }, [_tpcStudentDeskIconInfo[i]]),
  2232. "onclick": U.UF.C.closure(function (obj) {
  2233. //防止拖動圖標即打開了桌面應用
  2234. U.MD.D.click(this, obj);
  2235. }, [_tpcStudentDeskIconInfo[i]])
  2236. }, _frag); //
  2237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2240. } //
  2241. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2242. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2243. _content = $$("div", {
  2244. className: "U_MD_D_KO",
  2245. "onmousedown": U.UF.C.closure(function (obj) {
  2246. //防止拖動圖標即打開了桌面應用
  2247. U.MD.D.click(this, obj);
  2248. }, [_chjyjStudentDeskIconInfo[i]]),
  2249. "onclick": U.UF.C.closure(function (obj) {
  2250. //防止拖動圖標即打開了桌面應用
  2251. U.MD.D.click(this, obj);
  2252. }, [_chjyjStudentDeskIconInfo[i]])
  2253. }, _frag); //
  2254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2257. }
  2258. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2259. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2260. _content = $$("div", {
  2261. className: "U_MD_D_KO",
  2262. "onmousedown": U.UF.C.closure(function (obj) {
  2263. //防止拖動圖標即打開了桌面應用
  2264. U.MD.D.click(this, obj);
  2265. }, [_szjkyStudentDeskIconInfo[i]]),
  2266. "onclick": U.UF.C.closure(function (obj) {
  2267. //防止拖動圖標即打開了桌面應用
  2268. U.MD.D.click(this, obj);
  2269. }, [_szjkyStudentDeskIconInfo[i]])
  2270. }, _frag); //
  2271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2274. }
  2275. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2276. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2277. _content = $$("div", {
  2278. className: "U_MD_D_KO",
  2279. "onmousedown": U.UF.C.closure(function (obj) {
  2280. //防止拖動圖標即打開了桌面應用
  2281. U.MD.D.click(this, obj);
  2282. }, [_x020201StudentDeskIconInfo[i]]),
  2283. "onclick": U.UF.C.closure(function (obj) {
  2284. //防止拖動圖標即打開了桌面應用
  2285. U.MD.D.click(this, obj);
  2286. }, [_x020201StudentDeskIconInfo[i]])
  2287. }, _frag); //
  2288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2291. }
  2292. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2293. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖動圖標即打開了桌面應用
  2298. U.MD.D.click(this, obj);
  2299. }, [_SCNUETStudentDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖動圖標即打開了桌面應用
  2302. U.MD.D.click(this, obj);
  2303. }, [_SCNUETStudentDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2310. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖動圖標即打開了桌面應用
  2315. U.MD.D.click(this, obj);
  2316. }, [_dseiStudentDeskIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖動圖標即打開了桌面應用
  2319. U.MD.D.click(this, obj);
  2320. }, [_dseiStudentDeskIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2327. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2328. _content = $$("div", {
  2329. className: "U_MD_D_KO",
  2330. "onmousedown": U.UF.C.closure(function (obj) {
  2331. //防止拖動圖標即打開了桌面應用
  2332. U.MD.D.click(this, obj);
  2333. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2334. "onclick": U.UF.C.closure(function (obj) {
  2335. //防止拖動圖標即打開了桌面應用
  2336. U.MD.D.click(this, obj);
  2337. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2338. }, _frag); //
  2339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2342. }
  2343. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2344. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2345. _content = $$("div", {
  2346. className: "U_MD_D_KO",
  2347. "onmousedown": U.UF.C.closure(function (obj) {
  2348. //防止拖動圖標即打開了桌面應用
  2349. U.MD.D.click(this, obj);
  2350. }, [_nsfxStudentDeskIconInfo[i]]),
  2351. "onclick": U.UF.C.closure(function (obj) {
  2352. //防止拖動圖標即打開了桌面應用
  2353. U.MD.D.click(this, obj);
  2354. }, [_nsfxStudentDeskIconInfo[i]])
  2355. }, _frag); //
  2356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2359. }
  2360. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2361. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖動圖標即打開了桌面應用
  2366. U.MD.D.click(this, obj);
  2367. }, [_stiaStudentDeskIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖動圖標即打開了桌面應用
  2370. U.MD.D.click(this, obj);
  2371. }, [_stiaStudentDeskIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2378. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2379. _content = $$("div", {
  2380. className: "U_MD_D_KO",
  2381. "onmousedown": U.UF.C.closure(function (obj) {
  2382. //防止拖動圖標即打開了桌面應用
  2383. U.MD.D.click(this, obj);
  2384. }, [_szdjgStudentDeskIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖動圖標即打開了桌面應用
  2387. U.MD.D.click(this, obj);
  2388. }, [_szdjgStudentDeskIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2393. }
  2394. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2395. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖動圖標即打開了桌面應用
  2400. U.MD.D.click(this, obj);
  2401. }, [_x010607StudentDeskIconInfo[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖動圖標即打開了桌面應用
  2404. U.MD.D.click(this, obj);
  2405. }, [_x010607StudentDeskIconInfo[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2410. }
  2411. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2412. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖動圖標即打開了桌面應用
  2417. U.MD.D.click(this, obj);
  2418. }, [_xhlyStudentDeskIconInfo[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖動圖標即打開了桌面應用
  2421. U.MD.D.click(this, obj);
  2422. }, [_xhlyStudentDeskIconInfo[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2427. }
  2428. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2429. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖動圖標即打開了桌面應用
  2434. U.MD.D.click(this, obj);
  2435. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖動圖標即打開了桌面應用
  2438. U.MD.D.click(this, obj);
  2439. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2444. }
  2445. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2446. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖動圖標即打開了桌面應用
  2451. U.MD.D.click(this, obj);
  2452. }, [_x010503StudentDeskIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖動圖標即打開了桌面應用
  2455. U.MD.D.click(this, obj);
  2456. }, [_x010503StudentDeskIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2463. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖動圖標即打開了桌面應用
  2468. U.MD.D.click(this, obj);
  2469. }, [_x010504StudentDeskIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖動圖標即打開了桌面應用
  2472. U.MD.D.click(this, obj);
  2473. }, [_x010504StudentDeskIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2480. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖動圖標即打開了桌面應用
  2485. U.MD.D.click(this, obj);
  2486. }, [_x010204StudentDeskIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖動圖標即打開了桌面應用
  2489. U.MD.D.click(this, obj);
  2490. }, [_x010204StudentDeskIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2497. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖動圖標即打開了桌面應用
  2502. U.MD.D.click(this, obj);
  2503. }, [_trailStudentDeskIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖動圖標即打開了桌面應用
  2506. U.MD.D.click(this, obj);
  2507. }, [_trailStudentDeskIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2514. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖動圖標即打開了桌面應用
  2519. U.MD.D.click(this, obj);
  2520. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖動圖標即打開了桌面應用
  2523. U.MD.D.click(this, obj);
  2524. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2531. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖動圖標即打開了桌面應用
  2536. U.MD.D.click(this, obj);
  2537. }, [_x010608StudentDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖動圖標即打開了桌面應用
  2540. U.MD.D.click(this, obj);
  2541. }, [_x010608StudentDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2548. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖動圖標即打開了桌面應用
  2553. U.MD.D.click(this, obj);
  2554. }, [_x010611StudentDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖動圖標即打開了桌面應用
  2557. U.MD.D.click(this, obj);
  2558. }, [_x010611StudentDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2565. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖動圖標即打開了桌面應用
  2570. U.MD.D.click(this, obj);
  2571. }, [_tianyuantudentDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖動圖標即打開了桌面應用
  2574. U.MD.D.click(this, obj);
  2575. }, [_tianyuantudentDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2582. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2583. _content = $$("div", {
  2584. className: "U_MD_D_KO",
  2585. "onmousedown": U.UF.C.closure(function (obj) {
  2586. //防止拖動圖標即打開了桌面應用
  2587. U.MD.D.click(this, obj);
  2588. }, [_siesStudentDeskIconInfo[i]]),
  2589. "onclick": U.UF.C.closure(function (obj) {
  2590. //防止拖動圖標即打開了桌面應用
  2591. U.MD.D.click(this, obj);
  2592. }, [_siesStudentDeskIconInfo[i]])
  2593. }, _frag); //
  2594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2597. }
  2598. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2599. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2600. _content = $$("div", {
  2601. className: "U_MD_D_KO",
  2602. "onmousedown": U.UF.C.closure(function (obj) {
  2603. //防止拖動圖標即打開了桌面應用
  2604. U.MD.D.click(this, obj);
  2605. }, [_guzmsStudentDeskIconInfo[i]]),
  2606. "onclick": U.UF.C.closure(function (obj) {
  2607. //防止拖動圖標即打開了桌面應用
  2608. U.MD.D.click(this, obj);
  2609. }, [_guzmsStudentDeskIconInfo[i]])
  2610. }, _frag); //
  2611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2614. }
  2615. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2616. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2617. _content = $$("div", {
  2618. className: "U_MD_D_KO",
  2619. "onmousedown": U.UF.C.closure(function (obj) {
  2620. //防止拖動圖標即打開了桌面應用
  2621. U.MD.D.click(this, obj);
  2622. }, [_hkStudentDeskIconInfo[i]]),
  2623. "onclick": U.UF.C.closure(function (obj) {
  2624. //防止拖動圖標即打開了桌面應用
  2625. U.MD.D.click(this, obj);
  2626. }, [_hkStudentDeskIconInfo[i]])
  2627. }, _frag); //
  2628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2631. }
  2632. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2633. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2634. _content = $$("div", {
  2635. className: "U_MD_D_KO",
  2636. "onmousedown": U.UF.C.closure(function (obj) {
  2637. //防止拖動圖標即打開了桌面應用
  2638. U.MD.D.click(this, obj);
  2639. }, [_hkaceStudentDeskIconInfo[i]]),
  2640. "onclick": U.UF.C.closure(function (obj) {
  2641. //防止拖動圖標即打開了桌面應用
  2642. U.MD.D.click(this, obj);
  2643. }, [_hkaceStudentDeskIconInfo[i]])
  2644. }, _frag); //
  2645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2648. }
  2649. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2650. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2651. _content = $$("div", {
  2652. className: "U_MD_D_KO",
  2653. "onmousedown": U.UF.C.closure(function (obj) {
  2654. //防止拖動圖標即打開了桌面應用
  2655. U.MD.D.click(this, obj);
  2656. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2657. "onclick": U.UF.C.closure(function (obj) {
  2658. //防止拖動圖標即打開了桌面應用
  2659. U.MD.D.click(this, obj);
  2660. }, [_BSDNSstudentDesktopIconInfo[i]])
  2661. }, _frag); //
  2662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2665. }
  2666. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2667. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2668. _content = $$("div", {
  2669. className: "U_MD_D_KO",
  2670. "onmousedown": U.UF.C.closure(function (obj) {
  2671. //防止拖動圖標即打開了桌面應用
  2672. U.MD.D.click(this, obj);
  2673. }, [_cocobizStudentDeskIconInfo[i]]),
  2674. "onclick": U.UF.C.closure(function (obj) {
  2675. //防止拖動圖標即打開了桌面應用
  2676. U.MD.D.click(this, obj);
  2677. }, [_cocobizStudentDeskIconInfo[i]])
  2678. }, _frag); //
  2679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2682. }
  2683. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2684. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2685. _content = $$("div", {
  2686. className: "U_MD_D_KO",
  2687. "onmousedown": U.UF.C.closure(function (obj) {
  2688. //防止拖動圖標即打開了桌面應用
  2689. U.MD.D.click(this, obj);
  2690. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2691. "onclick": U.UF.C.closure(function (obj) {
  2692. //防止拖動圖標即打開了桌面應用
  2693. U.MD.D.click(this, obj);
  2694. }, [_xxzjkyStudentDeskIconInfo[i]])
  2695. }, _frag); //
  2696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2699. }
  2700. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2701. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2702. _content = $$("div", {
  2703. className: "U_MD_D_KO",
  2704. "onmousedown": U.UF.C.closure(function (obj) {
  2705. //防止拖動圖標即打開了桌面應用
  2706. U.MD.D.click(this, obj);
  2707. }, [_studentDesktopIconInfo[i]]),
  2708. "onclick": U.UF.C.closure(function (obj) {
  2709. //防止拖動圖標即打開了桌面應用
  2710. U.MD.D.click(this, obj);
  2711. }, [_studentDesktopIconInfo[i]])
  2712. }, _frag); //
  2713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2716. }
  2717. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2718. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2719. _content = $$("div", {
  2720. className: "U_MD_D_KO",
  2721. "onmousedown": U.UF.C.closure(function (obj) {
  2722. //防止拖動圖標即打開了桌面應用
  2723. U.MD.D.click(this, obj);
  2724. }, [_tcStudentDeskIconInfo[i]]),
  2725. "onclick": U.UF.C.closure(function (obj) {
  2726. //防止拖動圖標即打開了桌面應用
  2727. U.MD.D.click(this, obj);
  2728. }, [_tcStudentDeskIconInfo[i]])
  2729. }, _frag); //
  2730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2733. }
  2734. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2735. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2736. _content = $$("div", {
  2737. className: "U_MD_D_KO",
  2738. "onmousedown": U.UF.C.closure(function (obj) {
  2739. //防止拖動圖標即打開了桌面應用
  2740. U.MD.D.click(this, obj);
  2741. }, [_szscStudentDeskIconInfo[i]]),
  2742. "onclick": U.UF.C.closure(function (obj) {
  2743. //防止拖動圖標即打開了桌面應用
  2744. U.MD.D.click(this, obj);
  2745. }, [_szscStudentDeskIconInfo[i]])
  2746. }, _frag); //
  2747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2750. }
  2751. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2752. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2753. _content = $$("div", {
  2754. className: "U_MD_D_KO",
  2755. "onmousedown": U.UF.C.closure(function (obj) {
  2756. //防止拖動圖標即打開了桌面應用
  2757. U.MD.D.click(this, obj);
  2758. }, [_studentDesktopIconInfo3[i]]),
  2759. "onclick": U.UF.C.closure(function (obj) {
  2760. //防止拖動圖標即打開了桌面應用
  2761. U.MD.D.click(this, obj);
  2762. }, [_studentDesktopIconInfo3[i]])
  2763. }, _frag); //
  2764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2767. }
  2768. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2769. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2770. _content = $$("div", {
  2771. className: "U_MD_D_KO",
  2772. "onmousedown": U.UF.C.closure(function (obj) {
  2773. //防止拖動圖標即打開了桌面應用
  2774. U.MD.D.click(this, obj);
  2775. }, [_studentDesktopIconInfo2[i]]),
  2776. "onclick": U.UF.C.closure(function (obj) {
  2777. //防止拖動圖標即打開了桌面應用
  2778. U.MD.D.click(this, obj);
  2779. }, [_studentDesktopIconInfo2[i]])
  2780. }, _frag); //
  2781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2784. }
  2785. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2786. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2787. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2788. continue
  2789. }
  2790. _content = $$("div", {
  2791. className: "U_MD_D_KO",
  2792. "onmousedown": U.UF.C.closure(function (obj) {
  2793. //防止拖動圖標即打開了桌面應用
  2794. U.MD.D.click(this, obj);
  2795. }, [_wanketeacherDesktopIconInfo[i]]),
  2796. "onclick": U.UF.C.closure(function (obj) {
  2797. //防止拖動圖標即打開了桌面應用
  2798. U.MD.D.click(this, obj);
  2799. }, [_wanketeacherDesktopIconInfo[i]])
  2800. }, _frag); //
  2801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2804. }
  2805. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2806. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2807. _content = $$("div", {
  2808. className: "U_MD_D_KO",
  2809. "onmousedown": U.UF.C.closure(function (obj) {
  2810. //防止拖動圖標即打開了桌面應用
  2811. U.MD.D.click(this, obj);
  2812. }, [_wankeAdminDesktopIconInfo[i]]),
  2813. "onclick": U.UF.C.closure(function (obj) {
  2814. //防止拖動圖標即打開了桌面應用
  2815. U.MD.D.click(this, obj);
  2816. }, [_wankeAdminDesktopIconInfo[i]])
  2817. }, _frag); //
  2818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2821. }
  2822. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2823. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2824. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2825. continue
  2826. }
  2827. _content = $$("div", {
  2828. className: "U_MD_D_KO",
  2829. "onmousedown": U.UF.C.closure(function (obj) {
  2830. //防止拖動圖標即打開了桌面應用
  2831. U.MD.D.click(this, obj);
  2832. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2833. "onclick": U.UF.C.closure(function (obj) {
  2834. //防止拖動圖標即打開了桌面應用
  2835. U.MD.D.click(this, obj);
  2836. }, [_scnuaiTeacherDeskIconInfo[i]])
  2837. }, _frag); //
  2838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2841. }
  2842. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2843. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2844. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2845. continue
  2846. }
  2847. _content = $$("div", {
  2848. className: "U_MD_D_KO",
  2849. "onmousedown": U.UF.C.closure(function (obj) {
  2850. //防止拖動圖標即打開了桌面應用
  2851. U.MD.D.click(this, obj);
  2852. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2853. "onclick": U.UF.C.closure(function (obj) {
  2854. //防止拖動圖標即打開了桌面應用
  2855. U.MD.D.click(this, obj);
  2856. }, [_BSDNSteacherDesktopIconInfo[i]])
  2857. }, _frag); //
  2858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2861. }
  2862. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2863. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2864. _content = $$("div", {
  2865. className: "U_MD_D_KO",
  2866. "onmousedown": U.UF.C.closure(function (obj) {
  2867. //防止拖動圖標即打開了桌面應用
  2868. U.MD.D.click(this, obj);
  2869. }, [_scnuaiAdminDeskIconInfo[i]]),
  2870. "onclick": U.UF.C.closure(function (obj) {
  2871. //防止拖動圖標即打開了桌面應用
  2872. U.MD.D.click(this, obj);
  2873. }, [_scnuaiAdminDeskIconInfo[i]])
  2874. }, _frag); //
  2875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2878. }
  2879. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2880. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2881. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2882. continue
  2883. }
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖動圖標即打開了桌面應用
  2888. U.MD.D.click(this, obj);
  2889. }, [_jccssylTeacherDeskIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖動圖標即打開了桌面應用
  2892. U.MD.D.click(this, obj);
  2893. }, [_jccssylTeacherDeskIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2900. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2901. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2902. continue
  2903. }
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖動圖標即打開了桌面應用
  2908. U.MD.D.click(this, obj);
  2909. }, [_caleTeacherDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖動圖標即打開了桌面應用
  2912. U.MD.D.click(this, obj);
  2913. }, [_caleTeacherDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2920. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖動圖標即打開了桌面應用
  2925. U.MD.D.click(this, obj);
  2926. }, [_tpcOrganizerDeskIconInfo[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖動圖標即打開了桌面應用
  2929. U.MD.D.click(this, obj);
  2930. }, [_tpcOrganizerDeskIconInfo[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2935. }
  2936. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2937. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2938. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2939. continue
  2940. }
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖動圖標即打開了桌面應用
  2945. U.MD.D.click(this, obj);
  2946. }, [_tpcTeacherDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖動圖標即打開了桌面應用
  2949. U.MD.D.click(this, obj);
  2950. }, [_tpcTeacherDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2957. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2958. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2959. continue
  2960. }
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖動圖標即打開了桌面應用
  2965. U.MD.D.click(this, obj);
  2966. }, [_teacherDesktopIconInfo2[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖動圖標即打開了桌面應用
  2969. U.MD.D.click(this, obj);
  2970. }, [_teacherDesktopIconInfo2[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2975. }
  2976. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2977. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2978. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2979. continue
  2980. }
  2981. _content = $$("div", {
  2982. className: "U_MD_D_KO",
  2983. "onmousedown": U.UF.C.closure(function (obj) {
  2984. //防止拖動圖標即打開了桌面應用
  2985. U.MD.D.click(this, obj);
  2986. }, [_thuioeTeacherDeskIconInfo[i]]),
  2987. "onclick": U.UF.C.closure(function (obj) {
  2988. //防止拖動圖標即打開了桌面應用
  2989. U.MD.D.click(this, obj);
  2990. }, [_thuioeTeacherDeskIconInfo[i]])
  2991. }, _frag); //
  2992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2995. }
  2996. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2997. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2998. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2999. continue
  3000. }
  3001. _content = $$("div", {
  3002. className: "U_MD_D_KO",
  3003. "onmousedown": U.UF.C.closure(function (obj) {
  3004. //防止拖動圖標即打開了桌面應用
  3005. U.MD.D.click(this, obj);
  3006. }, [_lotechTeacherDeskIconInfo[i]]),
  3007. "onclick": U.UF.C.closure(function (obj) {
  3008. //防止拖動圖標即打開了桌面應用
  3009. U.MD.D.click(this, obj);
  3010. }, [_lotechTeacherDeskIconInfo[i]])
  3011. }, _frag); //
  3012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3015. }//
  3016. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3017. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3018. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3019. continue
  3020. }
  3021. _content = $$("div", {
  3022. className: "U_MD_D_KO",
  3023. "onmousedown": U.UF.C.closure(function (obj) {
  3024. //防止拖動圖標即打開了桌面應用
  3025. U.MD.D.click(this, obj);
  3026. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3027. "onclick": U.UF.C.closure(function (obj) {
  3028. //防止拖動圖標即打開了桌面應用
  3029. U.MD.D.click(this, obj);
  3030. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3031. }, _frag); //
  3032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3035. }
  3036. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3037. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3038. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3039. continue
  3040. }
  3041. _content = $$("div", {
  3042. className: "U_MD_D_KO",
  3043. "onmousedown": U.UF.C.closure(function (obj) {
  3044. //防止拖動圖標即打開了桌面應用
  3045. U.MD.D.click(this, obj);
  3046. }, [_siesTeacherDeskIconInfo[i]]),
  3047. "onclick": U.UF.C.closure(function (obj) {
  3048. //防止拖動圖標即打開了桌面應用
  3049. U.MD.D.click(this, obj);
  3050. }, [_siesTeacherDeskIconInfo[i]])
  3051. }, _frag); //
  3052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3055. }
  3056. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3057. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3058. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3059. continue
  3060. }
  3061. _content = $$("div", {
  3062. className: "U_MD_D_KO",
  3063. "onmousedown": U.UF.C.closure(function (obj) {
  3064. //防止拖動圖標即打開了桌面應用
  3065. U.MD.D.click(this, obj);
  3066. }, [_guzmsTeacherDeskIconInfo[i]]),
  3067. "onclick": U.UF.C.closure(function (obj) {
  3068. //防止拖動圖標即打開了桌面應用
  3069. U.MD.D.click(this, obj);
  3070. }, [_guzmsTeacherDeskIconInfo[i]])
  3071. }, _frag); //
  3072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3075. }
  3076. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3077. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3078. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3079. continue
  3080. }
  3081. _content = $$("div", {
  3082. className: "U_MD_D_KO",
  3083. "onmousedown": U.UF.C.closure(function (obj) {
  3084. //防止拖動圖標即打開了桌面應用
  3085. U.MD.D.click(this, obj);
  3086. }, [_longhuaTeacherDeskIconInfo[i]]),
  3087. "onclick": U.UF.C.closure(function (obj) {
  3088. //防止拖動圖標即打開了桌面應用
  3089. U.MD.D.click(this, obj);
  3090. }, [_longhuaTeacherDeskIconInfo[i]])
  3091. }, _frag); //
  3092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3095. }
  3096. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3097. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3098. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3099. continue
  3100. }
  3101. _content = $$("div", {
  3102. className: "U_MD_D_KO",
  3103. "onmousedown": U.UF.C.closure(function (obj) {
  3104. //防止拖動圖標即打開了桌面應用
  3105. U.MD.D.click(this, obj);
  3106. }, [_ytyTeacherDeskIconInfo[i]]),
  3107. "onclick": U.UF.C.closure(function (obj) {
  3108. //防止拖動圖標即打開了桌面應用
  3109. U.MD.D.click(this, obj);
  3110. }, [_ytyTeacherDeskIconInfo[i]])
  3111. }, _frag); //
  3112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3115. }
  3116. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3117. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3118. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3119. continue
  3120. }
  3121. _content = $$("div", {
  3122. className: "U_MD_D_KO",
  3123. "onmousedown": U.UF.C.closure(function (obj) {
  3124. //防止拖動圖標即打開了桌面應用
  3125. U.MD.D.click(this, obj);
  3126. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3127. "onclick": U.UF.C.closure(function (obj) {
  3128. //防止拖動圖標即打開了桌面應用
  3129. U.MD.D.click(this, obj);
  3130. }, [_yunhaiTeacherDeskIconInfo[i]])
  3131. }, _frag); //
  3132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3135. } //_hkStudentDeskIconInfo
  3136. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3137. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3138. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3139. continue
  3140. }
  3141. _content = $$("div", {
  3142. className: "U_MD_D_KO",
  3143. "onmousedown": U.UF.C.closure(function (obj) {
  3144. //防止拖動圖標即打開了桌面應用
  3145. U.MD.D.click(this, obj);
  3146. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3147. "onclick": U.UF.C.closure(function (obj) {
  3148. //防止拖動圖標即打開了桌面應用
  3149. U.MD.D.click(this, obj);
  3150. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3151. }, _frag); //
  3152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3155. }
  3156. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3157. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3158. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3159. continue
  3160. }
  3161. _content = $$("div", {
  3162. className: "U_MD_D_KO",
  3163. "onmousedown": U.UF.C.closure(function (obj) {
  3164. //防止拖動圖標即打開了桌面應用
  3165. U.MD.D.click(this, obj);
  3166. }, [_hkTeacherDeskIconInfo[i]]),
  3167. "onclick": U.UF.C.closure(function (obj) {
  3168. //防止拖動圖標即打開了桌面應用
  3169. U.MD.D.click(this, obj);
  3170. }, [_hkTeacherDeskIconInfo[i]])
  3171. }, _frag); //
  3172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3175. }
  3176. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3177. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3178. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3179. continue
  3180. }
  3181. _content = $$("div", {
  3182. className: "U_MD_D_KO",
  3183. "onmousedown": U.UF.C.closure(function (obj) {
  3184. //防止拖動圖標即打開了桌面應用
  3185. U.MD.D.click(this, obj);
  3186. }, [_hkaceTeacherDeskIconInfo[i]]),
  3187. "onclick": U.UF.C.closure(function (obj) {
  3188. //防止拖動圖標即打開了桌面應用
  3189. U.MD.D.click(this, obj);
  3190. }, [_hkaceTeacherDeskIconInfo[i]])
  3191. }, _frag); //
  3192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3195. }
  3196. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3197. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3198. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3199. continue
  3200. }
  3201. _content = $$("div", {
  3202. className: "U_MD_D_KO",
  3203. "onmousedown": U.UF.C.closure(function (obj) {
  3204. //防止拖動圖標即打開了桌面應用
  3205. U.MD.D.click(this, obj);
  3206. }, [_cocobizTeacherDeskIconInfo[i]]),
  3207. "onclick": U.UF.C.closure(function (obj) {
  3208. //防止拖動圖標即打開了桌面應用
  3209. U.MD.D.click(this, obj);
  3210. }, [_cocobizTeacherDeskIconInfo[i]])
  3211. }, _frag); //
  3212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3215. }
  3216. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3217. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3218. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3219. continue
  3220. }
  3221. _content = $$("div", {
  3222. className: "U_MD_D_KO",
  3223. "onmousedown": U.UF.C.closure(function (obj) {
  3224. //防止拖動圖標即打開了桌面應用
  3225. U.MD.D.click(this, obj);
  3226. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3227. "onclick": U.UF.C.closure(function (obj) {
  3228. //防止拖動圖標即打開了桌面應用
  3229. U.MD.D.click(this, obj);
  3230. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3231. }, _frag); //
  3232. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3233. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3234. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3235. }
  3236. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3237. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3238. _content = $$("div", {
  3239. className: "U_MD_D_KO",
  3240. "onmousedown": U.UF.C.closure(function (obj) {
  3241. //防止拖動圖標即打開了桌面應用
  3242. U.MD.D.click(this, obj);
  3243. }, [_gdjgAdminDeskIconInfo[i]]),
  3244. "onclick": U.UF.C.closure(function (obj) {
  3245. //防止拖動圖標即打開了桌面應用
  3246. U.MD.D.click(this, obj);
  3247. }, [_gdjgAdminDeskIconInfo[i]])
  3248. }, _frag); //
  3249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3252. }
  3253. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3254. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3255. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3256. continue
  3257. }
  3258. _content = $$("div", {
  3259. className: "U_MD_D_KO",
  3260. "onmousedown": U.UF.C.closure(function (obj) {
  3261. //防止拖動圖標即打開了桌面應用
  3262. U.MD.D.click(this, obj);
  3263. }, [_gdjgTeacherDeskIconInfo[i]]),
  3264. "onclick": U.UF.C.closure(function (obj) {
  3265. //防止拖動圖標即打開了桌面應用
  3266. U.MD.D.click(this, obj);
  3267. }, [_gdjgTeacherDeskIconInfo[i]])
  3268. }, _frag); //
  3269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3272. }
  3273. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3274. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3275. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3276. continue
  3277. }
  3278. _content = $$("div", {
  3279. className: "U_MD_D_KO",
  3280. "onmousedown": U.UF.C.closure(function (obj) {
  3281. //防止拖動圖標即打開了桌面應用
  3282. U.MD.D.click(this, obj);
  3283. }, [_szherTeacherDeskIconInfo[i]]),
  3284. "onclick": U.UF.C.closure(function (obj) {
  3285. //防止拖動圖標即打開了桌面應用
  3286. U.MD.D.click(this, obj);
  3287. }, [_szherTeacherDeskIconInfo[i]])
  3288. }, _frag); //
  3289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3292. }
  3293. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3294. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3295. _content = $$("div", {
  3296. className: "U_MD_D_KO",
  3297. "onmousedown": U.UF.C.closure(function (obj) {
  3298. //防止拖動圖標即打開了桌面應用
  3299. U.MD.D.click(this, obj);
  3300. }, [_heyuannAdminDeskIconInfo[i]]),
  3301. "onclick": U.UF.C.closure(function (obj) {
  3302. //防止拖動圖標即打開了桌面應用
  3303. U.MD.D.click(this, obj);
  3304. }, [_heyuannAdminDeskIconInfo[i]])
  3305. }, _frag); //
  3306. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3307. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3308. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3309. }
  3310. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3311. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3312. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3313. continue
  3314. }
  3315. _content = $$("div", {
  3316. className: "U_MD_D_KO",
  3317. "onmousedown": U.UF.C.closure(function (obj) {
  3318. //防止拖動圖標即打開了桌面應用
  3319. U.MD.D.click(this, obj);
  3320. }, [_heyuanTeacherDeskIconInfo[i]]),
  3321. "onclick": U.UF.C.closure(function (obj) {
  3322. //防止拖動圖標即打開了桌面應用
  3323. U.MD.D.click(this, obj);
  3324. }, [_heyuanTeacherDeskIconInfo[i]])
  3325. }, _frag); //
  3326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3329. } //
  3330. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3331. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3332. _content = $$("div", {
  3333. className: "U_MD_D_KO",
  3334. "onmousedown": U.UF.C.closure(function (obj) {
  3335. //防止拖動圖標即打開了桌面應用
  3336. U.MD.D.click(this, obj);
  3337. }, [_dseiAdminDeskIconInfo[i]]),
  3338. "onclick": U.UF.C.closure(function (obj) {
  3339. //防止拖動圖標即打開了桌面應用
  3340. U.MD.D.click(this, obj);
  3341. }, [_dseiAdminDeskIconInfo[i]])
  3342. }, _frag); //
  3343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3346. }
  3347. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3348. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3349. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3350. continue
  3351. }
  3352. _content = $$("div", {
  3353. className: "U_MD_D_KO",
  3354. "onmousedown": U.UF.C.closure(function (obj) {
  3355. //防止拖動圖標即打開了桌面應用
  3356. U.MD.D.click(this, obj);
  3357. }, [_dseiTeacherDeskIconInfo[i]]),
  3358. "onclick": U.UF.C.closure(function (obj) {
  3359. //防止拖動圖標即打開了桌面應用
  3360. U.MD.D.click(this, obj);
  3361. }, [_dseiTeacherDeskIconInfo[i]])
  3362. }, _frag); //
  3363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3366. } //
  3367. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3368. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3369. _content = $$("div", {
  3370. className: "U_MD_D_KO",
  3371. "onmousedown": U.UF.C.closure(function (obj) {
  3372. //防止拖動圖標即打開了桌面應用
  3373. U.MD.D.click(this, obj);
  3374. }, [_chjyjAdminDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖動圖標即打開了桌面應用
  3377. U.MD.D.click(this, obj);
  3378. }, [_chjyjAdminDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3383. }//
  3384. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3385. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3387. continue
  3388. }
  3389. _content = $$("div", {
  3390. className: "U_MD_D_KO",
  3391. "onmousedown": U.UF.C.closure(function (obj) {
  3392. //防止拖動圖標即打開了桌面應用
  3393. U.MD.D.click(this, obj);
  3394. }, [_chjyjTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖動圖標即打開了桌面應用
  3397. U.MD.D.click(this, obj);
  3398. }, [_chjyjTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. }
  3404. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3405. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3406. _content = $$("div", {
  3407. className: "U_MD_D_KO",
  3408. "onmousedown": U.UF.C.closure(function (obj) {
  3409. //防止拖動圖標即打開了桌面應用
  3410. U.MD.D.click(this, obj);
  3411. }, [_szjkyAdminDeskIconInfo[i]]),
  3412. "onclick": U.UF.C.closure(function (obj) {
  3413. //防止拖動圖標即打開了桌面應用
  3414. U.MD.D.click(this, obj);
  3415. }, [_szjkyAdminDeskIconInfo[i]])
  3416. }, _frag); //
  3417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3420. }//
  3421. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3422. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3423. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3424. continue
  3425. }
  3426. _content = $$("div", {
  3427. className: "U_MD_D_KO",
  3428. "onmousedown": U.UF.C.closure(function (obj) {
  3429. //防止拖動圖標即打開了桌面應用
  3430. U.MD.D.click(this, obj);
  3431. }, [_szjkyTeacherDeskIconInfo[i]]),
  3432. "onclick": U.UF.C.closure(function (obj) {
  3433. //防止拖動圖標即打開了桌面應用
  3434. U.MD.D.click(this, obj);
  3435. }, [_szjkyTeacherDeskIconInfo[i]])
  3436. }, _frag); //
  3437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3440. }
  3441. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3442. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3443. _content = $$("div", {
  3444. className: "U_MD_D_KO",
  3445. "onmousedown": U.UF.C.closure(function (obj) {
  3446. //防止拖動圖標即打開了桌面應用
  3447. U.MD.D.click(this, obj);
  3448. }, [_x020201AdminDeskIconInfo[i]]),
  3449. "onclick": U.UF.C.closure(function (obj) {
  3450. //防止拖動圖標即打開了桌面應用
  3451. U.MD.D.click(this, obj);
  3452. }, [_x020201AdminDeskIconInfo[i]])
  3453. }, _frag); //
  3454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3457. }//
  3458. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3459. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3460. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3461. continue
  3462. }
  3463. _content = $$("div", {
  3464. className: "U_MD_D_KO",
  3465. "onmousedown": U.UF.C.closure(function (obj) {
  3466. //防止拖動圖標即打開了桌面應用
  3467. U.MD.D.click(this, obj);
  3468. }, [_x020201TeacherDeskIconInfo[i]]),
  3469. "onclick": U.UF.C.closure(function (obj) {
  3470. //防止拖動圖標即打開了桌面應用
  3471. U.MD.D.click(this, obj);
  3472. }, [_x020201TeacherDeskIconInfo[i]])
  3473. }, _frag); //
  3474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3477. }
  3478. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3479. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3480. _content = $$("div", {
  3481. className: "U_MD_D_KO",
  3482. "onmousedown": U.UF.C.closure(function (obj) {
  3483. //防止拖動圖標即打開了桌面應用
  3484. U.MD.D.click(this, obj);
  3485. }, [_SCNUETAdminDeskIconInfo[i]]),
  3486. "onclick": U.UF.C.closure(function (obj) {
  3487. //防止拖動圖標即打開了桌面應用
  3488. U.MD.D.click(this, obj);
  3489. }, [_SCNUETAdminDeskIconInfo[i]])
  3490. }, _frag); //
  3491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3494. }//
  3495. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3496. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3497. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3498. continue
  3499. }
  3500. _content = $$("div", {
  3501. className: "U_MD_D_KO",
  3502. "onmousedown": U.UF.C.closure(function (obj) {
  3503. //防止拖動圖標即打開了桌面應用
  3504. U.MD.D.click(this, obj);
  3505. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3506. "onclick": U.UF.C.closure(function (obj) {
  3507. //防止拖動圖標即打開了桌面應用
  3508. U.MD.D.click(this, obj);
  3509. }, [_SCNUETTeacherDeskIconInfo[i]])
  3510. }, _frag); //
  3511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3514. }
  3515. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3516. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖動圖標即打開了桌面應用
  3521. U.MD.D.click(this, obj);
  3522. }, [_futianAdminDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖動圖標即打開了桌面應用
  3525. U.MD.D.click(this, obj);
  3526. }, [_futianAdminDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3531. }
  3532. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3533. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3534. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3535. continue
  3536. }
  3537. _content = $$("div", {
  3538. className: "U_MD_D_KO",
  3539. "onmousedown": U.UF.C.closure(function (obj) {
  3540. //防止拖動圖標即打開了桌面應用
  3541. U.MD.D.click(this, obj);
  3542. }, [_futianTeacherDeskIconInfo[i]]),
  3543. "onclick": U.UF.C.closure(function (obj) {
  3544. //防止拖動圖標即打開了桌面應用
  3545. U.MD.D.click(this, obj);
  3546. }, [_futianTeacherDeskIconInfo[i]])
  3547. }, _frag); //
  3548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3551. }
  3552. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3553. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3554. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3555. continue
  3556. }
  3557. _content = $$("div", {
  3558. className: "U_MD_D_KO",
  3559. "onmousedown": U.UF.C.closure(function (obj) {
  3560. //防止拖動圖標即打開了桌面應用
  3561. U.MD.D.click(this, obj);
  3562. }, [_MingdeTeacherDeskIcon[i]]),
  3563. "onclick": U.UF.C.closure(function (obj) {
  3564. //防止拖動圖標即打開了桌面應用
  3565. U.MD.D.click(this, obj);
  3566. }, [_MingdeTeacherDeskIcon[i]])
  3567. }, _frag); //
  3568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3571. }
  3572. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3573. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3574. _content = $$("div", {
  3575. className: "U_MD_D_KO",
  3576. "onmousedown": U.UF.C.closure(function (obj) {
  3577. //防止拖動圖標即打開了桌面應用
  3578. U.MD.D.click(this, obj);
  3579. }, [_lhsAdminDesktopIconInfo[i]]),
  3580. "onclick": U.UF.C.closure(function (obj) {
  3581. //防止拖動圖標即打開了桌面應用
  3582. U.MD.D.click(this, obj);
  3583. }, [_lhsAdminDesktopIconInfo[i]])
  3584. }, _frag); //
  3585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3588. }
  3589. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3590. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3591. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3592. continue
  3593. }
  3594. _content = $$("div", {
  3595. className: "U_MD_D_KO",
  3596. "onmousedown": U.UF.C.closure(function (obj) {
  3597. //防止拖動圖標即打開了桌面應用
  3598. U.MD.D.click(this, obj);
  3599. }, [_lhsteacherDesktopIconInfo[i]]),
  3600. "onclick": U.UF.C.closure(function (obj) {
  3601. //防止拖動圖標即打開了桌面應用
  3602. U.MD.D.click(this, obj);
  3603. }, [_lhsteacherDesktopIconInfo[i]])
  3604. }, _frag); //
  3605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3608. }
  3609. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3610. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3611. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3612. continue
  3613. }
  3614. _content = $$("div", {
  3615. className: "U_MD_D_KO",
  3616. "onmousedown": U.UF.C.closure(function (obj) {
  3617. //防止拖動圖標即打開了桌面應用
  3618. U.MD.D.click(this, obj);
  3619. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3620. "onclick": U.UF.C.closure(function (obj) {
  3621. //防止拖動圖標即打開了桌面應用
  3622. U.MD.D.click(this, obj);
  3623. }, [_zhoujiateacherDesktopIconInfo[i]])
  3624. }, _frag); //
  3625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3628. }
  3629. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3630. for (i = 0; i < _hanDeskIcon.length; i++) {
  3631. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3632. continue
  3633. }
  3634. _content = $$("div", {
  3635. className: "U_MD_D_KO",
  3636. "onmousedown": U.UF.C.closure(function (obj) {
  3637. //防止拖動圖標即打開了桌面應用
  3638. U.MD.D.click(this, obj);
  3639. }, [_hanDeskIcon[i]]),
  3640. "onclick": U.UF.C.closure(function (obj) {
  3641. //防止拖動圖標即打開了桌面應用
  3642. U.MD.D.click(this, obj);
  3643. }, [_hanDeskIcon[i]])
  3644. }, _frag); //
  3645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3648. }
  3649. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3650. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3651. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3652. continue
  3653. }
  3654. _content = $$("div", {
  3655. className: "U_MD_D_KO",
  3656. "onmousedown": U.UF.C.closure(function (obj) {
  3657. //防止拖動圖標即打開了桌面應用
  3658. U.MD.D.click(this, obj);
  3659. }, [_orgStemDeskIcon[i]]),
  3660. "onclick": U.UF.C.closure(function (obj) {
  3661. //防止拖動圖標即打開了桌面應用
  3662. U.MD.D.click(this, obj);
  3663. }, [_orgStemDeskIcon[i]])
  3664. }, _frag); //
  3665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3668. }
  3669. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3670. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3671. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3672. continue
  3673. }
  3674. _content = $$("div", {
  3675. className: "U_MD_D_KO",
  3676. "onmousedown": U.UF.C.closure(function (obj) {
  3677. //防止拖動圖標即打開了桌面應用
  3678. U.MD.D.click(this, obj);
  3679. }, [_szulsDeskIcon[i]]),
  3680. "onclick": U.UF.C.closure(function (obj) {
  3681. //防止拖動圖標即打開了桌面應用
  3682. U.MD.D.click(this, obj);
  3683. }, [_szulsDeskIcon[i]])
  3684. }, _frag); //
  3685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3688. }
  3689. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3690. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3691. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3692. continue
  3693. }
  3694. _content = $$("div", {
  3695. className: "U_MD_D_KO",
  3696. "onmousedown": U.UF.C.closure(function (obj) {
  3697. //防止拖動圖標即打開了桌面應用
  3698. U.MD.D.click(this, obj);
  3699. }, [_orgDesktopIconInfo[i]]),
  3700. "onclick": U.UF.C.closure(function (obj) {
  3701. //防止拖動圖標即打開了桌面應用
  3702. U.MD.D.click(this, obj);
  3703. }, [_orgDesktopIconInfo[i]])
  3704. }, _frag); //
  3705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3708. }
  3709. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3710. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3711. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3712. continue
  3713. }
  3714. _content = $$("div", {
  3715. className: "U_MD_D_KO",
  3716. "onmousedown": U.UF.C.closure(function (obj) {
  3717. //防止拖動圖標即打開了桌面應用
  3718. U.MD.D.click(this, obj);
  3719. }, [_schoolDesktopIconInfo[i]]),
  3720. "onclick": U.UF.C.closure(function (obj) {
  3721. //防止拖動圖標即打開了桌面應用
  3722. U.MD.D.click(this, obj);
  3723. }, [_schoolDesktopIconInfo[i]])
  3724. }, _frag); //
  3725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3728. }
  3729. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3730. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3731. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3732. continue
  3733. }
  3734. _content = $$("div", {
  3735. className: "U_MD_D_KO",
  3736. "onmousedown": U.UF.C.closure(function (obj) {
  3737. //防止拖動圖標即打開了桌面應用
  3738. U.MD.D.click(this, obj);
  3739. }, [_GMteacherDesktopIconInfo[i]]),
  3740. "onclick": U.UF.C.closure(function (obj) {
  3741. //防止拖動圖標即打開了桌面應用
  3742. U.MD.D.click(this, obj);
  3743. }, [_GMteacherDesktopIconInfo[i]])
  3744. }, _frag); //
  3745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3748. }
  3749. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3750. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3751. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3752. continue
  3753. }
  3754. _content = $$("div", {
  3755. className: "U_MD_D_KO",
  3756. "onmousedown": U.UF.C.closure(function (obj) {
  3757. //防止拖動圖標即打開了桌面應用
  3758. U.MD.D.click(this, obj);
  3759. }, [_SONGteacherDesktopIconInfo[i]]),
  3760. "onclick": U.UF.C.closure(function (obj) {
  3761. //防止拖動圖標即打開了桌面應用
  3762. U.MD.D.click(this, obj);
  3763. }, [_SONGteacherDesktopIconInfo[i]])
  3764. }, _frag); //
  3765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3768. }
  3769. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3770. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3771. _content = $$("div", {
  3772. className: "U_MD_D_KO",
  3773. "onmousedown": U.UF.C.closure(function (obj) {
  3774. //防止拖動圖標即打開了桌面應用
  3775. U.MD.D.click(this, obj);
  3776. }, [_GMstudentDesktopIconInfo[i]]),
  3777. "onclick": U.UF.C.closure(function (obj) {
  3778. //防止拖動圖標即打開了桌面應用
  3779. U.MD.D.click(this, obj);
  3780. }, [_GMstudentDesktopIconInfo[i]])
  3781. }, _frag); //
  3782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3785. }
  3786. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3787. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3788. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3789. continue
  3790. }
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖動圖標即打開了桌面應用
  3795. U.MD.D.click(this, obj);
  3796. }, [_tcTeacherDeskIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖動圖標即打開了桌面應用
  3799. U.MD.D.click(this, obj);
  3800. }, [_tcTeacherDeskIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3807. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3808. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3809. continue
  3810. }
  3811. _content = $$("div", {
  3812. className: "U_MD_D_KO",
  3813. "onmousedown": U.UF.C.closure(function (obj) {
  3814. //防止拖動圖標即打開了桌面應用
  3815. U.MD.D.click(this, obj);
  3816. }, [_tcOrganizerDeskIconInfo[i]]),
  3817. "onclick": U.UF.C.closure(function (obj) {
  3818. //防止拖動圖標即打開了桌面應用
  3819. U.MD.D.click(this, obj);
  3820. }, [_tcOrganizerDeskIconInfo[i]])
  3821. }, _frag); //
  3822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3825. }
  3826. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3827. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3828. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3829. continue
  3830. }
  3831. _content = $$("div", {
  3832. className: "U_MD_D_KO",
  3833. "onmousedown": U.UF.C.closure(function (obj) {
  3834. //防止拖動圖標即打開了桌面應用
  3835. U.MD.D.click(this, obj);
  3836. }, [_szscTeacherDeskIconInfo[i]]),
  3837. "onclick": U.UF.C.closure(function (obj) {
  3838. //防止拖動圖標即打開了桌面應用
  3839. U.MD.D.click(this, obj);
  3840. }, [_szscTeacherDeskIconInfo[i]])
  3841. }, _frag); //
  3842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3845. }
  3846. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3847. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3848. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3849. continue
  3850. }
  3851. _content = $$("div", {
  3852. className: "U_MD_D_KO",
  3853. "onmousedown": U.UF.C.closure(function (obj) {
  3854. //防止拖動圖標即打開了桌面應用
  3855. U.MD.D.click(this, obj);
  3856. }, [_szscOrganizerDeskIconInfo[i]]),
  3857. "onclick": U.UF.C.closure(function (obj) {
  3858. //防止拖動圖標即打開了桌面應用
  3859. U.MD.D.click(this, obj);
  3860. }, [_szscOrganizerDeskIconInfo[i]])
  3861. }, _frag); //
  3862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3865. }
  3866. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3867. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3868. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3869. continue
  3870. }
  3871. _content = $$("div", {
  3872. className: "U_MD_D_KO",
  3873. "onmousedown": U.UF.C.closure(function (obj) {
  3874. //防止拖動圖標即打開了桌面應用
  3875. U.MD.D.click(this, obj);
  3876. }, [_nsfxTeacherDeskIconInfo[i]]),
  3877. "onclick": U.UF.C.closure(function (obj) {
  3878. //防止拖動圖標即打開了桌面應用
  3879. U.MD.D.click(this, obj);
  3880. }, [_nsfxTeacherDeskIconInfo[i]])
  3881. }, _frag); //
  3882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3885. }
  3886. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3887. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3888. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3889. continue
  3890. }
  3891. _content = $$("div", {
  3892. className: "U_MD_D_KO",
  3893. "onmousedown": U.UF.C.closure(function (obj) {
  3894. //防止拖動圖標即打開了桌面應用
  3895. U.MD.D.click(this, obj);
  3896. }, [_stiaTeacherDeskIconInfo[i]]),
  3897. "onclick": U.UF.C.closure(function (obj) {
  3898. //防止拖動圖標即打開了桌面應用
  3899. U.MD.D.click(this, obj);
  3900. }, [_stiaTeacherDeskIconInfo[i]])
  3901. }, _frag); //
  3902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3905. }
  3906. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3907. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3908. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3909. continue
  3910. }
  3911. _content = $$("div", {
  3912. className: "U_MD_D_KO",
  3913. "onmousedown": U.UF.C.closure(function (obj) {
  3914. //防止拖動圖標即打開了桌面應用
  3915. U.MD.D.click(this, obj);
  3916. }, [_szdjgTeacherDeskIconInfo[i]]),
  3917. "onclick": U.UF.C.closure(function (obj) {
  3918. //防止拖動圖標即打開了桌面應用
  3919. U.MD.D.click(this, obj);
  3920. }, [_szdjgTeacherDeskIconInfo[i]])
  3921. }, _frag); //
  3922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3925. }
  3926. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3927. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3928. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3929. continue
  3930. }
  3931. _content = $$("div", {
  3932. className: "U_MD_D_KO",
  3933. "onmousedown": U.UF.C.closure(function (obj) {
  3934. //防止拖動圖標即打開了桌面應用
  3935. U.MD.D.click(this, obj);
  3936. }, [_x010607TeacherDeskIconInfo[i]]),
  3937. "onclick": U.UF.C.closure(function (obj) {
  3938. //防止拖動圖標即打開了桌面應用
  3939. U.MD.D.click(this, obj);
  3940. }, [_x010607TeacherDeskIconInfo[i]])
  3941. }, _frag); //
  3942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3945. }
  3946. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3947. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3948. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3949. continue
  3950. }
  3951. _content = $$("div", {
  3952. className: "U_MD_D_KO",
  3953. "onmousedown": U.UF.C.closure(function (obj) {
  3954. //防止拖動圖標即打開了桌面應用
  3955. U.MD.D.click(this, obj);
  3956. }, [_xhlyTeacherDeskIconInfo[i]]),
  3957. "onclick": U.UF.C.closure(function (obj) {
  3958. //防止拖動圖標即打開了桌面應用
  3959. U.MD.D.click(this, obj);
  3960. }, [_xhlyTeacherDeskIconInfo[i]])
  3961. }, _frag); //
  3962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3965. }
  3966. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3967. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3968. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3969. continue
  3970. }
  3971. _content = $$("div", {
  3972. className: "U_MD_D_KO",
  3973. "onmousedown": U.UF.C.closure(function (obj) {
  3974. //防止拖動圖標即打開了桌面應用
  3975. U.MD.D.click(this, obj);
  3976. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3977. "onclick": U.UF.C.closure(function (obj) {
  3978. //防止拖動圖標即打開了桌面應用
  3979. U.MD.D.click(this, obj);
  3980. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3981. }, _frag); //
  3982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3985. }
  3986. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3987. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3988. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3989. continue
  3990. }
  3991. _content = $$("div", {
  3992. className: "U_MD_D_KO",
  3993. "onmousedown": U.UF.C.closure(function (obj) {
  3994. //防止拖動圖標即打開了桌面應用
  3995. U.MD.D.click(this, obj);
  3996. }, [_x010503TeacherDeskIconInfo[i]]),
  3997. "onclick": U.UF.C.closure(function (obj) {
  3998. //防止拖動圖標即打開了桌面應用
  3999. U.MD.D.click(this, obj);
  4000. }, [_x010503TeacherDeskIconInfo[i]])
  4001. }, _frag); //
  4002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4005. }
  4006. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4007. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4008. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4009. continue
  4010. }
  4011. _content = $$("div", {
  4012. className: "U_MD_D_KO",
  4013. "onmousedown": U.UF.C.closure(function (obj) {
  4014. //防止拖動圖標即打開了桌面應用
  4015. U.MD.D.click(this, obj);
  4016. }, [_x010504TeacherDeskIconInfo[i]]),
  4017. "onclick": U.UF.C.closure(function (obj) {
  4018. //防止拖動圖標即打開了桌面應用
  4019. U.MD.D.click(this, obj);
  4020. }, [_x010504TeacherDeskIconInfo[i]])
  4021. }, _frag); //
  4022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4025. }
  4026. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4027. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4028. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4029. continue
  4030. }
  4031. _content = $$("div", {
  4032. className: "U_MD_D_KO",
  4033. "onmousedown": U.UF.C.closure(function (obj) {
  4034. //防止拖動圖標即打開了桌面應用
  4035. U.MD.D.click(this, obj);
  4036. }, [_x010204TeacherDeskIconInfo[i]]),
  4037. "onclick": U.UF.C.closure(function (obj) {
  4038. //防止拖動圖標即打開了桌面應用
  4039. U.MD.D.click(this, obj);
  4040. }, [_x010204TeacherDeskIconInfo[i]])
  4041. }, _frag); //
  4042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4045. }
  4046. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4047. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4048. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4049. continue
  4050. }
  4051. _content = $$("div", {
  4052. className: "U_MD_D_KO",
  4053. "onmousedown": U.UF.C.closure(function (obj) {
  4054. //防止拖動圖標即打開了桌面應用
  4055. U.MD.D.click(this, obj);
  4056. }, [_trailTeacherDeskIconInfo[i]]),
  4057. "onclick": U.UF.C.closure(function (obj) {
  4058. //防止拖動圖標即打開了桌面應用
  4059. U.MD.D.click(this, obj);
  4060. }, [_trailTeacherDeskIconInfo[i]])
  4061. }, _frag); //
  4062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4065. }
  4066. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4067. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4068. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4069. continue
  4070. }
  4071. _content = $$("div", {
  4072. className: "U_MD_D_KO",
  4073. "onmousedown": U.UF.C.closure(function (obj) {
  4074. //防止拖動圖標即打開了桌面應用
  4075. U.MD.D.click(this, obj);
  4076. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4077. "onclick": U.UF.C.closure(function (obj) {
  4078. //防止拖動圖標即打開了桌面應用
  4079. U.MD.D.click(this, obj);
  4080. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4081. }, _frag); //
  4082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4085. }
  4086. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4087. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4088. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4089. continue
  4090. }
  4091. _content = $$("div", {
  4092. className: "U_MD_D_KO",
  4093. "onmousedown": U.UF.C.closure(function (obj) {
  4094. //防止拖動圖標即打開了桌面應用
  4095. U.MD.D.click(this, obj);
  4096. }, [_x010608TeacherDeskIconInfo[i]]),
  4097. "onclick": U.UF.C.closure(function (obj) {
  4098. //防止拖動圖標即打開了桌面應用
  4099. U.MD.D.click(this, obj);
  4100. }, [_x010608TeacherDeskIconInfo[i]])
  4101. }, _frag); //
  4102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4105. }
  4106. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4107. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4108. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4109. continue
  4110. }
  4111. _content = $$("div", {
  4112. className: "U_MD_D_KO",
  4113. "onmousedown": U.UF.C.closure(function (obj) {
  4114. //防止拖動圖標即打開了桌面應用
  4115. U.MD.D.click(this, obj);
  4116. }, [_x010611TeacherDeskIconInfo[i]]),
  4117. "onclick": U.UF.C.closure(function (obj) {
  4118. //防止拖動圖標即打開了桌面應用
  4119. U.MD.D.click(this, obj);
  4120. }, [_x010611TeacherDeskIconInfo[i]])
  4121. }, _frag); //
  4122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4125. }
  4126. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4127. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4128. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4129. continue
  4130. }
  4131. _content = $$("div", {
  4132. className: "U_MD_D_KO",
  4133. "onmousedown": U.UF.C.closure(function (obj) {
  4134. //防止拖動圖標即打開了桌面應用
  4135. U.MD.D.click(this, obj);
  4136. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4137. "onclick": U.UF.C.closure(function (obj) {
  4138. //防止拖動圖標即打開了桌面應用
  4139. U.MD.D.click(this, obj);
  4140. }, [_tianyuanTeacherDeskIconInfo[i]])
  4141. }, _frag); //
  4142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4145. }
  4146. } else {
  4147. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4148. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4149. continue
  4150. }
  4151. _content = $$("div", {
  4152. className: "U_MD_D_KO",
  4153. "onmousedown": U.UF.C.closure(function (obj) {
  4154. //防止拖動圖標即打開了桌面應用
  4155. U.MD.D.click(this, obj);
  4156. }, [_teacherDesktopIconInfo[i]]),
  4157. "onclick": U.UF.C.closure(function (obj) {
  4158. //防止拖動圖標即打開了桌面應用
  4159. U.MD.D.click(this, obj);
  4160. }, [_teacherDesktopIconInfo[i]])
  4161. }, _frag); //
  4162. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4163. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4164. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4165. }
  4166. }
  4167. } else {
  4168. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4169. _content = $$("div", {
  4170. className: "U_MD_D_KO",
  4171. style: { 'width': '124px', 'height': '145px' },
  4172. "onmousedown": U.UF.C.closure(function (obj) {
  4173. //防止拖動圖標即打開了桌面應用
  4174. U.MD.D.click(this, obj);
  4175. }, [_easyDesktopIconInfo[i]]),
  4176. "onclick": U.UF.C.closure(function (obj) {
  4177. //防止拖動圖標即打開了桌面應用
  4178. U.MD.D.click(this, obj);
  4179. }, [_easyDesktopIconInfo[i]])
  4180. }, _frag); //
  4181. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4184. }
  4185. }
  4186. if (type == 1) {
  4187. //加載好後給圖標定位
  4188. U.MD.D.iconPostion($(_frag).Child());
  4189. } else {
  4190. //加載好後給圖標定位
  4191. U.MD.D.iconPostion2($(_frag).Child());
  4192. }
  4193. //把圖標加載到頁面
  4194. el.appendChild(_frag);
  4195. }
  4196. /**
  4197. * 顯示任務欄
  4198. *
  4199. * @param {element} 桌面元素
  4200. */
  4201. U.MD.D.I.displayTaskbar = function (el) {
  4202. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4203. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4204. //任務欄位置變化
  4205. U.selectEl(el).css({ "bottom": "0px" });
  4206. //桌面位置變話
  4207. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4208. }
  4209. }
  4210. //#region 桌面圖標拖動邏輯
  4211. /**
  4212. * 桌面排列圖標
  4213. *
  4214. * @param {element} 桌面元素
  4215. * @param {object} 上下相距的距離
  4216. * @param {object} 左右相距的距離
  4217. * @return {object} 命名空間
  4218. */
  4219. U.MD.D.iconPostion = function (childs, top, left) {
  4220. var i; //用於循環處理
  4221. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4222. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4223. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4224. for (i = 0; i < childs.length; i++) {
  4225. //如果豎排top超過了範圍處理
  4226. if (top + 95 > US.height - 10) {
  4227. //left超過了頁面範圍處理,則向上重疊打印處理
  4228. if ((left + 180) > US.width) {
  4229. top -= 110;
  4230. left -= 90;
  4231. }
  4232. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4233. else {
  4234. left += 90;
  4235. top = 15;
  4236. };
  4237. }
  4238. //給圖標的位置賦值
  4239. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4240. if (i < childs.length - 1) {
  4241. //頁面圖標每次向下加95
  4242. top += 95;
  4243. }
  4244. }
  4245. //返回最後調用的圖標的位置
  4246. return [top, left];
  4247. }
  4248. /**
  4249. * 桌面排列圖標
  4250. *
  4251. * @param {element} 桌面元素
  4252. * @param {object} 上下相距的距離
  4253. * @param {object} 左右相距的距離
  4254. * @return {object} 命名空間
  4255. */
  4256. U.MD.D.iconPostion2 = function (childs, top, left) {
  4257. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4258. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4259. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4260. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4261. for (i = 0; i < childs.length; i++) {
  4262. //如果豎排top超過了範圍處理
  4263. if (left + 150 > US.width - 10) {
  4264. //left超過了頁面範圍處理,則向上重疊打印處理
  4265. if ((top + 180) > US.Height) {
  4266. top -= 150;
  4267. left -= 150;
  4268. }
  4269. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4270. else {
  4271. top += 150;
  4272. left = ol;
  4273. };
  4274. }
  4275. //給圖標的位置賦值
  4276. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4277. if (i < childs.length - 1) {
  4278. //頁面圖標每次向下加95
  4279. left += 150;
  4280. }
  4281. }
  4282. //返回最後調用的圖標的位置
  4283. return [top, left];
  4284. }
  4285. /**
  4286. * 桌面點擊事件邏輯
  4287. *
  4288. * @param {element} 桌面元素
  4289. * @param {object} 上下相距的距離
  4290. * @param {object} 左右相距的距離
  4291. * @return {object} 命名空間
  4292. */
  4293. U.MD.D.click = function (el, obj) {
  4294. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4295. var _userinfo = US.userInfo;
  4296. U.UF.EV.stopBubble(); //阻止向上冒泡
  4297. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4298. if (_buttonnumber < 2) {
  4299. //如果是click事件的處理
  4300. if (event.type == "click") {
  4301. //如果元素在mousemove事件中沒有移動則出發click事件
  4302. if (!U.MD.D.I.IsDrag) {
  4303. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4304. U.alert("請先登錄您的賬號!");
  4305. setTimeout(() => {
  4306. U.MD.U.L.login();
  4307. }, 2000);
  4308. } else {
  4309. //打開應用處理
  4310. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4311. }
  4312. }
  4313. }
  4314. //如果是mouse事件的處理
  4315. else {
  4316. if (US.Config.type == '1') {
  4317. //拖動處理,添加拖動和拖動結束事件
  4318. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4319. }
  4320. }
  4321. U.MD.D.I.IsDrag = false;
  4322. }
  4323. }
  4324. /**
  4325. * 拖動的處理
  4326. *
  4327. */
  4328. U.MD.D.iconMove = function () {
  4329. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4330. U.MD.D.I.IsDrag = true;
  4331. }
  4332. /**
  4333. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4334. *
  4335. * @param {element} 拖動的元素
  4336. * @return {object} 命名空間
  4337. */
  4338. U.MD.D.iconUp = function (el) {
  4339. var _top = 15,
  4340. _left = 20,
  4341. _margin,
  4342. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4343. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4344. if (_positioninfo["OT"] > 15) {
  4345. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4346. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4347. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4348. }
  4349. if (_positioninfo["OL"] > 20) {
  4350. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4351. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4352. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4353. }
  4354. //while循環判斷麼一個重疊的元素
  4355. do {
  4356. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4357. _top = _positioninfo[0] + 95; //得到定位後的top
  4358. _left = _positioninfo[1]; //得到定位後的left
  4359. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4360. }
  4361. /**
  4362. * 判斷拖動後圖標是否重疊
  4363. *
  4364. * @param {element} 拖動的元素
  4365. * @param {element} 桌面所有的元素
  4366. * @param {array} 拖動元素的位置
  4367. ----------[0] 上 top
  4368. ----------[1] 左 left
  4369. * @return {object} 命名空間
  4370. */
  4371. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4372. //循環所有的圖標
  4373. for (var i = 0; i < childs.length; i++) {
  4374. //判斷有沒有和該圖標誒子重疊的元素
  4375. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4376. return childs[i]; //如果有返回
  4377. }
  4378. }
  4379. }
  4380. //#endregion
  4381. //#endregion
  4382. //#region 桌面應用
  4383. /**
  4384. * 打開應用
  4385. *
  4386. * @param {string} 類型
  4387. -----------------Disk 網盤系統
  4388. -----------------PDisk 學習系統網盤
  4389. -----------------Poto 圖片
  4390. -----------------Video 視頻
  4391. -----------------Music 音樂
  4392. -----------------Word word
  4393. -----------------Excel excel
  4394. -----------------Txt 記事本
  4395. -----------------PB 學習系統
  4396. -----------------Blog 朋友圈系統
  4397. -----------------FTP ftp系統
  4398. -----------------Group 好友群
  4399. -----------------SY 首頁系統
  4400. -----------------Set 個人設置
  4401. -----------------XSet 系統設置
  4402. -----------------App 我們所有的app
  4403. -----------------BC c.1473.cn 平臺
  4404. -----------------CWeb d.1473.cn 變成平臺
  4405. -----------------其他的外聯系統 我們統一用iframe打開
  4406. * @param {array} 類型
  4407. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4408. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4409. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4410. 如果第一個參數為其他,則無第二個參數
  4411. * @returns {array}
  4412. */
  4413. window.addEventListener('message', function (e) { // 監聽 message 事件
  4414. // alert(e.data.type);
  4415. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4416. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4417. //3是展示全部階段 2學生 1老師 4專家
  4418. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4419. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4420. //3是展示全部階段 2學生 1老師 4專家
  4421. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4422. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4423. //3是展示全部階段 2學生 1老師 4專家
  4424. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4425. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4426. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4427. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4428. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4429. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4430. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4431. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4432. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4433. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4434. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4435. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4436. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4437. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4438. //3是展示全部階段 2學生 1老師 4專家
  4439. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4440. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4441. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4442. U.MD.D.I.selectUser();
  4443. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4444. var _formel = document.getElementById("study");
  4445. U.UF.F.windowZooming(_formel);
  4446. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4447. var _formel = document.getElementById("studyDetail");
  4448. U.UF.F.windowZooming(_formel);
  4449. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4450. var _formel = document.getElementById("studyDetail");
  4451. U.UF.F.windowZooming(_formel);
  4452. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4453. var _formel = document.getElementById("studentStudy");
  4454. U.UF.F.windowZooming(_formel);
  4455. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4456. // var _formel = document.getElementById("study");
  4457. //如果最大化了,那麼就把他縮小
  4458. // if (_formel.ismaximize) {
  4459. // return;
  4460. // }
  4461. // U.UF.F.windowZooming(_formel);
  4462. // U.UF.F.topWindow(_formel);
  4463. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4464. // var _formel = document.getElementById("studyDetail");
  4465. //如果最大化了,那麼就把他縮小
  4466. // if (_formel.ismaximize) {
  4467. // return;
  4468. // }
  4469. // U.UF.F.windowZooming(_formel);
  4470. // U.UF.F.topWindow(_formel);
  4471. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4472. // var _formel = document.getElementById("studentStudy");
  4473. // if (_formel.ismaximize) {
  4474. // return;
  4475. // }
  4476. // U.UF.F.windowZooming(_formel);
  4477. // U.UF.F.topWindow(_formel);
  4478. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4479. var _formel = document.getElementById("study");
  4480. // if (_formel.ismaximize) {
  4481. // return;
  4482. // }
  4483. // U.UF.F.windowZooming(_formel);
  4484. U.UF.F.topWindow(_formel);
  4485. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4486. var _formel = document.getElementById("studentIndex");
  4487. U.UF.F.windowZooming(_formel);
  4488. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4489. var _formel = document.getElementById("studyDetailS");
  4490. U.UF.F.windowZooming(_formel);
  4491. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4492. var _formel = document.getElementById("studioIndex");
  4493. U.UF.F.windowZooming(_formel);
  4494. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4495. var _formel = document.getElementById("studyDetailStudio");
  4496. U.UF.F.windowZooming(_formel);
  4497. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4498. var _formel = document.getElementById("studyDetailStudio");
  4499. U.UF.F.windowZooming(_formel);
  4500. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4501. var _formel = document.getElementById("studyDetailNT");
  4502. U.UF.F.windowZooming(_formel);
  4503. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4504. var _formel = document.getElementById("studyDetailS");
  4505. U.UF.F.windowZooming(_formel);
  4506. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4507. var _formel = document.getElementById("studyDetailS");
  4508. U.UF.F.topWindow(_formel);
  4509. } else if (e.data.tools && e.data.tools == "1") {
  4510. // U.MD.D.I.openApplication("whiteboard")
  4511. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4512. } else if (e.data.tools && e.data.tools == "2") {
  4513. U.MD.D.I.openApplication("note")
  4514. } else if (e.data.tools && e.data.tools == "3") {
  4515. // U.MD.D.I.openApplication("mind")
  4516. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4517. } else if (e.data.tools && e.data.tools == "4") {
  4518. U.MD.D.I.openApplication("investigation")
  4519. } else if (e.data.tools && e.data.tools == "6") {
  4520. // U.MD.D.I.openApplication("doc")
  4521. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4522. } else if (e.data.tools && e.data.tools == "7") {
  4523. // U.MD.D.I.openApplication("mindNetwork")
  4524. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4525. } else if (e.data.tools && e.data.tools == "8") {
  4526. U.MD.D.I.openApplication("library")
  4527. } else if (e.data.tools && e.data.tools == "17") {
  4528. U.MD.D.I.openApplication("stuLibrary")
  4529. } else if (e.data.tools && e.data.tools == "18") {
  4530. U.MD.D.I.openApplication("train")
  4531. } else if (e.data.tools && e.data.tools == "21") {
  4532. U.MD.D.I.openApplication("program")
  4533. } else if (e.data.tools && e.data.tools == "22") {
  4534. U.MD.D.I.openApplication("AIprogram2")
  4535. } else if (e.data.tools && e.data.tools == "23") {
  4536. U.MD.D.I.openApplication("Pythonprogram")
  4537. } else if (e.data.tools && e.data.tools == "24") {
  4538. U.MD.D.I.openApplication("AIprogram")
  4539. } else if (e.data.tools && e.data.tools == "25") {
  4540. U.MD.D.I.openApplication("sys")
  4541. } else if (e.data.tools && e.data.tools == "26") {
  4542. // U.MD.D.I.openApplication("courseDesign")
  4543. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4544. } else if (e.data.tools && e.data.tools == "31") {
  4545. U.MD.D.I.openApplication("netWorkPanel")
  4546. } else if (e.data.tools && e.data.tools == "32") {
  4547. U.MD.D.I.openApplication("codeEdit")
  4548. } else if (e.data.tools && e.data.tools == "57") {
  4549. U.MD.D.I.openApplication("CocoPi")
  4550. } else if (e.data.tools && e.data.tools == "63") {
  4551. U.MD.D.I.openApplication("Wood")
  4552. } else if (e.data.tools && e.data.tools == "58") {
  4553. U.MD.D.I.openApplication("car")
  4554. } else if (e.data.tools && e.data.tools == "59") {
  4555. U.MD.D.I.openApplication("lineSearch")
  4556. } else if (e.data.tools && e.data.tools == "60") {
  4557. U.MD.D.I.openApplication("deepLearning")
  4558. } else if (e.data.tools && e.data.tools == "61") {
  4559. U.MD.D.I.openApplication("allHistory")
  4560. } else if (e.data.tools && e.data.tools == "28") {
  4561. U.MD.D.I.openApplication("translation")
  4562. } else if (e.data.tools && e.data.tools == "37") {
  4563. U.MD.D.I.openApplication("mohe")
  4564. } else if (e.data.tools && e.data.tools == "38") {
  4565. U.MD.D.I.openApplication("24game")
  4566. } else if (e.data.tools && e.data.tools == "39") {
  4567. U.MD.D.I.openApplication("GeoGebra")
  4568. } else if (e.data.tools && e.data.tools == "43") {
  4569. U.MD.D.I.openApplication("studentEvaluate")
  4570. } else if (e.data.tools && e.data.tools == "44") {
  4571. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4572. } else if (e.data.tools && e.data.tools == "46") {
  4573. U.MD.D.I.openApplication("project")
  4574. } else if (e.data.tools && e.data.tools == "71") {
  4575. U.MD.D.I.openApplication("aigptCourse")
  4576. } else if (e.data.tools && e.data.tools == "1s") {
  4577. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "3s") {
  4579. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "6s") {
  4581. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "1studio") {
  4583. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4584. } else if (e.data.tools && e.data.tools == "3studio") {
  4585. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4586. } else if (e.data.tools && e.data.tools == "6studio") {
  4587. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4588. } else if (e.data.tools && e.data.tools == "3y") {
  4589. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4590. } else if (e.data.tools && e.data.tools == "1y") {
  4591. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4592. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4593. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4594. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4595. U.MD.D.I.openApplication("AIAnalyse")
  4596. } else if (e.data.tools && e.data.tools == "1teacher") {
  4597. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4598. } else if (e.data.tools && e.data.tools == "3teacher") {
  4599. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4600. } else if (e.data.tools && e.data.tools == "7teacher") {
  4601. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4602. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4603. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4604. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4605. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4606. } else if (e.data.tools && e.data.tools == "1E") {
  4607. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4608. } else if (e.data.tools && e.data.tools == "3E") {
  4609. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4610. } else if (e.data.tools && e.data.tools == "57y") {
  4611. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4612. } else if (e.data.tools && e.data.tools == "57u") {
  4613. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4614. } else if (e.data.tools && e.data.tools == "57teacher") {
  4615. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4616. } else if (e.data.tools && e.data.tools == "64") {
  4617. U.MD.D.I.openApplication("AIChat")
  4618. } else if (e.data.tools && e.data.tools == "66") {
  4619. U.MD.D.I.openApplication("formulaEdi")
  4620. } else if (e.data.tools && e.data.tools == "67") {
  4621. U.MD.D.I.openApplication("molStr")
  4622. } else if (e.data.tools && e.data.tools == "68") {
  4623. U.MD.D.I.openApplication("timeAxis")
  4624. } else if (e.data.tools && e.data.tools == "openCourse") {
  4625. let _data = {
  4626. typea: e.data.typea || '',
  4627. typeb: e.data.typeb || '',
  4628. typed: e.data.typed || '',
  4629. }
  4630. U.MD.D.I.openInApplication("index", _data)
  4631. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4632. let _data = {
  4633. classid: e.data.classid || '',
  4634. }
  4635. U.MD.D.I.openInApplication("dataClass", _data)
  4636. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4637. let _data = {
  4638. cid: e.data.cid || '',
  4639. gid: e.data.gid || '',
  4640. }
  4641. U.MD.D.I.openInApplication("opencCscl", _data)
  4642. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4643. U.MD.D.I.openApplication("dataBoardTest")
  4644. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4645. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4646. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4647. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4648. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4649. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4650. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4651. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4652. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4653. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4654. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4655. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4656. }else if (e.data.tools && e.data.tools == "loginSz") {
  4657. U.MD.D.I.openInApplication("loginSz")
  4658. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4659. if($('#classroom_observation_board')[0]){
  4660. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4661. }
  4662. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4663. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4664. if($('#classroom_observation_ob_comment')[0]){
  4665. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4666. }
  4667. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4668. }else if (e.data.tools && e.data.tools == "logout"){
  4669. U.MD.U.LO.logoutSystem()
  4670. }else if (e.data.tools && e.data.tools == "getLogin"){
  4671. let _iframe = $('#UI_Login')[0];
  4672. if (_iframe) {
  4673. var userInfo = US.userInfo;
  4674. var type = 2
  4675. if(userInfo && userInfo.userid){
  4676. type = 1
  4677. }
  4678. _contentWindow = _iframe.contentWindow;
  4679. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4680. }
  4681. }
  4682. });
  4683. U.MD.D.I.selectUser = function () {
  4684. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4685. if (res.value[0].length > 0) {
  4686. US.userInfo = res.value[0][0];
  4687. $(".userName")[0].innerHTML = US.userInfo.username;
  4688. }
  4689. }, [], { "type": "GET", "withCredentials": true });
  4690. }
  4691. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4692. var _userinfo = US.userInfo, //登錄用戶信息
  4693. _userid = US.userInfo.userid, //登錄用戶id
  4694. _oid = _userinfo.organizeid,
  4695. _type = US.userInfo.type,
  4696. _org = US.userInfo.org,
  4697. _role = US.userInfo.role,
  4698. _classId = US.userInfo.classid;
  4699. if (_type == 4) {
  4700. tType = 4
  4701. }
  4702. switch (str) {
  4703. case "studyDetailNT": //無終端模式
  4704. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4705. setTimeout(() => {
  4706. U.MD.U.L.login();
  4707. }, 2000);
  4708. } else {
  4709. _formdiv = new U.UF.UI.form(
  4710. "課程詳情",
  4711. $$("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 }), {
  4712. "id": "studyDetailNT",
  4713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4714. "onresize": function () { }
  4715. }, {
  4716. closecallback: function () { }
  4717. }, { "style": { "height": "36px" } }).form; //創建窗體
  4718. _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); } }
  4719. break;
  4720. }
  4721. case "studyDetail":
  4722. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4723. setTimeout(() => {
  4724. U.MD.U.L.login();
  4725. }, 2000);
  4726. } else {
  4727. _formdiv = new U.UF.UI.form(
  4728. "課程詳情",
  4729. $$("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 }), {
  4730. "id": "studyDetail",
  4731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4732. "onresize": function () { }
  4733. }, {
  4734. closecallback: function () { }
  4735. }, { "style": { "height": "36px" } }).form; //創建窗體
  4736. _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); } }
  4737. break;
  4738. }
  4739. case "studyDetailTrain":
  4740. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4741. setTimeout(() => {
  4742. U.MD.U.L.login();
  4743. }, 2000);
  4744. } else {
  4745. _formdiv = new U.UF.UI.form(
  4746. "培訓詳情",
  4747. $$("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 }), {
  4748. "id": "studyDetailTrain",
  4749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4750. "onresize": function () { }
  4751. }, {
  4752. closecallback: function () { }
  4753. }, { "style": { "height": "36px" } }).form; //創建窗體
  4754. _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); } }
  4755. break;
  4756. }
  4757. case "studyDetailS":
  4758. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4759. setTimeout(() => {
  4760. U.MD.U.L.login();
  4761. }, 2000);
  4762. } else {
  4763. _formdiv = new U.UF.UI.form(
  4764. "項目詳情",
  4765. $$("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 }), {
  4766. "id": "studyDetailS",
  4767. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4768. "onresize": function () { }
  4769. }, {
  4770. closecallback: function () { }
  4771. }, { "style": { "height": "36px" } }).form; //創建窗體
  4772. _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); } }
  4773. break;
  4774. }
  4775. case "studyDetailStudio":
  4776. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4777. setTimeout(() => {
  4778. U.MD.U.L.login();
  4779. }, 2000);
  4780. } else {
  4781. _formdiv = new U.UF.UI.form(
  4782. "工作詳情",
  4783. $$("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 }), {
  4784. "id": "studyDetailStudio",
  4785. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4786. "onresize": function () { }
  4787. }, {
  4788. closecallback: function () { }
  4789. }, { "style": { "height": "36px" } }).form; //創建窗體
  4790. _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); } }
  4791. break;
  4792. }
  4793. case "studyDetailS5":
  4794. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4795. setTimeout(() => {
  4796. U.MD.U.L.login();
  4797. }, 2000);
  4798. } else {
  4799. _formdiv = new U.UF.UI.form(
  4800. "項目詳情",
  4801. $$("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 }), {
  4802. "id": "studyDetailS",
  4803. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4804. "onresize": function () { }
  4805. }, {
  4806. closecallback: function () { }
  4807. }, { "style": { "height": "36px" } }).form; //創建窗體
  4808. _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); } }
  4809. break;
  4810. }
  4811. case "studyDetailGM":
  4812. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4813. setTimeout(() => {
  4814. U.MD.U.L.login();
  4815. }, 2000);
  4816. } else {
  4817. _formdiv = new U.UF.UI.form(
  4818. "課程詳情",
  4819. $$("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 }), {
  4820. "id": "studyDetail",
  4821. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4822. "onresize": function () { }
  4823. }, {
  4824. closecallback: function () { }
  4825. }, { "style": { "height": "36px" } }).form; //創建窗體
  4826. _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); } }
  4827. break;
  4828. }
  4829. case "hanUrl":
  4830. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4831. setTimeout(() => {
  4832. U.MD.U.L.login();
  4833. }, 2000);
  4834. } else {
  4835. _formdiv = new U.UF.UI.form(
  4836. "漢字宮",
  4837. $$("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" }), {
  4838. "id": "hanUrl",
  4839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4840. "onresize": function () { }
  4841. }, {
  4842. closecallback: function () { }
  4843. }, { "style": { "height": "36px" } }).form; //創建窗體
  4844. _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); } }
  4845. break;
  4846. }
  4847. case "index":
  4848. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4849. setTimeout(() => {
  4850. U.MD.U.L.login();
  4851. }, 2000);
  4852. } else {
  4853. _formdiv = new U.UF.UI.form(
  4854. "課程中心",
  4855. $$("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 }), {
  4856. "id": "study",
  4857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4858. "onresize": function () { }
  4859. }, {
  4860. closecallback: function () { }
  4861. }, { "style": { "height": "36px" } }).form; //創建窗體
  4862. _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); } }
  4863. break;
  4864. }
  4865. case "dataClass":
  4866. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4867. setTimeout(() => {
  4868. U.MD.U.L.login();
  4869. }, 2000);
  4870. } else {
  4871. _formdiv = new U.UF.UI.form(
  4872. "數據報告",
  4873. $$("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 }), {
  4874. "id": "dataClass",
  4875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4876. "onresize": function () { }
  4877. }, {
  4878. closecallback: function () { }
  4879. }, { "style": { "height": "36px" } }).form; //創建窗體
  4880. _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); } }
  4881. break;
  4882. }
  4883. case "opencCscl":
  4884. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4885. setTimeout(() => {
  4886. U.MD.U.L.login();
  4887. }, 2000);
  4888. } else {
  4889. _formdiv = new U.UF.UI.form(
  4890. "協同建構",
  4891. $$("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 }), {
  4892. "id": "futureClass",
  4893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4894. "onresize": function () { }
  4895. }, {
  4896. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4897. }, { "style": { "height": "36px" } }).form; //創建窗體
  4898. _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); } }
  4899. break;
  4900. }
  4901. case "openCourseUpdate":
  4902. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4903. setTimeout(() => {
  4904. U.MD.U.L.login();
  4905. }, 2000);
  4906. } else {
  4907. _formdiv = new U.UF.UI.form(
  4908. "課程管理",
  4909. $$("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 }), {
  4910. "id": "openCourseUpdate",
  4911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4912. "onresize": function () { }
  4913. }, {
  4914. closecallback: function () { }
  4915. }, { "style": { "height": "36px" } }).form; //創建窗體
  4916. break;
  4917. }
  4918. case "openNewCourseUpdate":
  4919. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4920. setTimeout(() => {
  4921. U.MD.U.L.login();
  4922. }, 2000);
  4923. } else {
  4924. _formdiv = new U.UF.UI.form(
  4925. "課程管理",
  4926. $$("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 }), {
  4927. "id": "openCourseUpdate",
  4928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4929. "onresize": function () { }
  4930. }, {
  4931. closecallback: function () { }
  4932. }, { "style": { "height": "36px" } }).form; //創建窗體
  4933. break;
  4934. }
  4935. case "openCourseEUpdate":
  4936. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4937. setTimeout(() => {
  4938. U.MD.U.L.login();
  4939. }, 2000);
  4940. } else {
  4941. _formdiv = new U.UF.UI.form(
  4942. "課程管理",
  4943. $$("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 }), {
  4944. "id": "openCourseUpdate",
  4945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4946. "onresize": function () { }
  4947. }, {
  4948. closecallback: function () { }
  4949. }, { "style": { "height": "36px" } }).form; //創建窗體
  4950. break;
  4951. }
  4952. case "openCourseAiUpdate":
  4953. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4954. setTimeout(() => {
  4955. U.MD.U.L.login();
  4956. }, 2000);
  4957. } else {
  4958. _formdiv = new U.UF.UI.form(
  4959. "課程管理",
  4960. $$("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 }), {
  4961. "id": "openCourseUpdate",
  4962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4963. "onresize": function () { }
  4964. }, {
  4965. closecallback: function () { }
  4966. }, { "style": { "height": "36px" } }).form; //創建窗體
  4967. break;
  4968. }
  4969. case "openCourseAiUpdate2":
  4970. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4971. setTimeout(() => {
  4972. U.MD.U.L.login();
  4973. }, 2000);
  4974. } else {
  4975. _formdiv = new U.UF.UI.form(
  4976. "課程管理",
  4977. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4978. "id": "openCourseUpdate",
  4979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4980. "onresize": function () { }
  4981. }, {
  4982. closecallback: function () { }
  4983. }, { "style": { "height": "36px" } }).form; //創建窗體
  4984. break;
  4985. }
  4986. case "openCourseNewUpdate":
  4987. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4988. setTimeout(() => {
  4989. U.MD.U.L.login();
  4990. }, 2000);
  4991. } else {
  4992. _formdiv = new U.UF.UI.form(
  4993. "課程管理",
  4994. $$("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 }), {
  4995. "id": "openCourseUpdate",
  4996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4997. "onresize": function () { }
  4998. }, {
  4999. closecallback: function () { }
  5000. }, { "style": { "height": "36px" } }).form; //創建窗體
  5001. break;
  5002. }
  5003. case "inviteLoginSz":
  5004. _formdiv = new U.UF.UI.form(
  5005. "隨機碼登錄",
  5006. $$("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 }), {
  5007. "id": "loginSz",
  5008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //創建窗體
  5013. break;
  5014. case "loginSz":
  5015. _formdiv = new U.UF.UI.form(
  5016. "教師登錄",
  5017. $$("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" }), {
  5018. "id": "loginSz",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //創建窗體
  5024. break;
  5025. case "teacher":
  5026. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5027. setTimeout(() => {
  5028. U.MD.U.L.login();
  5029. }, 2000);
  5030. } else {
  5031. _formdiv = new U.UF.UI.form(
  5032. "教師管理",
  5033. $$("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 }), {
  5034. "id": "teacher",
  5035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5036. "onresize": function () { }
  5037. }, {
  5038. closecallback: function () { }
  5039. }, { "style": { "height": "36px" } }).form; //創建窗體
  5040. break;
  5041. }
  5042. case "dataBoardSZArea":
  5043. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5044. setTimeout(() => {
  5045. U.MD.U.L.login();
  5046. }, 2000);
  5047. } else {
  5048. _formdiv = new U.UF.UI.form(
  5049. "綜合數據看板",
  5050. $$("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 }), {
  5051. "id": "dataBoardSZArea",
  5052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5053. "onresize": function () { }
  5054. }, {
  5055. closecallback: function () { }
  5056. }, { "style": { "height": "36px" } }).form; //創建窗體
  5057. break;
  5058. }
  5059. case "dataBoardSZCity":
  5060. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5061. setTimeout(() => {
  5062. U.MD.U.L.login();
  5063. }, 2000);
  5064. } else {
  5065. _formdiv = new U.UF.UI.form(
  5066. "綜合數據看板",
  5067. $$("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 }), {
  5068. "id": "dataBoardSZCity",
  5069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5070. "onresize": function () { }
  5071. }, {
  5072. closecallback: function () { }
  5073. }, { "style": { "height": "36px" } }).form; //創建窗體
  5074. break;
  5075. }
  5076. case "classroom_observation_board":
  5077. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5078. setTimeout(() => {
  5079. U.MD.U.L.login();
  5080. }, 2000);
  5081. } else {
  5082. _formdiv = new U.UF.UI.form(
  5083. "課堂觀察",
  5084. $$("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 }), {
  5085. "id": "classroom_observation_board",
  5086. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5087. "onresize": function () { }
  5088. }, {
  5089. closecallback: function () { }
  5090. }, { "style": { "height": "36px" } }).form; //創建窗體
  5091. break;
  5092. }
  5093. case "classroom_observation_ob_comment":
  5094. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5095. setTimeout(() => {
  5096. U.MD.U.L.login();
  5097. }, 2000);
  5098. } else {
  5099. _formdiv = new U.UF.UI.form(
  5100. "課堂審核",
  5101. $$("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 }), {
  5102. "id": "classroom_observation_ob_comment",
  5103. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //創建窗體
  5108. break;
  5109. }
  5110. }
  5111. }
  5112. U.MD.D.I.openApplication = function (str, obj, info) {
  5113. obj = obj || {};
  5114. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5115. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5116. _userinfo = US.userInfo, //登錄用戶信息
  5117. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5118. _oid = obj.organizeid || _userinfo.organizeid,
  5119. _type = US.userInfo.type,
  5120. _org = US.userInfo.org,
  5121. _role = US.userInfo.role,
  5122. _classId = US.userInfo.classid,
  5123. _TscreenType = 1
  5124. _screenType = 2,
  5125. _SscreenType = 3;
  5126. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5127. return;
  5128. }
  5129. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5130. switch (str) {
  5131. case "studnetProject": //好友打開
  5132. _formdiv = new U.UF.UI.form(
  5133. "我的項目",
  5134. $$("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 }), {
  5135. "id": "studnetProject",
  5136. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5137. "onresize": function () { }
  5138. }, {
  5139. closecallback: function () { }
  5140. }, { "style": { "height": "36px" } }).form; //創建窗體
  5141. _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); } }
  5142. break;
  5143. case "studentEvaluate": //好友打開
  5144. _formdiv = new U.UF.UI.form(
  5145. "我的評價",
  5146. $$("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 }), {
  5147. "id": "studentEvaluate",
  5148. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5149. "onresize": function () { }
  5150. }, {
  5151. closecallback: function () { }
  5152. }, { "style": { "height": "36px" } }).form; //創建窗體
  5153. _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); } }
  5154. break;
  5155. case "my":
  5156. _formdiv = new U.UF.UI.form(
  5157. "我的資料",
  5158. $$("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 }), {
  5159. "id": "my",
  5160. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //創建窗體
  5165. _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); } }
  5166. break;
  5167. case "program":
  5168. _formdiv = new U.UF.UI.form(
  5169. "編程平臺",
  5170. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5171. "id": "program",
  5172. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5173. "onresize": function () { }
  5174. }, {
  5175. closecallback: function () { }
  5176. }, { "style": { "height": "36px" } }).form; //創建窗體
  5177. _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); } }
  5178. break;
  5179. case "library":
  5180. _formdiv = new U.UF.UI.form(
  5181. "素材庫",
  5182. $$("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 }), {
  5183. "id": "library",
  5184. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5185. "onresize": function () { }
  5186. }, {
  5187. closecallback: function () { }
  5188. }, { "style": { "height": "36px" } }).form; //創建窗體
  5189. _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); } }
  5190. break;
  5191. case "whiteboard":
  5192. _formdiv = new U.UF.UI.form(
  5193. "電子白板",
  5194. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5195. "id": "whiteboard",
  5196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //創建窗體
  5201. _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); } }
  5202. break;
  5203. case "investigation":
  5204. _formdiv = new U.UF.UI.form(
  5205. "問卷調查",
  5206. $$("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 }), {
  5207. "id": "investigation",
  5208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5209. "onresize": function () { }
  5210. }, {
  5211. closecallback: function () { }
  5212. }, { "style": { "height": "36px" } }).form; //創建窗體
  5213. _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); } }
  5214. break;
  5215. case "note":
  5216. _formdiv = new U.UF.UI.form(
  5217. "便簽分類",
  5218. $$("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 }), {
  5219. "id": "note",
  5220. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5221. "onresize": function () { }
  5222. }, {
  5223. closecallback: function () { }
  5224. }, { "style": { "height": "36px" } }).form; //創建窗體
  5225. _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); } }
  5226. break;
  5227. // case "score":
  5228. // _formdiv = new U.UF.UI.form(
  5229. // "量規評分",
  5230. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5231. // "id": "score",
  5232. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5233. // "onresize": function() {}
  5234. // }, {
  5235. // closecallback: function() {}
  5236. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5237. // _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); } }
  5238. // break;
  5239. case "mind":
  5240. _formdiv = new U.UF.UI.form(
  5241. "思維導圖",
  5242. $$("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"
  5243. "id": "mind",
  5244. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5245. "onresize": function () { }
  5246. }, {
  5247. closecallback: function () { }
  5248. }, { "style": { "height": "36px" } }).form; //創建窗體
  5249. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5250. break;
  5251. case "doc":
  5252. // U.MD.D.I.isRoom();
  5253. _formdiv = new U.UF.UI.form(
  5254. "協同文檔",
  5255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5256. "id": "doc",
  5257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //創建窗體
  5262. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5263. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5264. // })
  5265. _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); } }
  5266. break;
  5267. case "studentStudy":
  5268. _formdiv = new U.UF.UI.form(
  5269. "課程中心",
  5270. $$("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
  5271. "id": "studentStudy",
  5272. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5273. "onresize": function () { }
  5274. }, {
  5275. closecallback: function () { }
  5276. }, { "style": { "height": "36px" } }).form; //創建窗體
  5277. _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); } }
  5278. break;
  5279. case "train": //好友打開
  5280. _formdiv = new U.UF.UI.form(
  5281. "訓練平臺",
  5282. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5283. "id": "train",
  5284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5285. "onresize": function () { }
  5286. }, {
  5287. closecallback: function () { }
  5288. }, { "style": { "height": "36px" } }).form; //創建窗體
  5289. _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); } }
  5290. break;
  5291. case "mindNetwork": //好友打開
  5292. _formdiv = new U.UF.UI.form(
  5293. "思維網格",
  5294. $$("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 }), {
  5295. "id": "mindNetwork",
  5296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5297. "onresize": function () { }
  5298. }, {
  5299. closecallback: function () { }
  5300. }, { "style": { "height": "36px" } }).form; //創建窗體
  5301. _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); } }
  5302. break;
  5303. case "studentClassRoom": //好友打開
  5304. _formdiv = new U.UF.UI.form(
  5305. "實時課堂",
  5306. $$("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 }), {
  5307. "id": "studentClassRoom",
  5308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5309. "onresize": function () { }
  5310. }, {
  5311. closecallback: function () { }
  5312. }, { "style": { "height": "36px" } }).form; //創建窗體
  5313. _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); } }
  5314. setTimeout(() => {
  5315. U.UF.F.windowZooming(_formdiv)
  5316. }, 0);
  5317. break;
  5318. }
  5319. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5320. switch (str) {
  5321. case "studnetProject": //好友打開
  5322. _formdiv = new U.UF.UI.form(
  5323. "我的項目",
  5324. $$("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 }), {
  5325. "id": "studnetProject",
  5326. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5327. "onresize": function () { }
  5328. }, {
  5329. closecallback: function () { }
  5330. }, { "style": { "height": "36px" } }).form; //創建窗體
  5331. _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); } }
  5332. break;
  5333. case "studentEvaluate": //好友打開
  5334. _formdiv = new U.UF.UI.form(
  5335. "我的評價",
  5336. $$("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 }), {
  5337. "id": "studentEvaluate",
  5338. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //創建窗體
  5343. _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); } }
  5344. break;
  5345. case "my":
  5346. _formdiv = new U.UF.UI.form(
  5347. "我的資料",
  5348. $$("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 }), {
  5349. "id": "my",
  5350. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5351. "onresize": function () { }
  5352. }, {
  5353. closecallback: function () { }
  5354. }, { "style": { "height": "36px" } }).form; //創建窗體
  5355. _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); } }
  5356. break;
  5357. case "program":
  5358. _formdiv = new U.UF.UI.form(
  5359. "編程平臺",
  5360. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5361. "id": "program",
  5362. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5363. "onresize": function () { }
  5364. }, {
  5365. closecallback: function () { }
  5366. }, { "style": { "height": "36px" } }).form; //創建窗體
  5367. _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); } }
  5368. break;
  5369. case "library":
  5370. _formdiv = new U.UF.UI.form(
  5371. "素材庫",
  5372. $$("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 }), {
  5373. "id": "library",
  5374. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5375. "onresize": function () { }
  5376. }, {
  5377. closecallback: function () { }
  5378. }, { "style": { "height": "36px" } }).form; //創建窗體
  5379. _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); } }
  5380. break;
  5381. case "whiteboard":
  5382. _formdiv = new U.UF.UI.form(
  5383. "電子白板",
  5384. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5385. "id": "whiteboard",
  5386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5387. "onresize": function () { }
  5388. }, {
  5389. closecallback: function () { }
  5390. }, { "style": { "height": "36px" } }).form; //創建窗體
  5391. _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); } }
  5392. break;
  5393. case "investigation":
  5394. _formdiv = new U.UF.UI.form(
  5395. "問卷調查",
  5396. $$("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 }), {
  5397. "id": "investigation",
  5398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //創建窗體
  5403. _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); } }
  5404. break;
  5405. case "note":
  5406. _formdiv = new U.UF.UI.form(
  5407. "便簽分類",
  5408. $$("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 }), {
  5409. "id": "note",
  5410. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5411. "onresize": function () { }
  5412. }, {
  5413. closecallback: function () { }
  5414. }, { "style": { "height": "36px" } }).form; //創建窗體
  5415. _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); } }
  5416. break;
  5417. // case "score":
  5418. // _formdiv = new U.UF.UI.form(
  5419. // "量規評分",
  5420. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5421. // "id": "score",
  5422. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5423. // "onresize": function() {}
  5424. // }, {
  5425. // closecallback: function() {}
  5426. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5427. // _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); } }
  5428. // break;
  5429. case "mind":
  5430. _formdiv = new U.UF.UI.form(
  5431. "思維導圖",
  5432. $$("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"
  5433. "id": "mind",
  5434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //創建窗體
  5439. _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); } }
  5440. break;
  5441. case "doc":
  5442. // U.MD.D.I.isRoom();
  5443. _formdiv = new U.UF.UI.form(
  5444. "協同文檔",
  5445. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5446. "id": "doc",
  5447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //創建窗體
  5452. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5453. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5454. })
  5455. _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); } }
  5456. break;
  5457. case "train": //好友打開
  5458. _formdiv = new U.UF.UI.form(
  5459. "訓練平臺",
  5460. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5461. "id": "train",
  5462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //創建窗體
  5467. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5468. break;
  5469. case "studentStudy":
  5470. _formdiv = new U.UF.UI.form(
  5471. "課程中心",
  5472. $$("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
  5473. "id": "studentStudy",
  5474. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5480. break;
  5481. case "mindNetwork": //好友打開
  5482. _formdiv = new U.UF.UI.form(
  5483. "思維網格",
  5484. $$("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 }), {
  5485. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. case "studentClassRoom": //好友打開
  5494. _formdiv = new U.UF.UI.form(
  5495. "實時課堂",
  5496. $$("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 }), {
  5497. "id": "studentClassRoom",
  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/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5504. setTimeout(() => {
  5505. U.UF.F.windowZooming(_formdiv)
  5506. }, 0);
  5507. break;
  5508. }
  5509. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5510. //選擇應用處理
  5511. switch (str) {
  5512. case "project": //好友打開
  5513. _formdiv = new U.UF.UI.form(
  5514. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5515. $$("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 }), {
  5516. "id": "project",
  5517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5518. "onresize": function () { }
  5519. }, {
  5520. closecallback: function () { }
  5521. }, { "style": { "height": "36px" } }).form; //創建窗體
  5522. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5523. break;
  5524. case "student":
  5525. _formdiv = new U.UF.UI.form(
  5526. "學生管理",
  5527. $$("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 }), {
  5528. "id": "student",
  5529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5530. "onresize": function () { }
  5531. }, {
  5532. closecallback: function () { }
  5533. }, { "style": { "height": "36px" } }).form; //創建窗體
  5534. _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); } }
  5535. break;
  5536. case "evaluate":
  5537. _formdiv = new U.UF.UI.form(
  5538. "學生評價",
  5539. $$("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 }), {
  5540. "id": "evaluate",
  5541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5542. "onresize": function () { }
  5543. }, {
  5544. closecallback: function () { }
  5545. }, { "style": { "height": "36px" } }).form; //創建窗體
  5546. _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); } }
  5547. break;
  5548. case "sys":
  5549. _formdiv = new U.UF.UI.form(
  5550. "目標管理",
  5551. $$("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 }), {
  5552. "id": "sys",
  5553. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //創建窗體
  5558. _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); } }
  5559. break;
  5560. case "courseDesign":
  5561. _formdiv = new U.UF.UI.form(
  5562. "項目設計",
  5563. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5564. "id": "courseDesign",
  5565. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //創建窗體
  5570. _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); } }
  5571. break;
  5572. case "program":
  5573. _formdiv = new U.UF.UI.form(
  5574. "編程平臺",
  5575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5576. "id": "program",
  5577. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //創建窗體
  5582. _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); } }
  5583. break;
  5584. case "class":
  5585. _formdiv = new U.UF.UI.form(
  5586. "班級管理",
  5587. $$("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 }), {
  5588. "id": "class",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //創建窗體
  5594. _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); } }
  5595. break;
  5596. case "Grade":
  5597. _formdiv = new U.UF.UI.form(
  5598. "年級管理",
  5599. $$("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 }), {
  5600. "id": "Grade",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //創建窗體
  5606. _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); } }
  5607. break;
  5608. case "teacherOffice":
  5609. _formdiv = new U.UF.UI.form(
  5610. "教研室",
  5611. $$("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 }), {
  5612. "id": "teacherOffice",
  5613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //創建窗體
  5618. _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); } }
  5619. break;
  5620. case "my":
  5621. _formdiv = new U.UF.UI.form(
  5622. "我的資料",
  5623. $$("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 }), {
  5624. "id": "my",
  5625. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //創建窗體
  5630. _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); } }
  5631. break;
  5632. case "notice":
  5633. _formdiv = new U.UF.UI.form(
  5634. "通知公告",
  5635. $$("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 }), {
  5636. "id": "notice",
  5637. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5638. "onresize": function () { }
  5639. }, {
  5640. closecallback: function () { }
  5641. }, { "style": { "height": "36px" } }).form; //創建窗體
  5642. _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); } }
  5643. break;
  5644. case "library":
  5645. _formdiv = new U.UF.UI.form(
  5646. "素材庫",
  5647. $$("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 }), {
  5648. "id": "library",
  5649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //創建窗體
  5654. _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); } }
  5655. break;
  5656. case "whiteboard":
  5657. _formdiv = new U.UF.UI.form(
  5658. "電子白板",
  5659. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5660. "id": "whiteboard",
  5661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5662. "onresize": function () { }
  5663. }, {
  5664. closecallback: function () { }
  5665. }, { "style": { "height": "36px" } }).form; //創建窗體
  5666. _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); } }
  5667. break;
  5668. case "investigation":
  5669. _formdiv = new U.UF.UI.form(
  5670. "問卷調查",
  5671. $$("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 }), {
  5672. "id": "investigation",
  5673. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5674. "onresize": function () { }
  5675. }, {
  5676. closecallback: function () { }
  5677. }, { "style": { "height": "36px" } }).form; //創建窗體
  5678. _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); } }
  5679. break;
  5680. case "note":
  5681. _formdiv = new U.UF.UI.form(
  5682. "便簽分類",
  5683. $$("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 }), {
  5684. "id": "note",
  5685. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //創建窗體
  5690. _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); } }
  5691. break;
  5692. // case "score":
  5693. // _formdiv = new U.UF.UI.form(
  5694. // "量規評分",
  5695. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5696. // "id": "score",
  5697. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5698. // "onresize": function() {}
  5699. // }, {
  5700. // closecallback: function() {}
  5701. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5702. // _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); } }
  5703. // break;
  5704. case "mind":
  5705. _formdiv = new U.UF.UI.form(
  5706. "思維導圖",
  5707. $$("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"
  5708. "id": "mind",
  5709. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5710. "onresize": function () { }
  5711. }, {
  5712. closecallback: function () { }
  5713. }, { "style": { "height": "36px" } }).form; //創建窗體
  5714. _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); } }
  5715. break;
  5716. case "doc":
  5717. // U.MD.D.I.isRoom();
  5718. _formdiv = new U.UF.UI.form(
  5719. "協同文檔",
  5720. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5721. "id": "doc",
  5722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5723. "onresize": function () { }
  5724. }, {
  5725. closecallback: function () { }
  5726. }, { "style": { "height": "36px" } }).form; //創建窗體
  5727. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5728. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5729. })
  5730. _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); } }
  5731. break;
  5732. case "study":
  5733. _formdiv = new U.UF.UI.form(
  5734. "課程中心",
  5735. $$("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
  5736. "id": "study",
  5737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5738. "onresize": function () { }
  5739. }, {
  5740. closecallback: function () { }
  5741. }, { "style": { "height": "36px" } }).form; //創建窗體
  5742. _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); } }
  5743. break;
  5744. case "mindNetwork": //好友打開
  5745. _formdiv = new U.UF.UI.form(
  5746. "思維網格",
  5747. $$("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 }), {
  5748. "id": "mindNetwork",
  5749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5750. "onresize": function () { }
  5751. }, {
  5752. closecallback: function () { }
  5753. }, { "style": { "height": "36px" } }).form; //創建窗體
  5754. _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); } }
  5755. break;
  5756. case "train": //好友打開
  5757. _formdiv = new U.UF.UI.form(
  5758. "訓練平臺",
  5759. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5760. "id": "mindNetwork",
  5761. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5762. "onresize": function () { }
  5763. }, {
  5764. closecallback: function () { }
  5765. }, { "style": { "height": "36px" } }).form; //創建窗體
  5766. _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); } }
  5767. break;
  5768. case "teacherClassRoom": //好友打開
  5769. _formdiv = new U.UF.UI.form(
  5770. "實時課堂",
  5771. $$("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 }), {
  5772. "id": "teacherClassRoom",
  5773. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5774. "onresize": function () { }
  5775. }, {
  5776. closecallback: function () { }
  5777. }, { "style": { "height": "36px" } }).form; //創建窗體
  5778. _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); } }
  5779. setTimeout(() => {
  5780. U.UF.F.windowZooming(_formdiv)
  5781. }, 0);
  5782. break;
  5783. }
  5784. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5785. switch (str) {
  5786. case "project": //好友打開
  5787. _formdiv = new U.UF.UI.form(
  5788. "課程管理",
  5789. $$("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 }), {
  5790. "id": "project",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //創建窗體
  5796. _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); } }
  5797. break;
  5798. case "evaluate":
  5799. _formdiv = new U.UF.UI.form(
  5800. "學生評價",
  5801. $$("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 }), {
  5802. "id": "evaluate",
  5803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5804. "onresize": function () { }
  5805. }, {
  5806. closecallback: function () { }
  5807. }, { "style": { "height": "36px" } }).form; //創建窗體
  5808. _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); } }
  5809. break;
  5810. case "notice":
  5811. _formdiv = new U.UF.UI.form(
  5812. "通知公告",
  5813. $$("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 }), {
  5814. "id": "notice",
  5815. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //創建窗體
  5820. _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); } }
  5821. break;
  5822. case "stuLibrary":
  5823. _formdiv = new U.UF.UI.form(
  5824. "學習資料",
  5825. $$("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 }), {
  5826. "id": "stuLibrary",
  5827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5828. "onresize": function () { }
  5829. }, {
  5830. closecallback: function () { }
  5831. }, { "style": { "height": "36px" } }).form; //創建窗體
  5832. _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); } }
  5833. break;
  5834. case "program":
  5835. _formdiv = new U.UF.UI.form(
  5836. "編程平臺",
  5837. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5838. "id": "program",
  5839. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //創建窗體
  5844. _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); } }
  5845. break;
  5846. case "whiteboard":
  5847. _formdiv = new U.UF.UI.form(
  5848. "電子白板",
  5849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5850. "id": "whiteboard",
  5851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5852. "onresize": function () { }
  5853. }, {
  5854. closecallback: function () { }
  5855. }, { "style": { "height": "36px" } }).form; //創建窗體
  5856. _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); } }
  5857. break;
  5858. case "investigation":
  5859. _formdiv = new U.UF.UI.form(
  5860. "問卷調查",
  5861. $$("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 }), {
  5862. "id": "investigation",
  5863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5864. "onresize": function () { }
  5865. }, {
  5866. closecallback: function () { }
  5867. }, { "style": { "height": "36px" } }).form; //創建窗體
  5868. _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); } }
  5869. break;
  5870. case "mind":
  5871. _formdiv = new U.UF.UI.form(
  5872. "思維導圖",
  5873. $$("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"
  5874. "id": "mind",
  5875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5876. "onresize": function () { }
  5877. }, {
  5878. closecallback: function () { }
  5879. }, { "style": { "height": "36px" } }).form; //創建窗體
  5880. _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); } }
  5881. break;
  5882. case "doc":
  5883. // U.MD.D.I.isRoom();
  5884. _formdiv = new U.UF.UI.form(
  5885. "協同文檔",
  5886. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5887. "id": "doc",
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //創建窗體
  5893. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5894. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5895. })
  5896. _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); } }
  5897. break;
  5898. case "study":
  5899. _formdiv = new U.UF.UI.form(
  5900. "課程中心",
  5901. $$("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
  5902. "id": "study",
  5903. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //創建窗體
  5908. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5909. break;
  5910. case "mindNetwork": //好友打開
  5911. _formdiv = new U.UF.UI.form(
  5912. "思維網格",
  5913. $$("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 }), {
  5914. "id": "mindNetwork",
  5915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5916. "onresize": function () { }
  5917. }, {
  5918. closecallback: function () { }
  5919. }, { "style": { "height": "36px" } }).form; //創建窗體
  5920. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5921. break;
  5922. case "train": //好友打開
  5923. _formdiv = new U.UF.UI.form(
  5924. "訓練平臺",
  5925. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5926. "id": "train",
  5927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5928. "onresize": function () { }
  5929. }, {
  5930. closecallback: function () { }
  5931. }, { "style": { "height": "36px" } }).form; //創建窗體
  5932. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5933. break;
  5934. case "sys":
  5935. _formdiv = new U.UF.UI.form(
  5936. "目標管理",
  5937. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5938. "id": "sys",
  5939. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //創建窗體
  5944. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目標管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5945. break;
  5946. case "courseDesign":
  5947. _formdiv = new U.UF.UI.form(
  5948. "項目設計",
  5949. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5950. "id": "courseDesign",
  5951. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, { "style": { "height": "36px" } }).form; //創建窗體
  5956. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "項目設計", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5957. break;
  5958. }
  5959. } else if (!_type) {
  5960. switch (str) {
  5961. case "my":
  5962. _formdiv = new U.UF.UI.form(
  5963. "我的資料",
  5964. $$("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 }), {
  5965. "id": "my",
  5966. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5967. "onresize": function () { }
  5968. }, {
  5969. closecallback: function () { }
  5970. }, { "style": { "height": "36px" } }).form; //創建窗體
  5971. _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); } }
  5972. break;
  5973. }
  5974. }
  5975. switch (str) {
  5976. // AIprogram2 AI體驗 aihub.cocorobo.cn
  5977. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  5978. // AIprogram AI編程 ai-blockly.cocorobo.cn
  5979. case "formulaEdi": //公式編輯
  5980. _formdiv = new U.UF.UI.form(
  5981. "公式編輯",
  5982. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5983. "id": "formulaEdi",
  5984. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5985. "onresize": function () { }
  5986. }, {
  5987. closecallback: function () { }
  5988. }, { "style": { "height": "36px" } }).form; //創建窗體
  5989. _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); } }
  5990. break;
  5991. case "molStr": //分子結構
  5992. _formdiv = new U.UF.UI.form(
  5993. "分子結構",
  5994. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5995. "id": "molStr",
  5996. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5997. "onresize": function () { }
  5998. }, {
  5999. closecallback: function () { }
  6000. }, { "style": { "height": "36px" } }).form; //創建窗體
  6001. _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); } }
  6002. break;
  6003. case "timeAxis": //時間軸
  6004. _formdiv = new U.UF.UI.form(
  6005. "時間軸",
  6006. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6007. "id": "timeAxis",
  6008. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6009. "onresize": function () { }
  6010. }, {
  6011. closecallback: function () { }
  6012. }, { "style": { "height": "36px" } }).form; //創建窗體
  6013. _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); } }
  6014. break;
  6015. case "AIprogram2": //AI體驗
  6016. _formdiv = new U.UF.UI.form(
  6017. "AI體驗",
  6018. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6019. "id": "AIprogram2",
  6020. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //創建窗體
  6025. _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); } }
  6026. break;
  6027. case "Pythonprogram": //python編程
  6028. _formdiv = new U.UF.UI.form(
  6029. "Python編程",
  6030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6031. "id": "Pythonprogram",
  6032. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //創建窗體
  6037. _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); } }
  6038. break;
  6039. case "AIprogram": //ai編程
  6040. _formdiv = new U.UF.UI.form(
  6041. "AI編程平臺",
  6042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6043. "id": "AIprogram",
  6044. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //創建窗體
  6049. _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); } }
  6050. break;
  6051. case "CocoPi": //CocoPi
  6052. _formdiv = new U.UF.UI.form(
  6053. "CocoPi",
  6054. $$("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" }), {
  6055. "id": "CocoPi",
  6056. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6057. "onresize": function () { }
  6058. }, {
  6059. closecallback: function () { }
  6060. }, { "style": { "height": "36px" } }).form; //創建窗體
  6061. _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); } }
  6062. break;
  6063. case "Wood": //Wood
  6064. _formdiv = new U.UF.UI.form(
  6065. "海龜編程",
  6066. $$("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/" }), {
  6067. "id": "Wood",
  6068. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6069. "onresize": function () { }
  6070. }, {
  6071. closecallback: function () { }
  6072. }, { "style": { "height": "36px" } }).form; //創建窗體
  6073. _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); } }
  6074. break;
  6075. case "car": //模擬駕駛
  6076. _formdiv = new U.UF.UI.form(
  6077. "模擬駕駛",
  6078. $$("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/" }), {
  6079. "id": "car",
  6080. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. closecallback: function () { }
  6084. }, { "style": { "height": "36px" } }).form; //創建窗體
  6085. _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); } }
  6086. break;
  6087. case "lineSearch": //路徑搜索
  6088. _formdiv = new U.UF.UI.form(
  6089. "路徑搜索",
  6090. $$("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/" }), {
  6091. "id": "lineSearch",
  6092. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //創建窗體
  6097. _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); } }
  6098. break;
  6099. case "deepLearning": //深度學習
  6100. _formdiv = new U.UF.UI.form(
  6101. "深度學習",
  6102. $$("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/#" }), {
  6103. "id": "deepLearning",
  6104. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6105. "onresize": function () { }
  6106. }, {
  6107. closecallback: function () { }
  6108. }, { "style": { "height": "36px" } }).form; //創建窗體
  6109. _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); } }
  6110. break;
  6111. case "allHistory": //深度學習
  6112. _formdiv = new U.UF.UI.form(
  6113. "全歷史",
  6114. $$("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/" }), {
  6115. "id": "allHistory",
  6116. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6117. "onresize": function () { }
  6118. }, {
  6119. closecallback: function () { }
  6120. }, { "style": { "height": "36px" } }).form; //創建窗體
  6121. _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); } }
  6122. break;
  6123. case "chatPDF": //ai編程
  6124. _formdiv = new U.UF.UI.form(
  6125. "chatPDF",
  6126. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6127. "id": "chatPDF",
  6128. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6129. "onresize": function () { }
  6130. }, {
  6131. closecallback: function () { }
  6132. }, { "style": { "height": "36px" } }).form; //創建窗體
  6133. _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); } }
  6134. break;
  6135. case "resources": //國家教育
  6136. _formdiv = new U.UF.UI.form(
  6137. "國家教育",
  6138. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6139. "id": "resources",
  6140. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6141. "onresize": function () { }
  6142. }, {
  6143. closecallback: function () { }
  6144. }, { "style": { "height": "36px" } }).form; //創建窗體
  6145. _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); } }
  6146. break;
  6147. case "codeEdit": //源碼編輯
  6148. _formdiv = new U.UF.UI.form(
  6149. "源碼編輯",
  6150. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6151. "id": "codeEdit",
  6152. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6153. "onresize": function () { }
  6154. }, {
  6155. closecallback: function () { }
  6156. }, { "style": { "height": "36px" } }).form; //創建窗體
  6157. _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); } }
  6158. break; //
  6159. case "MindMap": //MindMap
  6160. _formdiv = new U.UF.UI.form(
  6161. "MindMap",
  6162. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6163. "id": "MindMap",
  6164. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6165. "onresize": function () { }
  6166. }, {
  6167. closecallback: function () { }
  6168. }, { "style": { "height": "36px" } }).form; //創建窗體
  6169. _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); } }
  6170. break;
  6171. case "netWorkPanel": //netWorkPanel
  6172. _formdiv = new U.UF.UI.form(
  6173. "netWorkPanel",
  6174. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6175. "id": "netWorkPanel",
  6176. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6177. "onresize": function () { }
  6178. }, {
  6179. closecallback: function () { }
  6180. }, { "style": { "height": "36px" } }).form; //創建窗體
  6181. _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); } }
  6182. break;
  6183. case "GeoGebra": //GeoGebra
  6184. _formdiv = new U.UF.UI.form(
  6185. "GeoGebra",
  6186. $$("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" }), {
  6187. "id": "GeoGebra",
  6188. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6189. "onresize": function () { }
  6190. }, {
  6191. closecallback: function () { }
  6192. }, { "style": { "height": "36px" } }).form; //創建窗體
  6193. _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); } }
  6194. break;
  6195. case "translation": //翻譯
  6196. _formdiv = new U.UF.UI.form(
  6197. "翻譯",
  6198. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6199. "id": "translation",
  6200. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6201. "onresize": function () { }
  6202. }, {
  6203. closecallback: function () { }
  6204. }, { "style": { "height": "36px" } }).form; //創建窗體
  6205. _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); } }
  6206. break;
  6207. case "mohe": //魔盒
  6208. _formdiv = new U.UF.UI.form(
  6209. "魔盒識字",
  6210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6211. "id": "mohe",
  6212. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, { "style": { "height": "36px" } }).form; //創建窗體
  6217. _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); } }
  6218. break;
  6219. case "24game": //24點
  6220. _formdiv = new U.UF.UI.form(
  6221. "24點",
  6222. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6223. "id": "24game",
  6224. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, { "style": { "height": "36px" } }).form; //創建窗體
  6229. _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); } }
  6230. break;
  6231. case "case":
  6232. _formdiv = new U.UF.UI.form(
  6233. "課程進展",
  6234. $$("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 }), {
  6235. "id": "case",
  6236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6237. "onresize": function () { }
  6238. }, {
  6239. closecallback: function () { }
  6240. }, { "style": { "height": "36px" } }).form; //創建窗體
  6241. _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); } }
  6242. break;
  6243. case "snf":
  6244. _formdiv = new U.UF.UI.form(
  6245. "賽諾梵",
  6246. $$("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" }), {
  6247. "id": "snf",
  6248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6249. "onresize": function () { }
  6250. }, {
  6251. closecallback: function () { }
  6252. }, { "style": { "height": "36px" } }).form; //創建窗體
  6253. _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); } }
  6254. break;
  6255. case "hanFamily":
  6256. _formdiv = new U.UF.UI.form(
  6257. "漢字家族",
  6258. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6259. "id": "hanFamily",
  6260. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6261. "onresize": function () { }
  6262. }, {
  6263. closecallback: function () { }
  6264. }, { "style": { "height": "36px" } }).form; //創建窗體
  6265. _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); } }
  6266. break;
  6267. case "hanClassics":
  6268. _formdiv = new U.UF.UI.form(
  6269. "國學經典",
  6270. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6271. "id": "hanClassics",
  6272. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6273. "onresize": function () { }
  6274. }, {
  6275. closecallback: function () { }
  6276. }, { "style": { "height": "36px" } }).form; //創建窗體
  6277. _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); } }
  6278. break;
  6279. case "hanTraining":
  6280. _formdiv = new U.UF.UI.form(
  6281. "筆畫訓練",
  6282. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6283. "id": "hanTraining",
  6284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6285. "onresize": function () { }
  6286. }, {
  6287. closecallback: function () { }
  6288. }, { "style": { "height": "36px" } }).form; //創建窗體
  6289. _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); } }
  6290. break;
  6291. case "hanClass":
  6292. _formdiv = new U.UF.UI.form(
  6293. "書法課堂",
  6294. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6295. "id": "hanClass",
  6296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //創建窗體
  6301. _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); } }
  6302. break;
  6303. case "han":
  6304. _formdiv = new U.UF.UI.form(
  6305. "漢字宮",
  6306. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6307. "id": "han",
  6308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, { "style": { "height": "36px" } }).form; //創建窗體
  6313. _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); } }
  6314. break;
  6315. case "projectGM": //課程管理
  6316. _formdiv = new U.UF.UI.form(
  6317. "課程管理",
  6318. $$("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 }), {
  6319. "id": "projectGM",
  6320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, { "style": { "height": "36px" } }).form; //創建窗體
  6325. _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); } }
  6326. break;
  6327. case "studyGM": //課程中心
  6328. _formdiv = new U.UF.UI.form(
  6329. "課程中心",
  6330. $$("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
  6331. "id": "study",
  6332. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6333. "onresize": function () { }
  6334. }, {
  6335. closecallback: function () { }
  6336. }, { "style": { "height": "36px" } }).form; //創建窗體
  6337. _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); } }
  6338. break;
  6339. // studentGM
  6340. case "studentGM": //學生管理
  6341. _formdiv = new U.UF.UI.form(
  6342. "學生管理",
  6343. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6344. "id": "studentGM",
  6345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //創建窗體
  6350. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "學生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6351. break;
  6352. case "evaluateGM": //學生評價
  6353. _formdiv = new U.UF.UI.form(
  6354. "學生評價",
  6355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6356. "id": "evaluateGM",
  6357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //創建窗體
  6362. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "學生評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6363. break;
  6364. // classGM
  6365. case "classGM": //班級管理
  6366. _formdiv = new U.UF.UI.form(
  6367. "班級管理",
  6368. $$("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 }), {
  6369. "id": "classGM",
  6370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //創建窗體
  6375. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班級管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6376. break;
  6377. // dataGM
  6378. case "dataGM":
  6379. _formdiv = new U.UF.UI.form(
  6380. "我的資料",
  6381. $$("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 }), {
  6382. "id": "dataGM",
  6383. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6384. "onresize": function () { }
  6385. }, {
  6386. closecallback: function () { }
  6387. }, { "style": { "height": "36px" } }).form; //創建窗體
  6388. _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); } }
  6389. break;
  6390. // caseGM
  6391. case "caseGM": //課程進展
  6392. _formdiv = new U.UF.UI.form(
  6393. "課程進展",
  6394. $$("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 }), {
  6395. "id": "caseGM",
  6396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6397. "onresize": function () { }
  6398. }, {
  6399. closecallback: function () { }
  6400. }, { "style": { "height": "36px" } }).form; //創建窗體
  6401. _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); } }
  6402. break;
  6403. // meterialGM
  6404. case "meterialGM": //素材庫
  6405. _formdiv = new U.UF.UI.form(
  6406. "素材庫",
  6407. $$("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 }), {
  6408. "id": "meterialGM",
  6409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6410. "onresize": function () { }
  6411. }, {
  6412. closecallback: function () { }
  6413. }, { "style": { "height": "36px" } }).form; //創建窗體
  6414. _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); } }
  6415. break;
  6416. // evaluateSGM
  6417. case "evaluateSGM": //我的評價
  6418. _formdiv = new U.UF.UI.form(
  6419. "我的評價",
  6420. $$("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 }), {
  6421. "id": "evaluateSGM",
  6422. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, { "style": { "height": "36px" } }).form; //創建窗體
  6427. _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); } }
  6428. break;
  6429. case "jupyter": //jupyter
  6430. _formdiv = new U.UF.UI.form(
  6431. "jupyter",
  6432. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6433. "id": "jupyter",
  6434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6435. "onresize": function () { }
  6436. }, {
  6437. closecallback: function () { }
  6438. }, { "style": { "height": "36px" } }).form; //創建窗體
  6439. _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); } }
  6440. break;
  6441. case "number": //數字實驗室
  6442. _formdiv = new U.UF.UI.form(
  6443. "數字實驗室",
  6444. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6445. "id": "number",
  6446. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, { "style": { "height": "36px" } }).form; //創建窗體
  6451. _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); } }
  6452. break;
  6453. case "studentCourse": //項目管理 學生
  6454. _formdiv = new U.UF.UI.form(
  6455. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6456. $$("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 }), {
  6457. "id": "studentCourse",
  6458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, { "style": { "height": "36px" } }).form; //創建窗體
  6463. _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); } }
  6464. break;
  6465. case "studentCourseS": //項目管理 老師
  6466. _formdiv = new U.UF.UI.form(
  6467. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6468. $$("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 }), {
  6469. "id": "studentCourseS",
  6470. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6471. "onresize": function () { }
  6472. }, {
  6473. closecallback: function () { }
  6474. }, { "style": { "height": "36px" } }).form; //創建窗體
  6475. _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); } }
  6476. break;
  6477. case "studentIndex": //項目中心
  6478. _formdiv = new U.UF.UI.form(
  6479. "項目中心",
  6480. $$("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 }), {
  6481. "id": "studentIndex",
  6482. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6483. "onresize": function () { }
  6484. }, {
  6485. closecallback: function () { }
  6486. }, { "style": { "height": "36px" } }).form; //創建窗體
  6487. _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); } }
  6488. break;
  6489. case "CaseDesignS":
  6490. _formdiv = new U.UF.UI.form(
  6491. "項目進展",
  6492. $$("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 }), {
  6493. "id": "case",
  6494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, { "style": { "height": "36px" } }).form; //創建窗體
  6499. _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); } }
  6500. break;
  6501. case "tcStudent": //騰訊學生管理
  6502. _formdiv = new U.UF.UI.form(
  6503. "學生管理",
  6504. $$("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 }), {
  6505. "id": "tcStudent",
  6506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6507. "onresize": function () { }
  6508. }, {
  6509. closecallback: function () { }
  6510. }, { "style": { "height": "36px" } }).form; //創建窗體
  6511. _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); } }
  6512. break;
  6513. case "tcSchool": //騰訊學校管理
  6514. _formdiv = new U.UF.UI.form(
  6515. "學校管理",
  6516. $$("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 }), {
  6517. "id": "tcSchool",
  6518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6519. "onresize": function () { }
  6520. }, {
  6521. closecallback: function () { }
  6522. }, { "style": { "height": "36px" } }).form; //創建窗體
  6523. _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); } }
  6524. break;
  6525. case "tcTeacher": //騰訊學校管理
  6526. _formdiv = new U.UF.UI.form(
  6527. "教師管理",
  6528. $$("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 }), {
  6529. "id": "tcTeacher",
  6530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, { "style": { "height": "36px" } }).form; //創建窗體
  6535. _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); } }
  6536. break;
  6537. case "teacher":
  6538. _formdiv = new U.UF.UI.form(
  6539. "教師管理",
  6540. $$("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 }), {
  6541. "id": "teacher",
  6542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, { "style": { "height": "36px" } }).form; //創建窗體
  6547. _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); } }
  6548. break;
  6549. case "tcData": //騰訊我的資料
  6550. _formdiv = new U.UF.UI.form(
  6551. "我的資料",
  6552. $$("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 }), {
  6553. "id": "tcData",
  6554. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //創建窗體
  6559. _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); } }
  6560. break;
  6561. case "tcNotice": //騰訊消息通知
  6562. _formdiv = new U.UF.UI.form(
  6563. "消息通知",
  6564. $$("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 }), {
  6565. "id": "tcNotice",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //創建窗體
  6571. _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); } }
  6572. break;
  6573. case "myReport": //好友打開
  6574. _formdiv = new U.UF.UI.form(
  6575. "我的評價",
  6576. $$("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 }), {
  6577. "id": "myReport",
  6578. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //創建窗體
  6583. _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); } }
  6584. break;
  6585. case "learnAna": //好友打開
  6586. _formdiv = new U.UF.UI.form(
  6587. "學習分析",
  6588. $$("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 }), {
  6589. "id": "learnAna",
  6590. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //創建窗體
  6595. _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); } }
  6596. break;
  6597. case "AIChat": //AI共創
  6598. _formdiv = new U.UF.UI.form(
  6599. "AI共創",
  6600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  6601. "id": "AIChat",
  6602. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. istop: true,
  6606. closecallback: function () { $("#aichat_icon").remove(); },
  6607. narrowcallback: function () {
  6608. if (!$("#aichat_icon")[0]) {
  6609. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6610. }
  6611. },
  6612. }, { "style": { "height": "36px" } }).form; //創建窗體
  6613. _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); } }
  6614. break;
  6615. case "ainew": //AI共創
  6616. _formdiv = new U.UF.UI.form(
  6617. "AI協同",
  6618. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  6619. "id": "ainew",
  6620. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6621. "onresize": function () { }
  6622. }, {
  6623. closecallback: function () { }
  6624. }, { "style": { "height": "36px" } }).form; //創建窗體
  6625. _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); } }
  6626. break;
  6627. case "gpt4": //gpt4
  6628. _formdiv = new U.UF.UI.form(
  6629. "AI助手",
  6630. $$("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 }), {
  6631. "id": "gpt4",
  6632. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6633. "onresize": function () { }
  6634. }, {
  6635. closecallback: function () { }
  6636. }, { "style": { "height": "36px" } }).form; //創建窗體
  6637. _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); } }
  6638. break;
  6639. case "aigpt": //gpt4
  6640. _formdiv = new U.UF.UI.form(
  6641. "AI助手+",
  6642. $$("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 }), {
  6643. "id": "aigpt",
  6644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6645. "onresize": function () { }
  6646. }, {
  6647. closecallback: function () {
  6648. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6649. }
  6650. }, { "style": { "height": "36px" } }).form; //創建窗體
  6651. _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); } }
  6652. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6653. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6654. })
  6655. break;
  6656. case "aiKnowledge": //aiKnowledge
  6657. _formdiv = new U.UF.UI.form(
  6658. "知識建構",
  6659. $$("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 }), {
  6660. "id": "aiKnowledge",
  6661. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6662. "onresize": function () { }
  6663. }, {
  6664. closecallback: function () { }
  6665. }, { "style": { "height": "36px" } }).form; //創建窗體
  6666. _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); } }
  6667. break;
  6668. case "futureClass": //AI共創
  6669. _formdiv = new U.UF.UI.form(
  6670. "協同建構",
  6671. $$("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
  6672. "id": "synergyCourse",
  6673. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6674. "onresize": function () { }
  6675. }, {
  6676. closecallback: function () {
  6677. $("iframe", _formdiv)[0].contentWindow.loginout();
  6678. }
  6679. }, { "style": { "height": "36px" } }).form; //創建窗體
  6680. _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); } }
  6681. break;
  6682. case "aiagent": //ai agent
  6683. _formdiv = new U.UF.UI.form(
  6684. "AI Agent",
  6685. $$("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" }), {
  6686. "id": "AIAgent",
  6687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //創建窗體
  6692. _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); } }
  6693. break;
  6694. case "dataBoard": //數據看板
  6695. _formdiv = new U.UF.UI.form(
  6696. "數據看板",
  6697. $$("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 }), {
  6698. "id": "dataBoard",
  6699. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6700. "onresize": function () { }
  6701. }, {
  6702. closecallback: function () { }
  6703. }, { "style": { "height": "36px" } }).form; //創建窗體
  6704. _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); } }
  6705. break;
  6706. case "dataBoardSies": //數據融合
  6707. _formdiv = new U.UF.UI.form(
  6708. "數據融合",
  6709. $$("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 }), {
  6710. "id": "dataBoardSies",
  6711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //創建窗體
  6716. _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); } }
  6717. break;
  6718. case "dataBoardNew": //數據看板
  6719. _formdiv = new U.UF.UI.form(
  6720. "綜合看板",
  6721. $$("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 }), {
  6722. "id": "dataBoardNew",
  6723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, { "style": { "height": "36px" } }).form; //創建窗體
  6728. _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); } }
  6729. break;
  6730. case "dataBoardTest": //數據看板
  6731. _formdiv = new U.UF.UI.form(
  6732. "評測看板",
  6733. $$("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 }), {
  6734. "id": "dataBoardTest",
  6735. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () { }
  6739. }, { "style": { "height": "36px" } }).form; //創建窗體
  6740. _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); } }
  6741. break;
  6742. case "AIAnalyse": //AI共創
  6743. _formdiv = new U.UF.UI.form(
  6744. "AI分析",
  6745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  6746. "id": "AIAnalyse",
  6747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //創建窗體
  6752. _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); } }
  6753. break;
  6754. case "studioCourse": //AI共創
  6755. _formdiv = new U.UF.UI.form(
  6756. "工作管理",
  6757. $$("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 }), {
  6758. "id": "studioCourse",
  6759. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //創建窗體
  6764. _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); } }
  6765. break;
  6766. case "studioIndex": //AI共創
  6767. _formdiv = new U.UF.UI.form(
  6768. "工作中心",
  6769. $$("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 }), {
  6770. "id": "studioIndex",
  6771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //創建窗體
  6776. _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); } }
  6777. break;
  6778. case "source":
  6779. _formdiv = new U.UF.UI.form(
  6780. "教學資源",
  6781. $$("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 }), {
  6782. "id": "source",
  6783. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //創建窗體
  6788. _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); } }
  6789. break;
  6790. case "testTeacher":
  6791. _formdiv = new U.UF.UI.form(
  6792. "智能表單",
  6793. $$("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 }), {
  6794. "id": "testTeacher",
  6795. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //創建窗體
  6800. _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); } }
  6801. break;
  6802. case "testStudent":
  6803. _formdiv = new U.UF.UI.form(
  6804. "教師中心",
  6805. $$("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 }), {
  6806. "id": "testStudent",
  6807. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6808. "onresize": function () { }
  6809. }, {
  6810. closecallback: function () { }
  6811. }, { "style": { "height": "36px" } }).form; //創建窗體
  6812. _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); } }
  6813. break;
  6814. case "testTeacherSies":
  6815. _formdiv = new U.UF.UI.form(
  6816. "教師管理",
  6817. $$("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 }), {
  6818. "id": "testTeacherSies",
  6819. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6820. "onresize": function () { }
  6821. }, {
  6822. closecallback: function () { }
  6823. }, { "style": { "height": "36px" } }).form; //創建窗體
  6824. _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); } }
  6825. break;
  6826. case "testStudentSies":
  6827. _formdiv = new U.UF.UI.form(
  6828. "教師中心",
  6829. $$("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 }), {
  6830. "id": "testStudentSies",
  6831. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6832. "onresize": function () { }
  6833. }, {
  6834. closecallback: function () { }
  6835. }, { "style": { "height": "36px" } }).form; //創建窗體
  6836. _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); } }
  6837. break;
  6838. case "ytpbl": //消息通知
  6839. _formdiv = new U.UF.UI.form(
  6840. "案例征集",
  6841. $$("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 }), {
  6842. "id": "ytpbl",
  6843. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6844. "onresize": function () { }
  6845. }, {
  6846. closecallback: function () { }
  6847. }, { "style": { "height": "36px" } }).form; //創建窗體
  6848. _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); } }
  6849. // 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");
  6850. break;
  6851. case "aiCourseResource": //人工智能窗體
  6852. _formdiv = new U.UF.UI.form(
  6853. false,
  6854. $$("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 }), {
  6855. "id": "aiCourseResource",
  6856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6857. "onresize": function () { },
  6858. "isdrag": false,
  6859. }, {
  6860. closecallback: function () { }
  6861. }, { "style": { "height": "36px" } }).form; //創建窗體
  6862. _taskbar = ''
  6863. break;
  6864. case "szdjgCocooroboX": //圖形化編程
  6865. _formdiv = new U.UF.UI.form(
  6866. "圖形化編程",
  6867. $$("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" }), {
  6868. "id": "szdjgCocooroboX",
  6869. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6870. "onresize": function () { }
  6871. }, {
  6872. closecallback: function () { }
  6873. }, { "style": { "height": "36px" } }).form; //創建窗體
  6874. _taskbar = ''
  6875. break;
  6876. case "szdjgPython": //python編程
  6877. _formdiv = new U.UF.UI.form(
  6878. "Python編程",
  6879. $$("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" }), {
  6880. "id": "szdjgPython",
  6881. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6882. "onresize": function () { }
  6883. }, {
  6884. closecallback: function () { }
  6885. }, { "style": { "height": "36px" } }).form; //創建窗體
  6886. _taskbar = ''
  6887. break;
  6888. case "Record":
  6889. _formdiv = new U.UF.UI.form(
  6890. "觀察記錄",
  6891. $$("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 }), {
  6892. "id": "Record",
  6893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6894. "onresize": function () { }
  6895. }, {
  6896. closecallback: function () { }
  6897. }, { "style": { "height": "36px" } }).form; //創建窗體
  6898. _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); } }
  6899. break;
  6900. case "aigptCourse":
  6901. _formdiv = new U.UF.UI.form(
  6902. "AI智能體",
  6903. $$("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' }), {
  6904. "id": "aigptCourse",
  6905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6906. "onresize": function () { }
  6907. }, {
  6908. closecallback: function () { }
  6909. }, { "style": { "height": "36px" } }).form; //創建窗體
  6910. _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); } }
  6911. break;
  6912. case "classroomObservation":
  6913. _formdiv = new U.UF.UI.form(
  6914. "課堂觀察",
  6915. $$("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 }), {
  6916. "id": "classroomObservation",
  6917. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, { "style": { "height": "36px" } }).form; //創建窗體
  6922. _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); } }
  6923. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6924. break;
  6925. case "pblCourse":
  6926. _formdiv = new U.UF.UI.form(
  6927. "學生PBL",
  6928. $$("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 }), {
  6929. "id": "pblCourse",
  6930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6931. "onresize": function () { }
  6932. }, {
  6933. closecallback: function () { }
  6934. }, { "style": { "height": "36px" } }).form; //創建窗體
  6935. _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); } }
  6936. break;
  6937. case "appStore":
  6938. _formdiv = new U.UF.UI.form(
  6939. "CocoFlow",
  6940. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.hk//aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6941. "id": "pblCourse",
  6942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6943. "onresize": function () { }
  6944. }, {
  6945. closecallback: function () { }
  6946. }, { "style": { "height": "36px" } }).form; //創建窗體
  6947. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6948. break;
  6949. case "userExamine":
  6950. _formdiv = new U.UF.UI.form(
  6951. "賬號申請",
  6952. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  6953. "id": "userExamine",
  6954. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6955. "onresize": function () { }
  6956. }, {
  6957. closecallback: function () { }
  6958. }, { "style": { "height": "36px" } }).form; //創建窗體
  6959. break;
  6960. }
  6961. //U.MD.D.I.openClick(str);
  6962. //如果有任務欄信息
  6963. if (_taskbar) {
  6964. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  6965. }
  6966. }
  6967. // U.MD.D.I.openClick = function(str){
  6968. // var click = '';
  6969. // switch(str){
  6970. // case 'friend':
  6971. // click = '我的好友';
  6972. // break;
  6973. // case 'domain':
  6974. // click = '域名管理';
  6975. // break;
  6976. // case 'disk':
  6977. // click = '我的雲盤';
  6978. // break;
  6979. // case 'word':
  6980. // click = 'Word';
  6981. // break;
  6982. // case 'excel':
  6983. // click = 'Execl';
  6984. // break;
  6985. // case 'txt':
  6986. // click = '文本文件';
  6987. // break;
  6988. // case 'lookupFriend':
  6989. // click = '查找好友';
  6990. // break;
  6991. // case 'ftp':
  6992. // click = 'FTP';
  6993. // break;
  6994. // case 'group':
  6995. // click = '群組';
  6996. // break;
  6997. // case 'set':
  6998. // click = '我的設置';
  6999. // break;
  7000. // case 'systemSet':
  7001. // click = '系統設置';
  7002. // break;
  7003. // case 'boomYun':
  7004. // click = '互聯辦公';
  7005. // break;
  7006. // case 'xz':
  7007. // click = '雲端下載';
  7008. // break;
  7009. // case 'client':
  7010. // click = '有思瀏覽器';
  7011. // break;
  7012. // case 'backEndProgramming':
  7013. // click = '在線後臺編程';
  7014. // break;
  7015. // case 'frontEndProgramming':
  7016. // click = '在線前端編程';
  7017. // break;
  7018. // default: break;
  7019. // }
  7020. // if(U.MD.D.I.Ip && click){
  7021. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7022. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7023. // })
  7024. // }
  7025. // }
  7026. /**
  7027. *函數作用:ajax簡易函數,使用post格式
  7028. *@param url {data} 後臺地址
  7029. *@param data {data} 參數json
  7030. *@param fn {data} 回調函數
  7031. *
  7032. */
  7033. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7034. // var xhr = new XMLHttpRequest();
  7035. // xhr.open("GET",url,true);
  7036. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7037. // xhr.onreadystatechange = function(){
  7038. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7039. // fn.call(this,xhr.responseText);
  7040. // }
  7041. // };
  7042. // xhr.send();
  7043. // }
  7044. /*判斷是否是內網IP*/
  7045. // U.MD.D.I.isInnerIPFn = function(str){
  7046. // var curPageUrl = str;
  7047. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7048. // curPageUrl =curPageUrl.replace(reg1,'');
  7049. // // console.log('curPageUrl-1 '+curPageUrl);
  7050. // var reg2 = /\:+/g;//替換冒號為一點
  7051. // curPageUrl =curPageUrl.replace(reg2,'.');
  7052. // // console.log('curPageUrl-2 '+curPageUrl);
  7053. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7054. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7055. // if(curPageUrl[2] != '16'){
  7056. // return ipAddress;
  7057. // }else{
  7058. // return false;
  7059. // }
  7060. // }
  7061. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7062. // //compatibility for firefox and chrome
  7063. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7064. // var pc = new myPeerConnection({
  7065. // iceServers: []
  7066. // }),
  7067. // noop = function() {},
  7068. // localIPs = {},
  7069. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7070. // key;
  7071. // function iterateIP(ip) {
  7072. // if (!localIPs[ip]) onNewIP(ip);
  7073. // localIPs[ip] = true;
  7074. // }
  7075. // //create a bogus data channel
  7076. // pc.createDataChannel("");
  7077. // // create offer and set local description
  7078. // pc.createOffer().then(function(sdp) {
  7079. // sdp.sdp.split('\n').forEach(function(line) {
  7080. // if (line.indexOf('candidate') < 0) return;
  7081. // line.match(ipRegex).forEach(iterateIP);
  7082. // });
  7083. // pc.setLocalDescription(sdp, noop, noop);
  7084. // }).catch(function(reason) {
  7085. // // An error occurred, so handle the failure to connect
  7086. // });
  7087. // //sten for candidate events
  7088. // pc.onicecandidate = function(ice) {
  7089. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7090. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7091. // };
  7092. // }
  7093. // U.MD.D.I.getUserIpBool = function(callback){
  7094. // U.MD.D.I.getUserIP(function(ip){
  7095. // alert("Got IP! :" + ip);
  7096. // });
  7097. //}
  7098. //#endregion
  7099. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7100. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7101. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7102. _userinfo = US.userInfo, //登錄用戶信息
  7103. _userid = US.userInfo.userid //登錄用戶id
  7104. let _iframe;
  7105. let _cid = cid,
  7106. _stage = stage,
  7107. _task = task,
  7108. _tool = tool;
  7109. var _jie = $$("div", {
  7110. "style": {
  7111. "position": "absolute",
  7112. "bottom": "50px",
  7113. "right": "50px",
  7114. "zIndex": "9999",
  7115. "backgroundColor": "#2268bc",
  7116. "color": "#fff",
  7117. "padding": "12px 20px",
  7118. "cursor": "pointer",
  7119. "borderRadius": "4px",
  7120. },
  7121. "innerHTML": "提交作業"
  7122. })
  7123. let aTool = ''
  7124. let _loading = document.createElement('div')
  7125. _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;"
  7126. // _loading.id = "";
  7127. let _lchild = document.createElement('div')
  7128. let _limg = document.createElement('img')
  7129. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7130. _limg.style = "width: 26px;margin-right: 10px;"
  7131. _lchild.appendChild(_limg)
  7132. let _lspan = document.createElement('span')
  7133. _lspan.innerHTML = "上傳中..."
  7134. _lchild.appendChild(_lspan)
  7135. _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%);"
  7136. _loading.appendChild(_lchild)
  7137. var _box = $$('div', {
  7138. "style": {
  7139. "position": "relative",
  7140. "width": "100%",
  7141. "height": "100%",
  7142. },
  7143. })
  7144. _box.appendChild(_loading)
  7145. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7146. switch (str) {
  7147. case "whiteboard":
  7148. aTool = 1;
  7149. _iframe = $$("iframe", {
  7150. "frameborder": "no",
  7151. "border": "0",
  7152. "scrolling ": "no",
  7153. "style": {
  7154. "cssText": "border:0;width:100%;height:100%"
  7155. },
  7156. "src": "https://iwb.cocorobo.hk/"
  7157. })
  7158. _box.appendChild(_iframe);
  7159. _box.appendChild(_jie);
  7160. _formdiv = new U.UF.UI.form(
  7161. "電子白板",
  7162. _box, {
  7163. "id": "whiteboard" + cid + stage + task + tool,
  7164. "style": {
  7165. "width": "90%",
  7166. "height": "90%",
  7167. "overflow": 'hidden'
  7168. },
  7169. "onresize": function () { }
  7170. }, {
  7171. closecallback: function () { }
  7172. }, {
  7173. "style": {
  7174. "height": "36px"
  7175. }
  7176. }).form; //創建窗體
  7177. _taskbar = {
  7178. "id": str + _formdiv.id,
  7179. "style": {
  7180. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7181. },
  7182. "name": "電子白板",
  7183. "forms": _formdiv,
  7184. "click": function () {
  7185. U.MD.D.I.openApplication(str, obj, info);
  7186. }
  7187. }
  7188. break;
  7189. case "mind":
  7190. aTool = 3;
  7191. _iframe = $$("iframe", {
  7192. "frameborder": "no",
  7193. "border": "0",
  7194. "scrolling ": "no",
  7195. "style": {
  7196. "cssText": "border:0;width:100%;height:100%"
  7197. },
  7198. "src": "/kityminder-editor/dist/index.html"
  7199. })
  7200. _box.appendChild(_iframe);
  7201. _box.appendChild(_jie);
  7202. _formdiv = new U.UF.UI.form(
  7203. "思維導圖",
  7204. _box, { //"/jsmind/example/demo.html"
  7205. "id": "mind" + cid + stage + task + tool,
  7206. "style": {
  7207. "width": "90%",
  7208. "height": "90%",
  7209. "overflow": 'hidden'
  7210. },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, {
  7215. "style": {
  7216. "height": "36px"
  7217. }
  7218. }).form; //創建窗體
  7219. _taskbar = {
  7220. "id": str + _formdiv.id,
  7221. "style": {
  7222. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7223. },
  7224. "name": "思維導圖",
  7225. "forms": _formdiv,
  7226. "click": function () {
  7227. U.MD.D.I.openApplication(str, obj, info);
  7228. }
  7229. }
  7230. break;
  7231. case "MindMap":
  7232. aTool = 3;
  7233. _iframe = $$("iframe", {
  7234. "frameborder": "no",
  7235. "border": "0",
  7236. "scrolling ": "no",
  7237. "style": {
  7238. "cssText": "border:0;width:100%;height:100%"
  7239. },
  7240. "src": "//cloud.cocorobo.hk/mind/"
  7241. })
  7242. _box.appendChild(_iframe);
  7243. _box.appendChild(_jie);
  7244. _formdiv = new U.UF.UI.form(
  7245. "思維導圖",
  7246. _box, { //"/jsmind/example/demo.html"
  7247. "id": "mind" + cid + stage + task + tool,
  7248. "style": {
  7249. "width": "90%",
  7250. "height": "90%",
  7251. "overflow": 'hidden'
  7252. },
  7253. "onresize": function () { }
  7254. }, {
  7255. closecallback: function () { }
  7256. }, {
  7257. "style": {
  7258. "height": "36px"
  7259. }
  7260. }).form; //創建窗體
  7261. _taskbar = {
  7262. "id": str + _formdiv.id,
  7263. "style": {
  7264. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7265. },
  7266. "name": "思維導圖",
  7267. "forms": _formdiv,
  7268. "click": function () {
  7269. U.MD.D.I.openApplication(str, obj, info);
  7270. }
  7271. }
  7272. break;
  7273. case "doc":
  7274. aTool = 6;
  7275. _iframe = $$("iframe", {
  7276. "frameborder": "no",
  7277. "border": "0",
  7278. "scrolling ": "no",
  7279. "style": {
  7280. "cssText": "border:0;width:100%;height:100%"
  7281. },
  7282. "src": "/Office/Word/WordEditArea.htm"
  7283. })
  7284. _box.appendChild(_iframe);
  7285. _box.appendChild(_jie);
  7286. _formdiv = new U.UF.UI.form(
  7287. "協同文檔",
  7288. _box, {
  7289. "id": "doc" + cid + stage + task + tool,
  7290. "style": {
  7291. "width": "90%",
  7292. "height": "90%",
  7293. "overflow": 'hidden'
  7294. },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, {
  7299. "style": {
  7300. "height": "36px"
  7301. }
  7302. }).form; //創建窗體
  7303. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7304. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7305. })
  7306. _taskbar = {
  7307. "id": str + _formdiv.id,
  7308. "style": {
  7309. "backgroundImage": "url(/img/icon/doc.png)"
  7310. },
  7311. "name": "協同文檔",
  7312. "forms": _formdiv,
  7313. "click": function () {
  7314. U.MD.D.I.openApplication(str, obj, info);
  7315. }
  7316. }
  7317. break;
  7318. case "mindNetwork": //好友打開
  7319. aTool = 7;
  7320. _iframe = $$("iframe", {
  7321. "webkitallowfullscreen": "",
  7322. "mozallowfullscreen": "",
  7323. "allowfullscreen": "",
  7324. "frameborder": "no",
  7325. "border": "0",
  7326. "scrolling ": "no",
  7327. "style": {
  7328. "cssText": "border:0; width:100%; height:100%;"
  7329. },
  7330. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7331. })
  7332. _box.appendChild(_iframe);
  7333. _box.appendChild(_jie);
  7334. _formdiv = new U.UF.UI.form(
  7335. "思維網格",
  7336. _box, {
  7337. "id": "mindNetwork" + cid + stage + task + tool,
  7338. "style": {
  7339. "width": "90%",
  7340. "height": "90%",
  7341. "overflow": 'hidden'
  7342. },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, {
  7347. "style": {
  7348. "height": "36px"
  7349. }
  7350. }).form; //創建窗體
  7351. _taskbar = {
  7352. "id": str + _formdiv.id,
  7353. "style": {
  7354. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7355. },
  7356. "name": "思維網格",
  7357. "forms": _formdiv,
  7358. "click": function () {
  7359. U.MD.D.I.openApplication(str, obj, info);
  7360. }
  7361. }
  7362. break;
  7363. case "courseDesign":
  7364. _iframe = $$("iframe", {
  7365. "webkitallowfullscreen": "",
  7366. "mozallowfullscreen": "",
  7367. "allowfullscreen": "",
  7368. "frameborder": "no",
  7369. "border": "0",
  7370. "scrolling ": "no",
  7371. "style": {
  7372. "cssText": "border:0; width:100%; height:100%;"
  7373. },
  7374. "src": "/course-design-vue"
  7375. })
  7376. _box.appendChild(_iframe);
  7377. _box.appendChild(_jie);
  7378. _formdiv = new U.UF.UI.form(
  7379. "項目設計",
  7380. _box, {
  7381. "id": "courseDesign" + cid + stage + task + tool,
  7382. "style": {
  7383. "width": "90%",
  7384. "height": "90%",
  7385. "overflow": 'hidden'
  7386. },
  7387. "onresize": function () { }
  7388. }, {
  7389. closecallback: function () { }
  7390. }, {
  7391. "style": {
  7392. "height": "36px"
  7393. }
  7394. }).form; //創建窗體
  7395. _taskbar = {
  7396. "id": str + _formdiv.id,
  7397. "style": {
  7398. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7399. },
  7400. "name": "項目設計",
  7401. "forms": _formdiv,
  7402. "click": function () {
  7403. U.MD.D.I.openApplication(str, obj, info);
  7404. }
  7405. }
  7406. break;
  7407. }
  7408. const script1 = document.createElement("script");
  7409. script1.type = "text/javascript";
  7410. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7411. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7412. const script2 = document.createElement("script");
  7413. script2.type = "text/javascript";
  7414. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7415. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7416. const script3 = document.createElement("script");
  7417. script3.type = "text/javascript";
  7418. script3.charset = "UTF-8";
  7419. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7420. const script4 = document.createElement("script");
  7421. script4.type = "text/javascript";
  7422. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7423. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7424. if (_iframe) {
  7425. if (str == 'doc') {
  7426. _iframe = _formdiv.querySelector('iframe')
  7427. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7428. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7429. _iframe.contentWindow.document.body.appendChild(script1);
  7430. _iframe.contentWindow.document.body.appendChild(script2);
  7431. // _iframe.contentWindow.document.body.appendChild(script3);
  7432. _iframe.contentWindow.document.body.appendChild(script4);
  7433. })
  7434. if (onloadListener) {
  7435. _iframe.contentDocument.location.reload()
  7436. } else {
  7437. _iframe.contentDocument.location.reload()
  7438. }
  7439. } else if (str == 'courseDesign') {
  7440. U.UF.DL.iframeLoad(_iframe, function () {
  7441. // _iframe.contentWindow.U.MD.O.W.load();
  7442. // _iframe.contentWindow.document.body.appendChild(script1);
  7443. _iframe.contentWindow.document.body.appendChild(script2);
  7444. _iframe.contentWindow.document.body.appendChild(script4);
  7445. })
  7446. } else if (str == 'mind') {
  7447. _iframe = _formdiv.querySelector('iframe')
  7448. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7449. //
  7450. _iframe.contentWindow.document.body.appendChild(script1);
  7451. _iframe.contentWindow.document.body.appendChild(script2);
  7452. _iframe.contentWindow.document.body.appendChild(script4);
  7453. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7454. })
  7455. if (onloadListener) {
  7456. _iframe.contentDocument.location.reload()
  7457. } else {
  7458. _iframe.contentDocument.location.reload()
  7459. }
  7460. } else if (str == 'whiteboard') {
  7461. _iframe = _formdiv.querySelector('iframe')
  7462. let onloadListener = _iframe.onload = () => {
  7463. _iframe.contentWindow.document.body.appendChild(script1);
  7464. _iframe.contentWindow.document.body.appendChild(script2);
  7465. _iframe.contentWindow.document.body.appendChild(script4);
  7466. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7467. };
  7468. // if (onloadListener) {
  7469. // try {
  7470. // _iframe.src += "?cocorobo="+new Date().getTime()
  7471. // _iframe.contentWindow.document.location.reload()
  7472. // } catch (error) {
  7473. // }
  7474. // } else {
  7475. // _iframe.contentDocument.location.reload()
  7476. // }
  7477. } else {
  7478. _iframe.onload = () => {
  7479. _iframe.contentWindow.document.body.appendChild(script1);
  7480. _iframe.contentWindow.document.body.appendChild(script2);
  7481. // _iframe.contentWindow.document.body.appendChild(script3);
  7482. _iframe.contentWindow.document.body.appendChild(script4);
  7483. };
  7484. }
  7485. _jie.onclick = async () => {
  7486. let text = ''
  7487. if (aTool == 1) {
  7488. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7489. } else if (aTool == 6) {
  7490. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7491. } else if (aTool == 3) {
  7492. text = await U.MD.D.I.getEditorContent(_iframe);
  7493. }
  7494. _loading.style.display = 'flex'
  7495. console.log(_loading);
  7496. var _ajs = _iframe.contentWindow.document.createElement("script");
  7497. _ajs.type = "text/javascript";
  7498. _ajs.innerHTML =
  7499. // 'console.log(' + _loading + ');\n' +
  7500. 'var _js = document.createElement("script");\n' +
  7501. '_js.type="text/javascript";\n' +
  7502. '_js.charset="UTF-8";\n' +
  7503. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7504. "_js.onload = function(){\n" +
  7505. ' var a = document.getElementsByTagName("img")\n' +
  7506. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7507. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7508. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7509. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7510. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7511. "beforeUpload_shishi(file," +
  7512. "'" +
  7513. _userid +
  7514. "'" +
  7515. ", " +
  7516. "'" +
  7517. _cid +
  7518. "'" +
  7519. ", " +
  7520. "'" +
  7521. _stage +
  7522. "'" +
  7523. ", " +
  7524. "'" +
  7525. _task +
  7526. "'" +
  7527. ", " +
  7528. "'" +
  7529. _tool +
  7530. "'" +
  7531. ", " +
  7532. "'" +
  7533. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7534. "'" +
  7535. ", " +
  7536. "'" +
  7537. aTool +
  7538. "'" +
  7539. ", " +
  7540. "`" +
  7541. text +
  7542. "`" +
  7543. ")\n" +
  7544. " });\n" +
  7545. "}\n" +
  7546. "document.head.appendChild(_js);\n";
  7547. _iframe.contentWindow.document.head.appendChild(_ajs);
  7548. }
  7549. }
  7550. //U.MD.D.I.openClick(str);
  7551. //如果有任務欄信息
  7552. // if (_taskbar) {
  7553. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7554. // }
  7555. }
  7556. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7557. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7558. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7559. _userinfo = US.userInfo, //登錄用戶信息
  7560. _userid = US.userInfo.userid //登錄用戶id
  7561. let _iframe;
  7562. let _cid = cid,
  7563. _stage = stage,
  7564. _task = task,
  7565. _tool = tool;
  7566. var _jie = $$("div", {
  7567. "style": {
  7568. "position": "absolute",
  7569. "bottom": "50px",
  7570. "right": "50px",
  7571. "zIndex": "9999",
  7572. "backgroundColor": "#2268bc",
  7573. "color": "#fff",
  7574. "padding": "12px 20px",
  7575. "cursor": "pointer",
  7576. "borderRadius": "4px",
  7577. },
  7578. "innerHTML": "提交作業"
  7579. })
  7580. let aTool = ''
  7581. let _loading = document.createElement('div')
  7582. _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;"
  7583. // _loading.id = "";
  7584. let _lchild = document.createElement('div')
  7585. let _limg = document.createElement('img')
  7586. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7587. _limg.style = "width: 26px;margin-right: 10px;"
  7588. _lchild.appendChild(_limg)
  7589. let _lspan = document.createElement('span')
  7590. _lspan.innerHTML = "上傳中..."
  7591. _lchild.appendChild(_lspan)
  7592. _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%);"
  7593. _loading.appendChild(_lchild)
  7594. let _box = $$('div', {
  7595. "style": {
  7596. "position": "relative",
  7597. "width": "100%",
  7598. "height": "100%",
  7599. },
  7600. })
  7601. _box.appendChild(_loading)
  7602. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7603. switch (str) {
  7604. case "whiteboard":
  7605. aTool = 1;
  7606. _iframe = $$("iframe", {
  7607. "frameborder": "no",
  7608. "border": "0",
  7609. "scrolling ": "no",
  7610. "style": {
  7611. "cssText": "border:0;width:100%;height:100%"
  7612. },
  7613. "src": "https://iwb.cocorobo.hk/"
  7614. })
  7615. _box.appendChild(_iframe);
  7616. _box.appendChild(_jie);
  7617. _formdiv = new U.UF.UI.form(
  7618. "電子白板",
  7619. _box, {
  7620. "id": "whiteboard" + cid + stage + task + tool,
  7621. "style": {
  7622. "width": "90%",
  7623. "height": "90%",
  7624. "overflow": 'hidden'
  7625. },
  7626. "onresize": function () { }
  7627. }, {
  7628. closecallback: function () { }
  7629. }, {
  7630. "style": {
  7631. "height": "36px"
  7632. }
  7633. }).form; //創建窗體
  7634. _taskbar = {
  7635. "id": str + _formdiv.id,
  7636. "style": {
  7637. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7638. },
  7639. "name": "電子白板",
  7640. "forms": _formdiv,
  7641. "click": function () {
  7642. U.MD.D.I.openApplication(str, obj, info);
  7643. }
  7644. }
  7645. break;
  7646. case "mind":
  7647. aTool = 3;
  7648. _iframe = $$("iframe", {
  7649. "frameborder": "no",
  7650. "border": "0",
  7651. "scrolling ": "no",
  7652. "style": {
  7653. "cssText": "border:0;width:100%;height:100%"
  7654. },
  7655. "src": "/kityminder-editor/dist/index.html"
  7656. })
  7657. _box.appendChild(_iframe);
  7658. _box.appendChild(_jie);
  7659. _formdiv = new U.UF.UI.form(
  7660. "思維導圖",
  7661. _box, { //"/jsmind/example/demo.html"
  7662. "id": "mind" + cid + stage + task + tool,
  7663. "style": {
  7664. "width": "90%",
  7665. "height": "90%",
  7666. "overflow": 'hidden'
  7667. },
  7668. "onresize": function () { }
  7669. }, {
  7670. closecallback: function () { }
  7671. }, {
  7672. "style": {
  7673. "height": "36px"
  7674. }
  7675. }).form; //創建窗體
  7676. _taskbar = {
  7677. "id": str + _formdiv.id,
  7678. "style": {
  7679. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7680. },
  7681. "name": "思維導圖",
  7682. "forms": _formdiv,
  7683. "click": function () {
  7684. U.MD.D.I.openApplication(str, obj, info);
  7685. }
  7686. }
  7687. break;
  7688. case "MindMap":
  7689. aTool = 3;
  7690. _iframe = $$("iframe", {
  7691. "frameborder": "no",
  7692. "border": "0",
  7693. "scrolling ": "no",
  7694. "style": {
  7695. "cssText": "border:0;width:100%;height:100%"
  7696. },
  7697. "src": "//cloud.cocorobo.hk/mind/"
  7698. })
  7699. _box.appendChild(_iframe);
  7700. _box.appendChild(_jie);
  7701. _formdiv = new U.UF.UI.form(
  7702. "思維導圖",
  7703. _box, { //"/jsmind/example/demo.html"
  7704. "id": "mind" + cid + stage + task + tool,
  7705. "style": {
  7706. "width": "90%",
  7707. "height": "90%",
  7708. "overflow": 'hidden'
  7709. },
  7710. "onresize": function () { }
  7711. }, {
  7712. closecallback: function () { }
  7713. }, {
  7714. "style": {
  7715. "height": "36px"
  7716. }
  7717. }).form; //創建窗體
  7718. _taskbar = {
  7719. "id": str + _formdiv.id,
  7720. "style": {
  7721. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7722. },
  7723. "name": "思維導圖",
  7724. "forms": _formdiv,
  7725. "click": function () {
  7726. U.MD.D.I.openApplication(str, obj, info);
  7727. }
  7728. }
  7729. break;
  7730. case "doc":
  7731. aTool = 6;
  7732. _iframe = $$("iframe", {
  7733. "frameborder": "no",
  7734. "border": "0",
  7735. "scrolling ": "no",
  7736. "style": {
  7737. "cssText": "border:0;width:100%;height:100%"
  7738. },
  7739. "src": "/Office/Word/WordEditArea.htm"
  7740. })
  7741. _box.appendChild(_iframe);
  7742. _box.appendChild(_jie);
  7743. _formdiv = new U.UF.UI.form(
  7744. "協同文檔",
  7745. _box, {
  7746. "id": "doc" + cid + stage + task + tool,
  7747. "style": {
  7748. "width": "90%",
  7749. "height": "90%",
  7750. "overflow": 'hidden'
  7751. },
  7752. "onresize": function () { }
  7753. }, {
  7754. closecallback: function () { }
  7755. }, {
  7756. "style": {
  7757. "height": "36px"
  7758. }
  7759. }).form; //創建窗體
  7760. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7761. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7762. })
  7763. _taskbar = {
  7764. "id": str + _formdiv.id,
  7765. "style": {
  7766. "backgroundImage": "url(/img/icon/doc.png)"
  7767. },
  7768. "name": "協同文檔",
  7769. "forms": _formdiv,
  7770. "click": function () {
  7771. U.MD.D.I.openApplication(str, obj, info);
  7772. }
  7773. }
  7774. break;
  7775. case "mindNetwork": //好友打開
  7776. aTool = 7;
  7777. _iframe = $$("iframe", {
  7778. "webkitallowfullscreen": "",
  7779. "mozallowfullscreen": "",
  7780. "allowfullscreen": "",
  7781. "frameborder": "no",
  7782. "border": "0",
  7783. "scrolling ": "no",
  7784. "style": {
  7785. "cssText": "border:0; width:100%; height:100%;"
  7786. },
  7787. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7788. })
  7789. _box.appendChild(_iframe);
  7790. _box.appendChild(_jie);
  7791. _formdiv = new U.UF.UI.form(
  7792. "思維網格",
  7793. _box, {
  7794. "id": "mindNetwork" + cid + stage + task + tool,
  7795. "style": {
  7796. "width": "90%",
  7797. "height": "90%",
  7798. "overflow": 'hidden'
  7799. },
  7800. "onresize": function () { }
  7801. }, {
  7802. closecallback: function () { }
  7803. }, {
  7804. "style": {
  7805. "height": "36px"
  7806. }
  7807. }).form; //創建窗體
  7808. _taskbar = {
  7809. "id": str + _formdiv.id,
  7810. "style": {
  7811. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7812. },
  7813. "name": "思維網格",
  7814. "forms": _formdiv,
  7815. "click": function () {
  7816. U.MD.D.I.openApplication(str, obj, info);
  7817. }
  7818. }
  7819. break;
  7820. case "courseDesign":
  7821. _iframe = $$("iframe", {
  7822. "webkitallowfullscreen": "",
  7823. "mozallowfullscreen": "",
  7824. "allowfullscreen": "",
  7825. "frameborder": "no",
  7826. "border": "0",
  7827. "scrolling ": "no",
  7828. "style": {
  7829. "cssText": "border:0; width:100%; height:100%;"
  7830. },
  7831. "src": "/course-design-vue"
  7832. })
  7833. _box.appendChild(_iframe);
  7834. _box.appendChild(_jie);
  7835. _formdiv = new U.UF.UI.form(
  7836. "項目設計",
  7837. _box, {
  7838. "id": "courseDesign" + cid + stage + task + tool,
  7839. "style": {
  7840. "width": "90%",
  7841. "height": "90%",
  7842. "overflow": 'hidden'
  7843. },
  7844. "onresize": function () { }
  7845. }, {
  7846. closecallback: function () { }
  7847. }, {
  7848. "style": {
  7849. "height": "36px"
  7850. }
  7851. }).form; //創建窗體
  7852. _taskbar = {
  7853. "id": str + _formdiv.id,
  7854. "style": {
  7855. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7856. },
  7857. "name": "項目設計",
  7858. "forms": _formdiv,
  7859. "click": function () {
  7860. U.MD.D.I.openApplication(str, obj, info);
  7861. }
  7862. }
  7863. break;
  7864. }
  7865. const script1 = document.createElement("script");
  7866. script1.type = "text/javascript";
  7867. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7868. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7869. const script2 = document.createElement("script");
  7870. script2.type = "text/javascript";
  7871. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7872. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7873. const script3 = document.createElement("script");
  7874. script3.type = "text/javascript";
  7875. script3.charset = "UTF-8";
  7876. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7877. const script4 = document.createElement("script");
  7878. script4.type = "text/javascript";
  7879. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7880. script4.src = window.origin + "/js/Common/jietu2E.js";
  7881. if (_iframe) {
  7882. if (str == 'doc') {
  7883. _iframe = _formdiv.querySelector('iframe')
  7884. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7885. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7886. _iframe.contentWindow.document.body.appendChild(script1);
  7887. _iframe.contentWindow.document.body.appendChild(script2);
  7888. // _iframe.contentWindow.document.body.appendChild(script3);
  7889. _iframe.contentWindow.document.body.appendChild(script4);
  7890. })
  7891. if (onloadListener) {
  7892. _iframe.contentDocument.location.reload()
  7893. } else {
  7894. _iframe.contentDocument.location.reload()
  7895. }
  7896. } else if (str == 'courseDesign') {
  7897. U.UF.DL.iframeLoad(_iframe, function () {
  7898. // _iframe.contentWindow.U.MD.O.W.load();
  7899. // _iframe.contentWindow.document.body.appendChild(script1);
  7900. _iframe.contentWindow.document.body.appendChild(script2);
  7901. _iframe.contentWindow.document.body.appendChild(script4);
  7902. })
  7903. } else if (str == 'mind') {
  7904. _iframe = _formdiv.querySelector('iframe')
  7905. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7906. //
  7907. _iframe.contentWindow.document.body.appendChild(script1);
  7908. _iframe.contentWindow.document.body.appendChild(script2);
  7909. _iframe.contentWindow.document.body.appendChild(script4);
  7910. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7911. })
  7912. if (onloadListener) {
  7913. _iframe.contentDocument.location.reload()
  7914. } else {
  7915. _iframe.contentDocument.location.reload()
  7916. }
  7917. } else if (str == 'whiteboard') {
  7918. _iframe = _formdiv.querySelector('iframe')
  7919. let onloadListener = _iframe.onload = () => {
  7920. _iframe.contentWindow.document.body.appendChild(script1);
  7921. _iframe.contentWindow.document.body.appendChild(script2);
  7922. _iframe.contentWindow.document.body.appendChild(script4);
  7923. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7924. };
  7925. // if (onloadListener) {
  7926. // try {
  7927. // _iframe.src += "?cocorobo="+new Date().getTime()
  7928. // _iframe.contentWindow.document.location.reload()
  7929. // } catch (error) {
  7930. // }
  7931. // } else {
  7932. // _iframe.contentDocument.location.reload()
  7933. // }
  7934. } else {
  7935. _iframe.onload = () => {
  7936. _iframe.contentWindow.document.body.appendChild(script1);
  7937. _iframe.contentWindow.document.body.appendChild(script2);
  7938. // _iframe.contentWindow.document.body.appendChild(script3);
  7939. _iframe.contentWindow.document.body.appendChild(script4);
  7940. };
  7941. }
  7942. _jie.onclick = async () => {
  7943. let text = ''
  7944. if (aTool == 1) {
  7945. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7946. } else if (aTool == 6) {
  7947. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7948. } else if (aTool == 3) {
  7949. text = await U.MD.D.I.getEditorContent(_iframe);
  7950. }
  7951. _loading.style.display = 'flex'
  7952. console.log(_loading);
  7953. var _ajs = _iframe.contentWindow.document.createElement("script");
  7954. _ajs.type = "text/javascript";
  7955. _ajs.innerHTML =
  7956. // 'console.log(' + _loading + ');\n' +
  7957. 'var _js = document.createElement("script");\n' +
  7958. '_js.type="text/javascript";\n' +
  7959. '_js.charset="UTF-8";\n' +
  7960. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7961. "_js.onload = function(){\n" +
  7962. ' var a = document.getElementsByTagName("img")\n' +
  7963. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7964. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7965. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7966. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7967. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7968. "beforeUpload_shishi(file," +
  7969. "'" +
  7970. _userid +
  7971. "'" +
  7972. ", " +
  7973. "'" +
  7974. _cid +
  7975. "'" +
  7976. ", " +
  7977. "'" +
  7978. _stage +
  7979. "'" +
  7980. ", " +
  7981. "'" +
  7982. _task +
  7983. "'" +
  7984. ", " +
  7985. "'" +
  7986. _tool +
  7987. "'" +
  7988. ", " +
  7989. "'" +
  7990. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7991. "'" +
  7992. ", " +
  7993. "'" +
  7994. aTool +
  7995. "'" +
  7996. ", " +
  7997. "`" +
  7998. text +
  7999. "`" +
  8000. ")\n" +
  8001. " });\n" +
  8002. "}\n" +
  8003. "document.head.appendChild(_js);\n";
  8004. _iframe.contentWindow.document.head.appendChild(_ajs);
  8005. }
  8006. }
  8007. //U.MD.D.I.openClick(str);
  8008. //如果有任務欄信息
  8009. // if (_taskbar) {
  8010. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8011. // }
  8012. }
  8013. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8014. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8015. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8016. _userid = student.userid, //登錄用戶id
  8017. _username = student.student //用戶名字
  8018. let _iframe;
  8019. let _cid = cid,
  8020. _stage = stage,
  8021. _task = task,
  8022. _tool = tool;
  8023. var _jie = $$("div", {
  8024. "style": {
  8025. "position": "absolute",
  8026. "bottom": "50px",
  8027. "right": "50px",
  8028. "zIndex": "9999",
  8029. "backgroundColor": "#2268bc",
  8030. "color": "#fff",
  8031. "padding": "12px 20px",
  8032. "cursor": "pointer",
  8033. "borderRadius": "4px",
  8034. },
  8035. "innerHTML": "提交作業"
  8036. })
  8037. let aTool = ''
  8038. let _loading = document.createElement('div')
  8039. _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;"
  8040. // _loading.id = "";
  8041. let _lchild = document.createElement('div')
  8042. let _limg = document.createElement('img')
  8043. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8044. _limg.style = "width: 26px;margin-right: 10px;"
  8045. _lchild.appendChild(_limg)
  8046. let _lspan = document.createElement('span')
  8047. _lspan.innerHTML = "上傳中..."
  8048. _lchild.appendChild(_lspan)
  8049. _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%);"
  8050. _loading.appendChild(_lchild)
  8051. var _box = $$('div', {
  8052. "style": {
  8053. "position": "relative",
  8054. "width": "100%",
  8055. "height": "100%",
  8056. },
  8057. })
  8058. _box.appendChild(_loading)
  8059. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8060. switch (str) {
  8061. case "whiteboard":
  8062. aTool = 1;
  8063. _iframe = $$("iframe", {
  8064. "frameborder": "no",
  8065. "border": "0",
  8066. "scrolling ": "no",
  8067. "style": {
  8068. "cssText": "border:0;width:100%;height:100%"
  8069. },
  8070. "src": "https://iwb.cocorobo.hk/"
  8071. })
  8072. _box.appendChild(_iframe);
  8073. _box.appendChild(_jie);
  8074. _formdiv = new U.UF.UI.form(
  8075. "電子白板-" + _username,
  8076. _box, {
  8077. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8078. "style": {
  8079. "width": "90%",
  8080. "height": "90%",
  8081. "overflow": 'hidden'
  8082. },
  8083. "onresize": function () { }
  8084. }, {
  8085. closecallback: function () { }
  8086. }, {
  8087. "style": {
  8088. "height": "36px"
  8089. }
  8090. }).form; //創建窗體
  8091. _taskbar = {
  8092. "id": str + _formdiv.id,
  8093. "style": {
  8094. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8095. },
  8096. "name": "電子白板",
  8097. "forms": _formdiv,
  8098. "click": function () {
  8099. U.MD.D.I.openApplication(str, obj, info);
  8100. }
  8101. }
  8102. break;
  8103. case "mind":
  8104. aTool = 3;
  8105. _iframe = $$("iframe", {
  8106. "frameborder": "no",
  8107. "border": "0",
  8108. "scrolling ": "no",
  8109. "style": {
  8110. "cssText": "border:0;width:100%;height:100%"
  8111. },
  8112. "src": "/kityminder-editor/dist/index.html"
  8113. })
  8114. _box.appendChild(_iframe);
  8115. _box.appendChild(_jie);
  8116. _formdiv = new U.UF.UI.form(
  8117. "思維導圖-" + _username,
  8118. _box, { //"/jsmind/example/demo.html"
  8119. "id": "mind" + cid + stage + task + tool + _userid,
  8120. "style": {
  8121. "width": "90%",
  8122. "height": "90%",
  8123. "overflow": 'hidden'
  8124. },
  8125. "onresize": function () { }
  8126. }, {
  8127. closecallback: function () { }
  8128. }, {
  8129. "style": {
  8130. "height": "36px"
  8131. }
  8132. }).form; //創建窗體
  8133. _taskbar = {
  8134. "id": str + _formdiv.id,
  8135. "style": {
  8136. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8137. },
  8138. "name": "思維導圖",
  8139. "forms": _formdiv,
  8140. "click": function () {
  8141. U.MD.D.I.openApplication(str, obj, info);
  8142. }
  8143. }
  8144. break;
  8145. case "MindMap":
  8146. aTool = 3;
  8147. _iframe = $$("iframe", {
  8148. "frameborder": "no",
  8149. "border": "0",
  8150. "scrolling ": "no",
  8151. "style": {
  8152. "cssText": "border:0;width:100%;height:100%"
  8153. },
  8154. "src": "//cloud.cocorobo.hk/mind/"
  8155. })
  8156. _box.appendChild(_iframe);
  8157. _box.appendChild(_jie);
  8158. _formdiv = new U.UF.UI.form(
  8159. "思維導圖-" + _username,
  8160. _box, { //"/jsmind/example/demo.html"
  8161. "id": "mind" + cid + stage + task + tool + _userid,
  8162. "style": {
  8163. "width": "90%",
  8164. "height": "90%",
  8165. "overflow": 'hidden'
  8166. },
  8167. "onresize": function () { }
  8168. }, {
  8169. closecallback: function () { }
  8170. }, {
  8171. "style": {
  8172. "height": "36px"
  8173. }
  8174. }).form; //創建窗體
  8175. _taskbar = {
  8176. "id": str + _formdiv.id,
  8177. "style": {
  8178. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8179. },
  8180. "name": "思維導圖",
  8181. "forms": _formdiv,
  8182. "click": function () {
  8183. U.MD.D.I.openApplication(str, obj, info);
  8184. }
  8185. }
  8186. break;
  8187. case "doc":
  8188. aTool = 6;
  8189. _iframe = $$("iframe", {
  8190. "frameborder": "no",
  8191. "border": "0",
  8192. "scrolling ": "no",
  8193. "style": {
  8194. "cssText": "border:0;width:100%;height:100%"
  8195. },
  8196. "src": "/Office/Word/WordEditArea.htm"
  8197. })
  8198. _box.appendChild(_iframe);
  8199. _box.appendChild(_jie);
  8200. _formdiv = new U.UF.UI.form(
  8201. "協同文檔-" + _username,
  8202. _box, {
  8203. "id": "doc" + cid + stage + task + tool + _userid,
  8204. "style": {
  8205. "width": "90%",
  8206. "height": "90%",
  8207. "overflow": 'hidden'
  8208. },
  8209. "onresize": function () { }
  8210. }, {
  8211. closecallback: function () { }
  8212. }, {
  8213. "style": {
  8214. "height": "36px"
  8215. }
  8216. }).form; //創建窗體
  8217. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8218. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8219. })
  8220. _taskbar = {
  8221. "id": str + _formdiv.id,
  8222. "style": {
  8223. "backgroundImage": "url(/img/icon/doc.png)"
  8224. },
  8225. "name": "協同文檔",
  8226. "forms": _formdiv,
  8227. "click": function () {
  8228. U.MD.D.I.openApplication(str, obj, info);
  8229. }
  8230. }
  8231. break;
  8232. case "mindNetwork": //好友打開
  8233. aTool = 7;
  8234. _iframe = $$("iframe", {
  8235. "webkitallowfullscreen": "",
  8236. "mozallowfullscreen": "",
  8237. "allowfullscreen": "",
  8238. "frameborder": "no",
  8239. "border": "0",
  8240. "scrolling ": "no",
  8241. "style": {
  8242. "cssText": "border:0; width:100%; height:100%;"
  8243. },
  8244. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8245. })
  8246. _box.appendChild(_iframe);
  8247. _box.appendChild(_jie);
  8248. _formdiv = new U.UF.UI.form(
  8249. "思維網格-" + _username,
  8250. _box, {
  8251. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8252. "style": {
  8253. "width": "90%",
  8254. "height": "90%",
  8255. "overflow": 'hidden'
  8256. },
  8257. "onresize": function () { }
  8258. }, {
  8259. closecallback: function () { }
  8260. }, {
  8261. "style": {
  8262. "height": "36px"
  8263. }
  8264. }).form; //創建窗體
  8265. _taskbar = {
  8266. "id": str + _formdiv.id,
  8267. "style": {
  8268. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8269. },
  8270. "name": "思維網格",
  8271. "forms": _formdiv,
  8272. "click": function () {
  8273. U.MD.D.I.openApplication(str, obj, info);
  8274. }
  8275. }
  8276. break;
  8277. case "courseDesign":
  8278. _iframe = $$("iframe", {
  8279. "webkitallowfullscreen": "",
  8280. "mozallowfullscreen": "",
  8281. "allowfullscreen": "",
  8282. "frameborder": "no",
  8283. "border": "0",
  8284. "scrolling ": "no",
  8285. "style": {
  8286. "cssText": "border:0; width:100%; height:100%;"
  8287. },
  8288. "src": "/course-design-vue"
  8289. })
  8290. _box.appendChild(_iframe);
  8291. _box.appendChild(_jie);
  8292. _formdiv = new U.UF.UI.form(
  8293. "項目設計-" + _username,
  8294. _box, {
  8295. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8296. "style": {
  8297. "width": "90%",
  8298. "height": "90%",
  8299. "overflow": 'hidden'
  8300. },
  8301. "onresize": function () { }
  8302. }, {
  8303. closecallback: function () { }
  8304. }, {
  8305. "style": {
  8306. "height": "36px"
  8307. }
  8308. }).form; //創建窗體
  8309. _taskbar = {
  8310. "id": str + _formdiv.id,
  8311. "style": {
  8312. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8313. },
  8314. "name": "項目設計",
  8315. "forms": _formdiv,
  8316. "click": function () {
  8317. U.MD.D.I.openApplication(str, obj, info);
  8318. }
  8319. }
  8320. break;
  8321. }
  8322. const script1 = document.createElement("script");
  8323. script1.type = "text/javascript";
  8324. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8325. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8326. const script2 = document.createElement("script");
  8327. script2.type = "text/javascript";
  8328. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8329. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8330. const script3 = document.createElement("script");
  8331. script3.type = "text/javascript";
  8332. script3.charset = "UTF-8";
  8333. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8334. const script4 = document.createElement("script");
  8335. script4.type = "text/javascript";
  8336. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8337. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8338. if (_iframe) {
  8339. if (str == 'doc') {
  8340. _iframe = _formdiv.querySelector('iframe')
  8341. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8342. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8343. _iframe.contentWindow.document.body.appendChild(script1);
  8344. _iframe.contentWindow.document.body.appendChild(script2);
  8345. // _iframe.contentWindow.document.body.appendChild(script3);
  8346. _iframe.contentWindow.document.body.appendChild(script4);
  8347. })
  8348. if (onloadListener) {
  8349. _iframe.contentDocument.location.reload()
  8350. } else {
  8351. _iframe.contentDocument.location.reload()
  8352. }
  8353. } else if (str == 'courseDesign') {
  8354. U.UF.DL.iframeLoad(_iframe, function () {
  8355. // _iframe.contentWindow.U.MD.O.W.load();
  8356. // _iframe.contentWindow.document.body.appendChild(script1);
  8357. _iframe.contentWindow.document.body.appendChild(script2);
  8358. _iframe.contentWindow.document.body.appendChild(script4);
  8359. })
  8360. } else if (str == 'mind') {
  8361. _iframe = _formdiv.querySelector('iframe')
  8362. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8363. //
  8364. _iframe.contentWindow.document.body.appendChild(script1);
  8365. _iframe.contentWindow.document.body.appendChild(script2);
  8366. _iframe.contentWindow.document.body.appendChild(script4);
  8367. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8368. })
  8369. if (onloadListener) {
  8370. _iframe.contentDocument.location.reload()
  8371. } else {
  8372. _iframe.contentDocument.location.reload()
  8373. }
  8374. } else if (str == 'whiteboard') {
  8375. _iframe = _formdiv.querySelector('iframe')
  8376. let onloadListener = _iframe.onload = () => {
  8377. _iframe.contentWindow.document.body.appendChild(script1);
  8378. _iframe.contentWindow.document.body.appendChild(script2);
  8379. _iframe.contentWindow.document.body.appendChild(script4);
  8380. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8381. };
  8382. // if (onloadListener) {
  8383. // try {
  8384. // _iframe.src += "?cocorobo="+new Date().getTime()
  8385. // _iframe.contentWindow.document.location.reload()
  8386. // } catch (error) {
  8387. // }
  8388. // } else {
  8389. // _iframe.contentDocument.location.reload()
  8390. // }
  8391. } else {
  8392. _iframe.onload = () => {
  8393. _iframe.contentWindow.document.body.appendChild(script1);
  8394. _iframe.contentWindow.document.body.appendChild(script2);
  8395. // _iframe.contentWindow.document.body.appendChild(script3);
  8396. _iframe.contentWindow.document.body.appendChild(script4);
  8397. };
  8398. }
  8399. _jie.onclick = async () => {
  8400. let text = ''
  8401. if (aTool == 1) {
  8402. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8403. } else if (aTool == 6) {
  8404. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8405. } else if (aTool == 3) {
  8406. text = await U.MD.D.I.getEditorContent(_iframe);
  8407. }
  8408. _loading.style.display = 'flex'
  8409. console.log(_loading);
  8410. var _ajs = _iframe.contentWindow.document.createElement("script");
  8411. _ajs.type = "text/javascript";
  8412. _ajs.innerHTML =
  8413. // 'console.log(' + _loading + ');\n' +
  8414. 'var _js = document.createElement("script");\n' +
  8415. '_js.type="text/javascript";\n' +
  8416. '_js.charset="UTF-8";\n' +
  8417. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8418. "_js.onload = function(){\n" +
  8419. ' var a = document.getElementsByTagName("img")\n' +
  8420. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8421. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8422. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8423. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8424. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8425. "beforeUpload_shishi(file," +
  8426. "'" +
  8427. _userid +
  8428. "'" +
  8429. ", " +
  8430. "'" +
  8431. _cid +
  8432. "'" +
  8433. ", " +
  8434. "'" +
  8435. _stage +
  8436. "'" +
  8437. ", " +
  8438. "'" +
  8439. _task +
  8440. "'" +
  8441. ", " +
  8442. "'" +
  8443. _tool +
  8444. "'" +
  8445. ", " +
  8446. "'" +
  8447. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8448. "'" +
  8449. ", " +
  8450. "'" +
  8451. aTool +
  8452. "'" +
  8453. ", " +
  8454. "`" +
  8455. text +
  8456. "`" +
  8457. ")\n" +
  8458. " });\n" +
  8459. "}\n" +
  8460. "document.head.appendChild(_js);\n";
  8461. _iframe.contentWindow.document.head.appendChild(_ajs);
  8462. }
  8463. }
  8464. }
  8465. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8466. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8467. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8468. _userid = student.userid, //登錄用戶id
  8469. _username = student.student //用戶名字
  8470. let _iframe;
  8471. let _cid = cid,
  8472. _stage = stage,
  8473. _task = task,
  8474. _tool = tool;
  8475. var _jie = $$("div", {
  8476. "style": {
  8477. "position": "absolute",
  8478. "bottom": "50px",
  8479. "right": "50px",
  8480. "zIndex": "9999",
  8481. "backgroundColor": "#2268bc",
  8482. "color": "#fff",
  8483. "padding": "12px 20px",
  8484. "cursor": "pointer",
  8485. "borderRadius": "4px",
  8486. },
  8487. "innerHTML": "提交作業"
  8488. })
  8489. let aTool = ''
  8490. let _loading = document.createElement('div')
  8491. _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;"
  8492. // _loading.id = "";
  8493. let _lchild = document.createElement('div')
  8494. let _limg = document.createElement('img')
  8495. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8496. _limg.style = "width: 26px;margin-right: 10px;"
  8497. _lchild.appendChild(_limg)
  8498. let _lspan = document.createElement('span')
  8499. _lspan.innerHTML = "上傳中..."
  8500. _lchild.appendChild(_lspan)
  8501. _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%);"
  8502. _loading.appendChild(_lchild)
  8503. var _box = $$('div', {
  8504. "style": {
  8505. "position": "relative",
  8506. "width": "100%",
  8507. "height": "100%",
  8508. },
  8509. })
  8510. _box.appendChild(_loading)
  8511. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8512. switch (str) {
  8513. case "whiteboard":
  8514. aTool = 1;
  8515. _iframe = $$("iframe", {
  8516. "frameborder": "no",
  8517. "border": "0",
  8518. "scrolling ": "no",
  8519. "style": {
  8520. "cssText": "border:0;width:100%;height:100%"
  8521. },
  8522. "src": "https://iwb.cocorobo.hk/"
  8523. })
  8524. _box.appendChild(_iframe);
  8525. _box.appendChild(_jie);
  8526. _formdiv = new U.UF.UI.form(
  8527. "電子白板-" + _username,
  8528. _box, {
  8529. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8530. "style": {
  8531. "width": "90%",
  8532. "height": "90%",
  8533. "overflow": 'hidden'
  8534. },
  8535. "onresize": function () { }
  8536. }, {
  8537. closecallback: function () { }
  8538. }, {
  8539. "style": {
  8540. "height": "36px"
  8541. }
  8542. }).form; //創建窗體
  8543. _taskbar = {
  8544. "id": str + _formdiv.id,
  8545. "style": {
  8546. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8547. },
  8548. "name": "電子白板",
  8549. "forms": _formdiv,
  8550. "click": function () {
  8551. U.MD.D.I.openApplication(str, obj, info);
  8552. }
  8553. }
  8554. break;
  8555. case "mind":
  8556. aTool = 3;
  8557. _iframe = $$("iframe", {
  8558. "frameborder": "no",
  8559. "border": "0",
  8560. "scrolling ": "no",
  8561. "style": {
  8562. "cssText": "border:0;width:100%;height:100%"
  8563. },
  8564. "src": "/kityminder-editor/dist/index.html"
  8565. })
  8566. _box.appendChild(_iframe);
  8567. _box.appendChild(_jie);
  8568. _formdiv = new U.UF.UI.form(
  8569. "思維導圖-" + _username,
  8570. _box, { //"/jsmind/example/demo.html"
  8571. "id": "mind" + cid + stage + task + tool + _userid,
  8572. "style": {
  8573. "width": "90%",
  8574. "height": "90%",
  8575. "overflow": 'hidden'
  8576. },
  8577. "onresize": function () { }
  8578. }, {
  8579. closecallback: function () { }
  8580. }, {
  8581. "style": {
  8582. "height": "36px"
  8583. }
  8584. }).form; //創建窗體
  8585. _taskbar = {
  8586. "id": str + _formdiv.id,
  8587. "style": {
  8588. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8589. },
  8590. "name": "思維導圖",
  8591. "forms": _formdiv,
  8592. "click": function () {
  8593. U.MD.D.I.openApplication(str, obj, info);
  8594. }
  8595. }
  8596. break;
  8597. case "MindMap":
  8598. aTool = 3;
  8599. _iframe = $$("iframe", {
  8600. "frameborder": "no",
  8601. "border": "0",
  8602. "scrolling ": "no",
  8603. "style": {
  8604. "cssText": "border:0;width:100%;height:100%"
  8605. },
  8606. "src": "//cloud.cocorobo.hk/mind/"
  8607. })
  8608. _box.appendChild(_iframe);
  8609. _box.appendChild(_jie);
  8610. _formdiv = new U.UF.UI.form(
  8611. "思維導圖-" + _username,
  8612. _box, { //"/jsmind/example/demo.html"
  8613. "id": "mind" + cid + stage + task + tool + _userid,
  8614. "style": {
  8615. "width": "90%",
  8616. "height": "90%",
  8617. "overflow": 'hidden'
  8618. },
  8619. "onresize": function () { }
  8620. }, {
  8621. closecallback: function () { }
  8622. }, {
  8623. "style": {
  8624. "height": "36px"
  8625. }
  8626. }).form; //創建窗體
  8627. _taskbar = {
  8628. "id": str + _formdiv.id,
  8629. "style": {
  8630. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8631. },
  8632. "name": "思維導圖",
  8633. "forms": _formdiv,
  8634. "click": function () {
  8635. U.MD.D.I.openApplication(str, obj, info);
  8636. }
  8637. }
  8638. break;
  8639. case "doc":
  8640. aTool = 6;
  8641. _iframe = $$("iframe", {
  8642. "frameborder": "no",
  8643. "border": "0",
  8644. "scrolling ": "no",
  8645. "style": {
  8646. "cssText": "border:0;width:100%;height:100%"
  8647. },
  8648. "src": "/Office/Word/WordEditArea.htm"
  8649. })
  8650. _box.appendChild(_iframe);
  8651. _box.appendChild(_jie);
  8652. _formdiv = new U.UF.UI.form(
  8653. "協同文檔-" + _username,
  8654. _box, {
  8655. "id": "doc" + cid + stage + task + tool + _userid,
  8656. "style": {
  8657. "width": "90%",
  8658. "height": "90%",
  8659. "overflow": 'hidden'
  8660. },
  8661. "onresize": function () { }
  8662. }, {
  8663. closecallback: function () { }
  8664. }, {
  8665. "style": {
  8666. "height": "36px"
  8667. }
  8668. }).form; //創建窗體
  8669. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8670. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8671. })
  8672. _taskbar = {
  8673. "id": str + _formdiv.id,
  8674. "style": {
  8675. "backgroundImage": "url(/img/icon/doc.png)"
  8676. },
  8677. "name": "協同文檔",
  8678. "forms": _formdiv,
  8679. "click": function () {
  8680. U.MD.D.I.openApplication(str, obj, info);
  8681. }
  8682. }
  8683. break;
  8684. case "mindNetwork": //好友打開
  8685. aTool = 7;
  8686. _iframe = $$("iframe", {
  8687. "webkitallowfullscreen": "",
  8688. "mozallowfullscreen": "",
  8689. "allowfullscreen": "",
  8690. "frameborder": "no",
  8691. "border": "0",
  8692. "scrolling ": "no",
  8693. "style": {
  8694. "cssText": "border:0; width:100%; height:100%;"
  8695. },
  8696. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8697. })
  8698. _box.appendChild(_iframe);
  8699. _box.appendChild(_jie);
  8700. _formdiv = new U.UF.UI.form(
  8701. "思維網格-" + _username,
  8702. _box, {
  8703. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8704. "style": {
  8705. "width": "90%",
  8706. "height": "90%",
  8707. "overflow": 'hidden'
  8708. },
  8709. "onresize": function () { }
  8710. }, {
  8711. closecallback: function () { }
  8712. }, {
  8713. "style": {
  8714. "height": "36px"
  8715. }
  8716. }).form; //創建窗體
  8717. _taskbar = {
  8718. "id": str + _formdiv.id,
  8719. "style": {
  8720. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8721. },
  8722. "name": "思維網格",
  8723. "forms": _formdiv,
  8724. "click": function () {
  8725. U.MD.D.I.openApplication(str, obj, info);
  8726. }
  8727. }
  8728. break;
  8729. case "courseDesign":
  8730. _iframe = $$("iframe", {
  8731. "webkitallowfullscreen": "",
  8732. "mozallowfullscreen": "",
  8733. "allowfullscreen": "",
  8734. "frameborder": "no",
  8735. "border": "0",
  8736. "scrolling ": "no",
  8737. "style": {
  8738. "cssText": "border:0; width:100%; height:100%;"
  8739. },
  8740. "src": "/course-design-vue"
  8741. })
  8742. _box.appendChild(_iframe);
  8743. _box.appendChild(_jie);
  8744. _formdiv = new U.UF.UI.form(
  8745. "項目設計-" + _username,
  8746. _box, {
  8747. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8748. "style": {
  8749. "width": "90%",
  8750. "height": "90%",
  8751. "overflow": 'hidden'
  8752. },
  8753. "onresize": function () { }
  8754. }, {
  8755. closecallback: function () { }
  8756. }, {
  8757. "style": {
  8758. "height": "36px"
  8759. }
  8760. }).form; //創建窗體
  8761. _taskbar = {
  8762. "id": str + _formdiv.id,
  8763. "style": {
  8764. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8765. },
  8766. "name": "項目設計",
  8767. "forms": _formdiv,
  8768. "click": function () {
  8769. U.MD.D.I.openApplication(str, obj, info);
  8770. }
  8771. }
  8772. break;
  8773. }
  8774. const script1 = document.createElement("script");
  8775. script1.type = "text/javascript";
  8776. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8777. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8778. const script2 = document.createElement("script");
  8779. script2.type = "text/javascript";
  8780. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8781. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8782. const script3 = document.createElement("script");
  8783. script3.type = "text/javascript";
  8784. script3.charset = "UTF-8";
  8785. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8786. const script4 = document.createElement("script");
  8787. script4.type = "text/javascript";
  8788. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8789. script4.src = window.origin + "/js/Common/jietu2E.js";
  8790. if (_iframe) {
  8791. if (str == 'doc') {
  8792. _iframe = _formdiv.querySelector('iframe')
  8793. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8794. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8795. _iframe.contentWindow.document.body.appendChild(script1);
  8796. _iframe.contentWindow.document.body.appendChild(script2);
  8797. // _iframe.contentWindow.document.body.appendChild(script3);
  8798. _iframe.contentWindow.document.body.appendChild(script4);
  8799. })
  8800. if (onloadListener) {
  8801. _iframe.contentDocument.location.reload()
  8802. } else {
  8803. _iframe.contentDocument.location.reload()
  8804. }
  8805. } else if (str == 'courseDesign') {
  8806. U.UF.DL.iframeLoad(_iframe, function () {
  8807. // _iframe.contentWindow.U.MD.O.W.load();
  8808. // _iframe.contentWindow.document.body.appendChild(script1);
  8809. _iframe.contentWindow.document.body.appendChild(script2);
  8810. _iframe.contentWindow.document.body.appendChild(script4);
  8811. })
  8812. } else if (str == 'mind') {
  8813. _iframe = _formdiv.querySelector('iframe')
  8814. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8815. //
  8816. _iframe.contentWindow.document.body.appendChild(script1);
  8817. _iframe.contentWindow.document.body.appendChild(script2);
  8818. _iframe.contentWindow.document.body.appendChild(script4);
  8819. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8820. })
  8821. if (onloadListener) {
  8822. _iframe.contentDocument.location.reload()
  8823. } else {
  8824. _iframe.contentDocument.location.reload()
  8825. }
  8826. } else if (str == 'whiteboard') {
  8827. _iframe = _formdiv.querySelector('iframe')
  8828. let onloadListener = _iframe.onload = () => {
  8829. _iframe.contentWindow.document.body.appendChild(script1);
  8830. _iframe.contentWindow.document.body.appendChild(script2);
  8831. _iframe.contentWindow.document.body.appendChild(script4);
  8832. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8833. };
  8834. // if (onloadListener) {
  8835. // try {
  8836. // _iframe.src += "?cocorobo="+new Date().getTime()
  8837. // _iframe.contentWindow.document.location.reload()
  8838. // } catch (error) {
  8839. // }
  8840. // } else {
  8841. // _iframe.contentDocument.location.reload()
  8842. // }
  8843. } else {
  8844. _iframe.onload = () => {
  8845. _iframe.contentWindow.document.body.appendChild(script1);
  8846. _iframe.contentWindow.document.body.appendChild(script2);
  8847. // _iframe.contentWindow.document.body.appendChild(script3);
  8848. _iframe.contentWindow.document.body.appendChild(script4);
  8849. };
  8850. }
  8851. _jie.onclick = async () => {
  8852. let text = ''
  8853. if (aTool == 1) {
  8854. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8855. } else if (aTool == 6) {
  8856. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8857. } else if (aTool == 3) {
  8858. text = await U.MD.D.I.getEditorContent(_iframe);
  8859. }
  8860. _loading.style.display = 'flex'
  8861. console.log(_loading);
  8862. var _ajs = _iframe.contentWindow.document.createElement("script");
  8863. _ajs.type = "text/javascript";
  8864. _ajs.innerHTML =
  8865. // 'console.log(' + _loading + ');\n' +
  8866. 'var _js = document.createElement("script");\n' +
  8867. '_js.type="text/javascript";\n' +
  8868. '_js.charset="UTF-8";\n' +
  8869. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8870. "_js.onload = function(){\n" +
  8871. ' var a = document.getElementsByTagName("img")\n' +
  8872. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8873. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8874. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8875. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8876. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8877. "beforeUpload_shishi(file," +
  8878. "'" +
  8879. _userid +
  8880. "'" +
  8881. ", " +
  8882. "'" +
  8883. _cid +
  8884. "'" +
  8885. ", " +
  8886. "'" +
  8887. _stage +
  8888. "'" +
  8889. ", " +
  8890. "'" +
  8891. _task +
  8892. "'" +
  8893. ", " +
  8894. "'" +
  8895. _tool +
  8896. "'" +
  8897. ", " +
  8898. "'" +
  8899. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8900. "'" +
  8901. ", " +
  8902. "'" +
  8903. aTool +
  8904. "'" +
  8905. ", " +
  8906. "`" +
  8907. text +
  8908. "`" +
  8909. ")\n" +
  8910. " });\n" +
  8911. "}\n" +
  8912. "document.head.appendChild(_js);\n";
  8913. _iframe.contentWindow.document.head.appendChild(_ajs);
  8914. }
  8915. }
  8916. }
  8917. U.MD.D.I.getEditorContent = function (iframe) {
  8918. return new Promise((resolve, reject) => {
  8919. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8920. console.log(content);
  8921. resolve(content)
  8922. });
  8923. });
  8924. }
  8925. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8926. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8927. // if (res.value[0].length > 0) {
  8928. // // resolve(res.value[0][0].text);
  8929. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8930. // $(fileInput).val('');
  8931. // });
  8932. // }
  8933. // }, [], { "type": "GET", "withCredentials": true });
  8934. var xmlhttp;
  8935. var Mac, Sn, DeviceId
  8936. if (window.XMLHttpRequest) {
  8937. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  8938. xmlhttp = new XMLHttpRequest();
  8939. }
  8940. else {
  8941. // IE6, IE5 瀏覽器執行代碼
  8942. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8943. }
  8944. xmlhttp.onreadystatechange = function () {
  8945. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8946. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8947. // resolve(res.value[0][0].text);
  8948. if (type == '2') {
  8949. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8950. } else if (type == '3') {
  8951. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8952. }
  8953. } else {
  8954. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8955. }
  8956. }
  8957. }
  8958. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8959. xmlhttp.send();
  8960. }
  8961. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8962. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8963. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8964. _userinfo = US.userInfo, //登錄用戶信息
  8965. _userid = US.userInfo.userid //登錄用戶id
  8966. let _iframe;
  8967. let _cid = cid,
  8968. _stage = stage,
  8969. _task = task,
  8970. _tool = tool;
  8971. var _jie = $$("div", {
  8972. "style": {
  8973. "position": "absolute",
  8974. "bottom": "50px",
  8975. "right": "50px",
  8976. "zIndex": "9999",
  8977. "backgroundColor": "#2268bc",
  8978. "color": "#fff",
  8979. "padding": "12px 20px",
  8980. "cursor": "pointer",
  8981. "borderRadius": "4px",
  8982. },
  8983. "innerHTML": "確認並提交"
  8984. })
  8985. let aTool = ''
  8986. let _loading = document.createElement('div')
  8987. _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;"
  8988. // _loading.id = "";
  8989. let _lchild = document.createElement('div')
  8990. let _limg = document.createElement('img')
  8991. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8992. _limg.style = "width: 26px;margin-right: 10px;"
  8993. _lchild.appendChild(_limg)
  8994. let _lspan = document.createElement('span')
  8995. _lspan.innerHTML = "上傳中..."
  8996. _lchild.appendChild(_lspan)
  8997. _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%);"
  8998. _loading.appendChild(_lchild)
  8999. var _box = $$('div', {
  9000. "style": {
  9001. "position": "relative",
  9002. "width": "100%",
  9003. "height": "100%",
  9004. },
  9005. })
  9006. _box.appendChild(_loading)
  9007. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9008. switch (str) {
  9009. case "whiteboard":
  9010. aTool = 1;
  9011. _iframe = $$("iframe", {
  9012. "frameborder": "no",
  9013. "border": "0",
  9014. "scrolling ": "no",
  9015. "style": {
  9016. "cssText": "border:0;width:100%;height:100%"
  9017. },
  9018. "src": "https://iwb.cocorobo.hk/"
  9019. })
  9020. _box.appendChild(_iframe);
  9021. _box.appendChild(_jie);
  9022. _formdiv = new U.UF.UI.form(
  9023. "電子白板",
  9024. _box, {
  9025. "id": "whiteboards" + cid + stage + task + tool,
  9026. "style": {
  9027. "width": "90%",
  9028. "height": "90%",
  9029. "overflow": 'hidden'
  9030. },
  9031. "onresize": function () { }
  9032. }, {
  9033. closecallback: function () { }
  9034. }, {
  9035. "style": {
  9036. "height": "36px"
  9037. }
  9038. }).form; //創建窗體
  9039. _taskbar = {
  9040. "id": str + _formdiv.id,
  9041. "style": {
  9042. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9043. },
  9044. "name": "電子白板",
  9045. "forms": _formdiv,
  9046. "click": function () {
  9047. U.MD.D.I.openApplication(str, obj, info);
  9048. }
  9049. }
  9050. break;
  9051. case "mind":
  9052. aTool = 3;
  9053. _iframe = $$("iframe", {
  9054. "frameborder": "no",
  9055. "border": "0",
  9056. "scrolling ": "no",
  9057. "style": {
  9058. "cssText": "border:0;width:100%;height:100%"
  9059. },
  9060. "src": "/kityminder-editor/dist/index.html"
  9061. });
  9062. _box.appendChild(_iframe);
  9063. _box.appendChild(_jie);
  9064. _formdiv = new U.UF.UI.form(
  9065. "思維導圖",
  9066. _box, { //"/jsmind/example/demo.html"
  9067. "id": "minds" + cid + stage + task + tool,
  9068. "style": {
  9069. "width": "90%",
  9070. "height": "90%",
  9071. "overflow": 'hidden'
  9072. },
  9073. "onresize": function () { }
  9074. }, {
  9075. closecallback: function () { }
  9076. }, {
  9077. "style": {
  9078. "height": "36px"
  9079. }
  9080. }).form; //創建窗體
  9081. _taskbar = {
  9082. "id": str + _formdiv.id,
  9083. "style": {
  9084. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9085. },
  9086. "name": "思維導圖",
  9087. "forms": _formdiv,
  9088. "click": function () {
  9089. U.MD.D.I.openApplication(str, obj, info);
  9090. }
  9091. }
  9092. break;
  9093. case "doc":
  9094. aTool = 6;
  9095. _iframe = $$("iframe", {
  9096. "frameborder": "no",
  9097. "border": "0",
  9098. "scrolling ": "no",
  9099. "style": {
  9100. "cssText": "border:0;width:100%;height:100%"
  9101. },
  9102. "src": "/Office/Word/WordEditArea.htm"
  9103. })
  9104. _box.appendChild(_iframe);
  9105. _box.appendChild(_jie);
  9106. _formdiv = new U.UF.UI.form(
  9107. "協同文檔",
  9108. _box, {
  9109. "id": "docs" + cid + stage + task + tool,
  9110. "style": {
  9111. "width": "90%",
  9112. "height": "90%",
  9113. "overflow": 'hidden'
  9114. },
  9115. "onresize": function () { }
  9116. }, {
  9117. closecallback: function () { }
  9118. }, {
  9119. "style": {
  9120. "height": "36px"
  9121. }
  9122. }).form; //創建窗體
  9123. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9124. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9125. })
  9126. _taskbar = {
  9127. "id": str + _formdiv.id,
  9128. "style": {
  9129. "backgroundImage": "url(/img/icon/doc.png)"
  9130. },
  9131. "name": "協同文檔",
  9132. "forms": _formdiv,
  9133. "click": function () {
  9134. U.MD.D.I.openApplication(str, obj, info);
  9135. }
  9136. }
  9137. break;
  9138. }
  9139. const script1 = document.createElement("script");
  9140. script1.type = "text/javascript";
  9141. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9142. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9143. const script2 = document.createElement("script");
  9144. script2.type = "text/javascript";
  9145. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9146. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9147. const script3 = document.createElement("script");
  9148. script3.type = "text/javascript";
  9149. script3.charset = "UTF-8";
  9150. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9151. const script4 = document.createElement("script");
  9152. script4.type = "text/javascript";
  9153. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9154. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9155. if (_iframe) {
  9156. if (str == 'doc') {
  9157. _iframe = _formdiv.querySelector('iframe')
  9158. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9159. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9160. _iframe.contentWindow.document.body.appendChild(script1);
  9161. _iframe.contentWindow.document.body.appendChild(script2);
  9162. // _iframe.contentWindow.document.body.appendChild(script3);
  9163. _iframe.contentWindow.document.body.appendChild(script4);
  9164. })
  9165. if (onloadListener) {
  9166. _iframe.contentDocument.location.reload()
  9167. } else {
  9168. _iframe.contentDocument.location.reload()
  9169. }
  9170. } else if (str == 'mind') {
  9171. _iframe = _formdiv.querySelector('iframe')
  9172. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9173. _iframe.contentWindow.document.body.appendChild(script1);
  9174. _iframe.contentWindow.document.body.appendChild(script2);
  9175. _iframe.contentWindow.document.body.appendChild(script4);
  9176. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9177. })
  9178. if (onloadListener) {
  9179. _iframe.contentDocument.location.reload()
  9180. } else {
  9181. _iframe.contentDocument.location.reload()
  9182. }
  9183. } else {
  9184. _iframe.onload = () => {
  9185. _iframe.contentWindow.document.body.appendChild(script1);
  9186. _iframe.contentWindow.document.body.appendChild(script2);
  9187. // _iframe.contentWindow.document.body.appendChild(script3);
  9188. _iframe.contentWindow.document.body.appendChild(script4);
  9189. };
  9190. }
  9191. _jie.onclick = async () => {
  9192. let text = ''
  9193. if (aTool == 6) {
  9194. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9195. } else if (aTool == 3) {
  9196. text = await U.MD.D.I.getEditorContent(_iframe);
  9197. }
  9198. _loading.style.display = 'flex'
  9199. console.log(_loading);
  9200. var _ajs = _iframe.contentWindow.document.createElement("script");
  9201. _ajs.type = "text/javascript";
  9202. _ajs.innerHTML =
  9203. // 'console.log(' + _loading + ');\n' +
  9204. 'var _js = document.createElement("script");\n' +
  9205. '_js.type="text/javascript";\n' +
  9206. '_js.charset="UTF-8";\n' +
  9207. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9208. "_js.onload = function(){\n" +
  9209. ' var a = document.getElementsByTagName("img")\n' +
  9210. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9211. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9212. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9213. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9214. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9215. "beforeUpload_shishi(file," +
  9216. "'" +
  9217. _userid +
  9218. "'" +
  9219. ", " +
  9220. "'" +
  9221. _cid +
  9222. "'" +
  9223. ", " +
  9224. "'" +
  9225. _stage +
  9226. "'" +
  9227. ", " +
  9228. "'" +
  9229. _task +
  9230. "'" +
  9231. ", " +
  9232. "'" +
  9233. _tool +
  9234. "'" +
  9235. ", " +
  9236. "'" +
  9237. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9238. "'" +
  9239. ", " +
  9240. "'" +
  9241. aTool +
  9242. "'" +
  9243. ", " +
  9244. "`" +
  9245. text +
  9246. "`" +
  9247. ")\n" +
  9248. " });\n" +
  9249. "}\n" +
  9250. "document.head.appendChild(_js);\n";
  9251. _iframe.contentWindow.document.head.appendChild(_ajs);
  9252. }
  9253. }
  9254. //U.MD.D.I.openClick(str);
  9255. //如果有任務欄信息
  9256. // if (_taskbar) {
  9257. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9258. // }
  9259. }
  9260. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9261. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9262. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9263. _userinfo = US.userInfo, //登錄用戶信息
  9264. _userid = US.userInfo.userid //登錄用戶id
  9265. let _iframe;
  9266. let _cid = cid,
  9267. _stage = stage,
  9268. _task = task,
  9269. _tool = tool;
  9270. var _jie = $$("div", {
  9271. "style": {
  9272. "position": "absolute",
  9273. "bottom": "50px",
  9274. "right": "50px",
  9275. "zIndex": "9999",
  9276. "backgroundColor": "#2268bc",
  9277. "color": "#fff",
  9278. "padding": "12px 20px",
  9279. "cursor": "pointer",
  9280. "borderRadius": "4px",
  9281. },
  9282. "innerHTML": "確認並提交"
  9283. })
  9284. let aTool = ''
  9285. let _loading = document.createElement('div')
  9286. _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;"
  9287. // _loading.id = "";
  9288. let _lchild = document.createElement('div')
  9289. let _limg = document.createElement('img')
  9290. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9291. _limg.style = "width: 26px;margin-right: 10px;"
  9292. _lchild.appendChild(_limg)
  9293. let _lspan = document.createElement('span')
  9294. _lspan.innerHTML = "上傳中..."
  9295. _lchild.appendChild(_lspan)
  9296. _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%);"
  9297. _loading.appendChild(_lchild)
  9298. var _box = $$('div', {
  9299. "style": {
  9300. "position": "relative",
  9301. "width": "100%",
  9302. "height": "100%",
  9303. },
  9304. })
  9305. _box.appendChild(_loading)
  9306. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9307. switch (str) {
  9308. case "whiteboard":
  9309. aTool = 1;
  9310. _iframe = $$("iframe", {
  9311. "frameborder": "no",
  9312. "border": "0",
  9313. "scrolling ": "no",
  9314. "style": {
  9315. "cssText": "border:0;width:100%;height:100%"
  9316. },
  9317. "src": "https://iwb.cocorobo.hk/"
  9318. })
  9319. _box.appendChild(_iframe);
  9320. _box.appendChild(_jie);
  9321. _formdiv = new U.UF.UI.form(
  9322. "電子白板",
  9323. _box, {
  9324. "id": "whiteboards" + cid + stage + task + tool,
  9325. "style": {
  9326. "width": "90%",
  9327. "height": "90%",
  9328. "overflow": 'hidden'
  9329. },
  9330. "onresize": function () { }
  9331. }, {
  9332. closecallback: function () { }
  9333. }, {
  9334. "style": {
  9335. "height": "36px"
  9336. }
  9337. }).form; //創建窗體
  9338. _taskbar = {
  9339. "id": str + _formdiv.id,
  9340. "style": {
  9341. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9342. },
  9343. "name": "電子白板",
  9344. "forms": _formdiv,
  9345. "click": function () {
  9346. U.MD.D.I.openApplication(str, obj, info);
  9347. }
  9348. }
  9349. break;
  9350. case "mind":
  9351. aTool = 3;
  9352. _iframe = $$("iframe", {
  9353. "frameborder": "no",
  9354. "border": "0",
  9355. "scrolling ": "no",
  9356. "style": {
  9357. "cssText": "border:0;width:100%;height:100%"
  9358. },
  9359. "src": "/kityminder-editor/dist/index.html"
  9360. });
  9361. _box.appendChild(_iframe);
  9362. _box.appendChild(_jie);
  9363. _formdiv = new U.UF.UI.form(
  9364. "思維導圖",
  9365. _box, { //"/jsmind/example/demo.html"
  9366. "id": "minds" + cid + stage + task + tool,
  9367. "style": {
  9368. "width": "90%",
  9369. "height": "90%",
  9370. "overflow": 'hidden'
  9371. },
  9372. "onresize": function () { }
  9373. }, {
  9374. closecallback: function () { }
  9375. }, {
  9376. "style": {
  9377. "height": "36px"
  9378. }
  9379. }).form; //創建窗體
  9380. _taskbar = {
  9381. "id": str + _formdiv.id,
  9382. "style": {
  9383. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9384. },
  9385. "name": "思維導圖",
  9386. "forms": _formdiv,
  9387. "click": function () {
  9388. U.MD.D.I.openApplication(str, obj, info);
  9389. }
  9390. }
  9391. break;
  9392. case "doc":
  9393. aTool = 6;
  9394. _iframe = $$("iframe", {
  9395. "frameborder": "no",
  9396. "border": "0",
  9397. "scrolling ": "no",
  9398. "style": {
  9399. "cssText": "border:0;width:100%;height:100%"
  9400. },
  9401. "src": "/Office/Word/WordEditArea.htm"
  9402. })
  9403. _box.appendChild(_iframe);
  9404. _box.appendChild(_jie);
  9405. _formdiv = new U.UF.UI.form(
  9406. "協同文檔",
  9407. _box, {
  9408. "id": "docs" + cid + stage + task + tool,
  9409. "style": {
  9410. "width": "90%",
  9411. "height": "90%",
  9412. "overflow": 'hidden'
  9413. },
  9414. "onresize": function () { }
  9415. }, {
  9416. closecallback: function () { }
  9417. }, {
  9418. "style": {
  9419. "height": "36px"
  9420. }
  9421. }).form; //創建窗體
  9422. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9423. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9424. })
  9425. _taskbar = {
  9426. "id": str + _formdiv.id,
  9427. "style": {
  9428. "backgroundImage": "url(/img/icon/doc.png)"
  9429. },
  9430. "name": "協同文檔",
  9431. "forms": _formdiv,
  9432. "click": function () {
  9433. U.MD.D.I.openApplication(str, obj, info);
  9434. }
  9435. }
  9436. break;
  9437. }
  9438. const script1 = document.createElement("script");
  9439. script1.type = "text/javascript";
  9440. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9441. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9442. const script2 = document.createElement("script");
  9443. script2.type = "text/javascript";
  9444. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9445. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9446. const script3 = document.createElement("script");
  9447. script3.type = "text/javascript";
  9448. script3.charset = "UTF-8";
  9449. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9450. const script4 = document.createElement("script");
  9451. script4.type = "text/javascript";
  9452. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9453. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  9454. if (_iframe) {
  9455. if (str == 'doc') {
  9456. _iframe = _formdiv.querySelector('iframe')
  9457. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9458. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9459. _iframe.contentWindow.document.body.appendChild(script1);
  9460. _iframe.contentWindow.document.body.appendChild(script2);
  9461. // _iframe.contentWindow.document.body.appendChild(script3);
  9462. _iframe.contentWindow.document.body.appendChild(script4);
  9463. })
  9464. if (onloadListener) {
  9465. _iframe.contentDocument.location.reload()
  9466. } else {
  9467. _iframe.contentDocument.location.reload()
  9468. }
  9469. } else if (str == 'mind') {
  9470. _iframe = _formdiv.querySelector('iframe')
  9471. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9472. _iframe.contentWindow.document.body.appendChild(script1);
  9473. _iframe.contentWindow.document.body.appendChild(script2);
  9474. _iframe.contentWindow.document.body.appendChild(script4);
  9475. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9476. })
  9477. if (onloadListener) {
  9478. _iframe.contentDocument.location.reload()
  9479. } else {
  9480. _iframe.contentDocument.location.reload()
  9481. }
  9482. } else {
  9483. _iframe.onload = () => {
  9484. _iframe.contentWindow.document.body.appendChild(script1);
  9485. _iframe.contentWindow.document.body.appendChild(script2);
  9486. // _iframe.contentWindow.document.body.appendChild(script3);
  9487. _iframe.contentWindow.document.body.appendChild(script4);
  9488. };
  9489. }
  9490. _jie.onclick = async () => {
  9491. let text = ''
  9492. if (aTool == 6) {
  9493. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9494. } else if (aTool == 3) {
  9495. text = await U.MD.D.I.getEditorContent(_iframe);
  9496. }
  9497. _loading.style.display = 'flex'
  9498. console.log(_loading);
  9499. var _ajs = _iframe.contentWindow.document.createElement("script");
  9500. _ajs.type = "text/javascript";
  9501. _ajs.innerHTML =
  9502. // 'console.log(' + _loading + ');\n' +
  9503. 'var _js = document.createElement("script");\n' +
  9504. '_js.type="text/javascript";\n' +
  9505. '_js.charset="UTF-8";\n' +
  9506. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9507. "_js.onload = function(){\n" +
  9508. ' var a = document.getElementsByTagName("img")\n' +
  9509. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9510. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9511. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9512. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9513. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9514. "beforeUpload_shishi(file," +
  9515. "'" +
  9516. _userid +
  9517. "'" +
  9518. ", " +
  9519. "'" +
  9520. _cid +
  9521. "'" +
  9522. ", " +
  9523. "'" +
  9524. _stage +
  9525. "'" +
  9526. ", " +
  9527. "'" +
  9528. _task +
  9529. "'" +
  9530. ", " +
  9531. "'" +
  9532. _tool +
  9533. "'" +
  9534. ", " +
  9535. "'" +
  9536. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9537. "'" +
  9538. ", " +
  9539. "'" +
  9540. aTool +
  9541. "'" +
  9542. ", " +
  9543. "`" +
  9544. text +
  9545. "`" +
  9546. ")\n" +
  9547. " });\n" +
  9548. "}\n" +
  9549. "document.head.appendChild(_js);\n";
  9550. _iframe.contentWindow.document.head.appendChild(_ajs);
  9551. }
  9552. }
  9553. //U.MD.D.I.openClick(str);
  9554. //如果有任務欄信息
  9555. // if (_taskbar) {
  9556. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9557. // }
  9558. }
  9559. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9560. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9561. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9562. _userinfo = US.userInfo, //登錄用戶信息
  9563. _userid = US.userInfo.userid //登錄用戶id
  9564. let _iframe;
  9565. let _cid = cid,
  9566. _stage = stage,
  9567. _task = task,
  9568. _tool = tool;
  9569. var _jie = $$("div", {
  9570. "style": {
  9571. "position": "absolute",
  9572. "bottom": "50px",
  9573. "right": "50px",
  9574. "zIndex": "9999",
  9575. "backgroundColor": "#2268bc",
  9576. "color": "#fff",
  9577. "padding": "12px 20px",
  9578. "cursor": "pointer",
  9579. "borderRadius": "4px",
  9580. },
  9581. "innerHTML": "上傳模板"
  9582. })
  9583. let aTool = ''
  9584. let _loading = document.createElement('div')
  9585. _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;"
  9586. // _loading.id = "";
  9587. let _lchild = document.createElement('div')
  9588. let _limg = document.createElement('img')
  9589. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9590. _limg.style = "width: 26px;margin-right: 10px;"
  9591. _lchild.appendChild(_limg)
  9592. let _lspan = document.createElement('span')
  9593. _lspan.innerHTML = "上傳中..."
  9594. _lchild.appendChild(_lspan)
  9595. _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%);"
  9596. _loading.appendChild(_lchild)
  9597. var _box = $$('div', {
  9598. "style": {
  9599. "position": "relative",
  9600. "width": "100%",
  9601. "height": "100%",
  9602. },
  9603. })
  9604. _box.appendChild(_loading)
  9605. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9606. switch (str) {
  9607. case "whiteboard":
  9608. aTool = 1;
  9609. _iframe = $$("iframe", {
  9610. "frameborder": "no",
  9611. "border": "0",
  9612. "scrolling ": "no",
  9613. "style": {
  9614. "cssText": "border:0;width:100%;height:100%"
  9615. },
  9616. "src": "https://iwb.cocorobo.hk/"
  9617. })
  9618. _box.appendChild(_iframe);
  9619. _box.appendChild(_jie);
  9620. _formdiv = new U.UF.UI.form(
  9621. "電子白板",
  9622. _box, {
  9623. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9624. "style": {
  9625. "width": "90%",
  9626. "height": "90%",
  9627. "overflow": 'hidden'
  9628. },
  9629. "onresize": function () { }
  9630. }, {
  9631. closecallback: function () { }
  9632. }, {
  9633. "style": {
  9634. "height": "36px"
  9635. }
  9636. }).form; //創建窗體
  9637. _taskbar = {
  9638. "id": str + _formdiv.id,
  9639. "style": {
  9640. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9641. },
  9642. "name": "電子白板",
  9643. "forms": _formdiv,
  9644. "click": function () {
  9645. U.MD.D.I.openApplication(str, obj, info);
  9646. }
  9647. }
  9648. break;
  9649. case "mind":
  9650. aTool = 3;
  9651. _iframe = $$("iframe", {
  9652. "frameborder": "no",
  9653. "border": "0",
  9654. "scrolling ": "no",
  9655. "style": {
  9656. "cssText": "border:0;width:100%;height:100%"
  9657. },
  9658. "src": "/kityminder-editor/dist/index.html"
  9659. });
  9660. _box.appendChild(_iframe);
  9661. _box.appendChild(_jie);
  9662. _formdiv = new U.UF.UI.form(
  9663. "思維導圖",
  9664. _box, { //"/jsmind/example/demo.html"
  9665. "id": "minds_Yu" + cid + stage + task + tool,
  9666. "style": {
  9667. "width": "90%",
  9668. "height": "90%",
  9669. "overflow": 'hidden'
  9670. },
  9671. "onresize": function () { }
  9672. }, {
  9673. closecallback: function () { }
  9674. }, {
  9675. "style": {
  9676. "height": "36px"
  9677. }
  9678. }).form; //創建窗體
  9679. _taskbar = {
  9680. "id": str + _formdiv.id,
  9681. "style": {
  9682. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9683. },
  9684. "name": "思維導圖",
  9685. "forms": _formdiv,
  9686. "click": function () {
  9687. U.MD.D.I.openApplication(str, obj, info);
  9688. }
  9689. }
  9690. break;
  9691. case "doc":
  9692. aTool = 6;
  9693. _iframe = $$("iframe", {
  9694. "frameborder": "no",
  9695. "border": "0",
  9696. "scrolling ": "no",
  9697. "style": {
  9698. "cssText": "border:0;width:100%;height:100%"
  9699. },
  9700. "src": "/Office/Word/WordEditArea.htm"
  9701. })
  9702. _box.appendChild(_iframe);
  9703. _box.appendChild(_jie);
  9704. _formdiv = new U.UF.UI.form(
  9705. "協同文檔",
  9706. _box, {
  9707. "id": "docs_Yu" + cid + stage + task + tool,
  9708. "style": {
  9709. "width": "90%",
  9710. "height": "90%",
  9711. "overflow": 'hidden'
  9712. },
  9713. "onresize": function () { }
  9714. }, {
  9715. closecallback: function () { }
  9716. }, {
  9717. "style": {
  9718. "height": "36px"
  9719. }
  9720. }).form; //創建窗體
  9721. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9722. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9723. })
  9724. _taskbar = {
  9725. "id": str + _formdiv.id,
  9726. "style": {
  9727. "backgroundImage": "url(/img/icon/doc.png)"
  9728. },
  9729. "name": "協同文檔",
  9730. "forms": _formdiv,
  9731. "click": function () {
  9732. U.MD.D.I.openApplication(str, obj, info);
  9733. }
  9734. }
  9735. break;
  9736. case "CocoPi":
  9737. aTool = 57;
  9738. _iframe = $$("iframe", {
  9739. "allowpaymentrequest": "allowpaymentrequest",
  9740. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9741. "webkitallowfullscreen": "",
  9742. "mozallowfullscreen": "",
  9743. "frameborder": "no",
  9744. "border": "0",
  9745. "scrolling ": "no",
  9746. "style": {
  9747. "cssText": "border:0;width:100%;height:100%"
  9748. },
  9749. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9750. })
  9751. _box.appendChild(_iframe);
  9752. _box.appendChild(_jie);
  9753. _formdiv = new U.UF.UI.form(
  9754. "CocoPi",
  9755. _box, {
  9756. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9757. "style": {
  9758. "width": "90%",
  9759. "height": "90%",
  9760. "overflow": 'hidden'
  9761. },
  9762. "onresize": function () { }
  9763. }, {
  9764. closecallback: function () { }
  9765. }, {
  9766. "style": {
  9767. "height": "36px"
  9768. }
  9769. }).form; //創建窗體
  9770. _taskbar = {
  9771. "id": str + _formdiv.id,
  9772. "style": {
  9773. "backgroundImage": "url(/img/icon/cocopi.png)"
  9774. },
  9775. "name": "CocoPi",
  9776. "forms": _formdiv,
  9777. "click": function () {
  9778. U.MD.D.I.openApplication(str, obj, info);
  9779. }
  9780. }
  9781. break;
  9782. }
  9783. if (_iframe) {
  9784. if (str == 'doc') {
  9785. _iframe = _formdiv.querySelector('iframe')
  9786. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9787. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9788. })
  9789. if (onloadListener) {
  9790. _iframe.contentDocument.location.reload()
  9791. } else {
  9792. _iframe.contentDocument.location.reload()
  9793. }
  9794. } else if (str == 'mind') {
  9795. _iframe = _formdiv.querySelector('iframe')
  9796. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9797. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9798. })
  9799. if (onloadListener) {
  9800. _iframe.contentDocument.location.reload()
  9801. } else {
  9802. _iframe.contentDocument.location.reload()
  9803. }
  9804. } else if (str == 'whiteboard') {
  9805. _iframe = _formdiv.querySelector('iframe')
  9806. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9807. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9808. })
  9809. // if (onloadListener) {
  9810. // try {
  9811. // _iframe.src += "?cocorobo="+new Date().getTime()
  9812. // _iframe.contentWindow.document.location.reload()
  9813. // } catch (error) {
  9814. // }
  9815. // } else {
  9816. // _iframe.contentDocument.location.reload()
  9817. // }
  9818. } else if (str == 'CocoPi') {
  9819. _iframe = _formdiv.querySelector('iframe')
  9820. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9821. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9822. })
  9823. if (onloadListener) {
  9824. _iframe.contentDocument.location.reload()
  9825. } else {
  9826. _iframe.contentDocument.location.reload()
  9827. }
  9828. } else {
  9829. _iframe.onload = () => { };
  9830. }
  9831. _jie.onclick = async () => {
  9832. let text = ''
  9833. let type = '2'
  9834. if (aTool == 1) {
  9835. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9836. type = '3'
  9837. } else if (aTool == 6) {
  9838. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9839. type = '1'
  9840. } else if (aTool == 3) {
  9841. text = await U.MD.D.I.getEditorContent(_iframe);
  9842. type = '2'
  9843. } else if (aTool == 57) {
  9844. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9845. type = '4'
  9846. }
  9847. _loading.style.display = 'flex'
  9848. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9849. }
  9850. }
  9851. //U.MD.D.I.openClick(str);
  9852. //如果有任務欄信息
  9853. // if (_taskbar) {
  9854. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9855. // }
  9856. }
  9857. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9858. var xmlhttp;
  9859. var Mac, Sn, DeviceId
  9860. if (window.XMLHttpRequest) {
  9861. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9862. xmlhttp = new XMLHttpRequest();
  9863. }
  9864. else {
  9865. // IE6, IE5 瀏覽器執行代碼
  9866. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9867. }
  9868. xmlhttp.onreadystatechange = function () {
  9869. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9870. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9871. // resolve(res.value[0][0].text);
  9872. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9873. }
  9874. }
  9875. }
  9876. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9877. xmlhttp.send();
  9878. }
  9879. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9880. var xmlhttp;
  9881. var Mac, Sn, DeviceId
  9882. if (window.XMLHttpRequest) {
  9883. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9884. xmlhttp = new XMLHttpRequest();
  9885. }
  9886. else {
  9887. // IE6, IE5 瀏覽器執行代碼
  9888. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9889. }
  9890. xmlhttp.onreadystatechange = function () {
  9891. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9892. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9893. // resolve(res.value[0][0].text);
  9894. if (type == '2') {
  9895. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9896. } else if (type == '3') {
  9897. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9898. } else if (type == '4') {
  9899. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9900. }
  9901. } else {
  9902. if (type == '2') {
  9903. iframe.contentWindow.editor.minder.importData('json', '')
  9904. } else if (type == '3') {
  9905. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9906. } else if (type == '4') {
  9907. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9908. }
  9909. }
  9910. }
  9911. }
  9912. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9913. xmlhttp.send();
  9914. }
  9915. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9916. var xmlhttp;
  9917. var Mac, Sn, DeviceId
  9918. if (window.XMLHttpRequest) {
  9919. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9920. xmlhttp = new XMLHttpRequest();
  9921. }
  9922. else {
  9923. // IE6, IE5 瀏覽器執行代碼
  9924. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9925. }
  9926. xmlhttp.onreadystatechange = function () {
  9927. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9928. if (xmlhttp.response) {
  9929. // resolve(res.value[0][0].text);
  9930. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9931. // $(fileInput).val('');
  9932. // });
  9933. span.innerHTML = '上傳成功'
  9934. setTimeout(() => {
  9935. loading.style.display = 'none'
  9936. }, 1000);
  9937. }
  9938. }
  9939. }
  9940. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9941. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9942. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9943. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9944. // 設置請求頭,表示請求體的編碼格式
  9945. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9946. // 設置請求體,使用url-encoded格式的數據
  9947. }
  9948. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9949. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9950. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9951. _userinfo = US.userInfo, //登錄用戶信息
  9952. _userid = US.userInfo.userid //登錄用戶id
  9953. let _iframe;
  9954. let _cid = cid,
  9955. _stage = stage,
  9956. _task = task,
  9957. _tool = tool;
  9958. var _jie = $$("div", {
  9959. "style": {
  9960. "position": "absolute",
  9961. "bottom": "50px",
  9962. "right": "50px",
  9963. "zIndex": "9999",
  9964. "backgroundColor": "#2268bc",
  9965. "color": "#fff",
  9966. "padding": "12px 20px",
  9967. "cursor": "pointer",
  9968. "borderRadius": "4px",
  9969. },
  9970. "innerHTML": "提交作業"
  9971. })
  9972. let aTool = ''
  9973. let _loading = document.createElement('div')
  9974. _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;"
  9975. // _loading.id = "";
  9976. let _lchild = document.createElement('div')
  9977. let _limg = document.createElement('img')
  9978. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9979. _limg.style = "width: 26px;margin-right: 10px;"
  9980. _lchild.appendChild(_limg)
  9981. let _lspan = document.createElement('span')
  9982. _lspan.innerHTML = "上傳中..."
  9983. _lchild.appendChild(_lspan)
  9984. _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%);"
  9985. _loading.appendChild(_lchild)
  9986. var _box = $$('div', {
  9987. "style": {
  9988. "position": "relative",
  9989. "width": "100%",
  9990. "height": "100%",
  9991. },
  9992. })
  9993. _box.appendChild(_loading)
  9994. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9995. switch (str) {
  9996. case "CocoPi":
  9997. aTool = 57;
  9998. _iframe = $$("iframe", {
  9999. "allowpaymentrequest": "allowpaymentrequest",
  10000. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10001. "webkitallowfullscreen": "",
  10002. "mozallowfullscreen": "",
  10003. "frameborder": "no",
  10004. "border": "0",
  10005. "scrolling ": "no",
  10006. "style": {
  10007. "cssText": "border:0;width:100%;height:100%"
  10008. },
  10009. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10010. })
  10011. _box.appendChild(_iframe);
  10012. _box.appendChild(_jie);
  10013. _formdiv = new U.UF.UI.form(
  10014. "CocoPi",
  10015. _box, {
  10016. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10017. "style": {
  10018. "width": "90%",
  10019. "height": "90%",
  10020. "overflow": 'hidden'
  10021. },
  10022. "onresize": function () { }
  10023. }, {
  10024. closecallback: function () { }
  10025. }, {
  10026. "style": {
  10027. "height": "36px"
  10028. }
  10029. }).form; //創建窗體
  10030. _taskbar = {
  10031. "id": str + _formdiv.id,
  10032. "style": {
  10033. "backgroundImage": "url(/img/icon/cocopi.png)"
  10034. },
  10035. "name": "CocoPi",
  10036. "forms": _formdiv,
  10037. "click": function () {
  10038. U.MD.D.I.openApplication(str, obj, info);
  10039. }
  10040. }
  10041. break;
  10042. }
  10043. if (_iframe) {
  10044. if (str == 'CocoPi') {
  10045. _iframe = _formdiv.querySelector('iframe')
  10046. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10047. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10048. })
  10049. if (onloadListener) {
  10050. _iframe.contentDocument.location.reload()
  10051. } else {
  10052. _iframe.contentDocument.location.reload()
  10053. }
  10054. }
  10055. _jie.onclick = async () => {
  10056. let text = ''
  10057. if (aTool == 57) {
  10058. text = _iframe.contentWindow.getLoadXmlStr()
  10059. }
  10060. _loading.style.display = 'flex'
  10061. console.log(_loading);
  10062. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10063. _loading.style.display = 'none'
  10064. let _div = document.createElement('div')
  10065. _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;"
  10066. let _inner = document.createElement('div')
  10067. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10068. _inner.innerHTML = "上傳成功"
  10069. _div.appendChild(_inner)
  10070. _iframe.contentWindow.window.document.body.appendChild(_div)
  10071. _div.onclick = () => {
  10072. _iframe.contentWindow.window.document.body.removeChild(_div)
  10073. }
  10074. setTimeout(() => {
  10075. _iframe.contentWindow.window.document.body.removeChild(_div)
  10076. }, 1000);
  10077. }, [], { "type": "POST", "withCredentials": true });
  10078. }
  10079. }
  10080. }
  10081. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10082. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10083. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10084. _userid = student.userid, //登錄用戶id
  10085. _username = student.student //用戶名字
  10086. let _iframe;
  10087. let _cid = cid,
  10088. _stage = stage,
  10089. _task = task,
  10090. _tool = tool;
  10091. var _jie = $$("div", {
  10092. "style": {
  10093. "position": "absolute",
  10094. "bottom": "50px",
  10095. "right": "50px",
  10096. "zIndex": "9999",
  10097. "backgroundColor": "#2268bc",
  10098. "color": "#fff",
  10099. "padding": "12px 20px",
  10100. "cursor": "pointer",
  10101. "borderRadius": "4px",
  10102. },
  10103. "innerHTML": "提交作業"
  10104. })
  10105. let aTool = ''
  10106. let _loading = document.createElement('div')
  10107. _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;"
  10108. // _loading.id = "";
  10109. let _lchild = document.createElement('div')
  10110. let _limg = document.createElement('img')
  10111. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10112. _limg.style = "width: 26px;margin-right: 10px;"
  10113. _lchild.appendChild(_limg)
  10114. let _lspan = document.createElement('span')
  10115. _lspan.innerHTML = "上傳中..."
  10116. _lchild.appendChild(_lspan)
  10117. _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%);"
  10118. _loading.appendChild(_lchild)
  10119. var _box = $$('div', {
  10120. "style": {
  10121. "position": "relative",
  10122. "width": "100%",
  10123. "height": "100%",
  10124. },
  10125. })
  10126. _box.appendChild(_loading)
  10127. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10128. switch (str) {
  10129. case "CocoPi":
  10130. aTool = 57;
  10131. _iframe = $$("iframe", {
  10132. "allowpaymentrequest": "allowpaymentrequest",
  10133. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10134. "webkitallowfullscreen": "",
  10135. "mozallowfullscreen": "",
  10136. "frameborder": "no",
  10137. "border": "0",
  10138. "scrolling ": "no",
  10139. "style": {
  10140. "cssText": "border:0;width:100%;height:100%"
  10141. },
  10142. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10143. })
  10144. _box.appendChild(_iframe);
  10145. _box.appendChild(_jie);
  10146. _formdiv = new U.UF.UI.form(
  10147. "CocoPi-" + _username,
  10148. _box, {
  10149. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10150. "style": {
  10151. "width": "90%",
  10152. "height": "90%",
  10153. "overflow": 'hidden'
  10154. },
  10155. "onresize": function () { }
  10156. }, {
  10157. closecallback: function () { }
  10158. }, {
  10159. "style": {
  10160. "height": "36px"
  10161. }
  10162. }).form; //創建窗體
  10163. _taskbar = {
  10164. "id": str + _formdiv.id,
  10165. "style": {
  10166. "backgroundImage": "url(/img/icon/cocopi.png)"
  10167. },
  10168. "name": "CocoPi",
  10169. "forms": _formdiv,
  10170. "click": function () {
  10171. U.MD.D.I.openApplication(str, obj, info);
  10172. }
  10173. }
  10174. break;
  10175. }
  10176. if (_iframe) {
  10177. if (str == 'CocoPi') {
  10178. _iframe = _formdiv.querySelector('iframe')
  10179. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10180. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10181. })
  10182. if (onloadListener) {
  10183. _iframe.contentDocument.location.reload()
  10184. } else {
  10185. _iframe.contentDocument.location.reload()
  10186. }
  10187. }
  10188. _jie.onclick = async () => {
  10189. let text = ''
  10190. if (aTool == 57) {
  10191. text = _iframe.contentWindow.getLoadXmlStr()
  10192. }
  10193. _loading.style.display = 'flex'
  10194. console.log(_loading);
  10195. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10196. _loading.style.display = 'none'
  10197. let _div = document.createElement('div')
  10198. _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;"
  10199. let _inner = document.createElement('div')
  10200. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10201. _inner.innerHTML = "上傳成功"
  10202. _div.appendChild(_inner)
  10203. _iframe.contentWindow.window.document.body.appendChild(_div)
  10204. _div.onclick = () => {
  10205. _iframe.contentWindow.window.document.body.removeChild(_div)
  10206. }
  10207. setTimeout(() => {
  10208. _iframe.contentWindow.window.document.body.removeChild(_div)
  10209. }, 1000);
  10210. }, [], { "type": "POST", "withCredentials": true });
  10211. }
  10212. }
  10213. }
  10214. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10215. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10216. if (res.value[0].length > 0) {
  10217. if (atool == 57) {
  10218. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10219. }
  10220. } else {
  10221. if (atool == 57) {
  10222. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10223. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10224. }
  10225. }
  10226. }, [], { "type": "POST", "withCredentials": true });
  10227. }