DeskTop.js 679 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814
  1. /*
  2. 此處為桌面系統啟動應用區域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面應用處理
  5. //判斷圖片是否在拖拽,如果是拖拽圖標的過程是不會打開圖片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教師桌面圖標的全局變量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //極簡模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教師桌面圖標的全局變量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "項目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的項目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "學習資料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  417. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  434. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教師桌面圖標的全局變量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教師桌面圖標的全局變量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龍華中心小學教師桌面圖標的全局變量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院實小教師桌面圖標的全局變量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "評測看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院實小教師桌面圖標的全局變量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小學教師桌面圖標的全局變量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小學學生桌面圖標的全局變量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //hk
  694. U.MD.D.I.hkStudentDeskIcon = [
  695. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  696. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  697. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  698. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  700. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkaceteacherDeskIcon = [
  704. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  724. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  725. ];
  726. //hk
  727. U.MD.D.I.hkaceStudentDeskIcon = [
  728. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  729. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  730. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  731. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. ];
  735. //香海正覺蓮社佛教正覺中學
  736. U.MD.D.I.hkZJLSteacherDeskIcon = [
  737. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  738. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  739. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  740. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  741. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  742. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  743. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  744. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  745. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  746. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  747. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  748. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  749. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  750. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  751. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  752. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. ];
  754. //香海正覺蓮社佛教正覺中學
  755. U.MD.D.I.hkZJLSStudentDeskIcon = [
  756. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  757. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. ];
  761. //雲海
  762. U.MD.D.I.yunhaiTeacherDeskIcon = [
  763. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  764. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  766. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  767. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  768. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  770. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  771. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  772. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  774. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  775. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  776. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  777. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  778. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  779. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  780. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  781. ];
  782. //福田
  783. U.MD.D.I.heyuanTeacherDeskIcon = [
  784. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  785. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  786. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  787. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  788. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  789. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  790. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  792. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  793. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  794. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanAdminDeskIcon = [
  799. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  807. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  812. U.MD.D.I.szherTeacherDeskIcon = [
  813. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //dsei
  826. U.MD.D.I.dseiTeacherDeskIcon = [
  827. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  830. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  831. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  842. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  843. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  844. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  845. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  846. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  847. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  848. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  849. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  850. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  851. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  852. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  853. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  854. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  855. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  856. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  857. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  858. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  859. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  860. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  861. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  862. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  863. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  864. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  866. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  867. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  868. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  870. ];
  871. //dsei
  872. U.MD.D.I.dseiAdminDeskIcon = [
  873. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  874. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  875. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  876. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  877. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  878. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  879. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  880. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  881. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  882. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  883. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  884. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  885. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  886. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  887. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  888. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  889. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  890. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  891. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  892. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  893. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  894. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  895. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  896. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  897. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  898. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  899. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  900. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  901. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  902. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  903. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  904. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  905. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  906. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  907. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  908. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  909. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  910. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  913. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  914. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  915. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未來教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  936. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  951. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  952. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  954. ];
  955. //未來教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  964. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  982. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  983. ];
  984. //未來教育基地
  985. U.MD.D.I.szjkyStudentDeskIcon = [
  986. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  991. ];
  992. //成華教育局
  993. U.MD.D.I.chjyjTeacherDeskIcon = [
  994. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1001. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1002. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1003. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1004. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1006. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1007. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1008. ];
  1009. //成華教育局chjyj
  1010. U.MD.D.I.chjyjAdminDeskIcon = [
  1011. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1012. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1013. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1014. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1015. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1016. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1017. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1018. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1019. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1020. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1021. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1022. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1024. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1026. ];
  1027. //成華教育局chjyj
  1028. U.MD.D.I.chjyjStudentDeskIcon = [
  1029. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcStudentDeskIcon = [
  1036. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcTeacherDeskIcon = [
  1043. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //tpc
  1052. U.MD.D.I.tpcAdminDeskIcon = [
  1053. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1056. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1057. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1058. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1059. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1060. ];
  1061. //THU-IOE
  1062. U.MD.D.I.thuioeTeacherDeskIcon = [
  1063. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1064. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1065. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1070. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1071. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1072. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1073. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1074. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1075. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1076. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1077. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1078. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1079. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1080. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1081. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1082. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1083. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1084. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1085. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1086. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1087. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1088. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1089. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1090. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1091. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1092. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1093. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1094. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1095. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1096. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1097. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1099. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1101. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1102. ];
  1103. //THU-IOE
  1104. U.MD.D.I.thuioeStudentDeskIcon = [
  1105. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1109. ];
  1110. //jccssyl
  1111. U.MD.D.I.jccssylTeacherDeskIcon = [
  1112. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1113. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1114. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1115. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1116. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1117. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1118. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1119. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1120. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1121. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1122. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1123. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1125. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1129. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1130. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylStudentDeskIcon = [
  1134. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //cale
  1140. U.MD.D.I.caleTeacherDeskIcon = [
  1141. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleStudentDeskIcon = [
  1163. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //lqwmsgzs
  1169. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1170. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1180. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1181. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1182. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1183. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1184. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1185. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1186. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1187. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1188. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1189. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1190. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1191. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1192. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1193. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1194. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1195. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1196. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1197. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1198. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1199. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1200. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1201. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1202. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1203. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1204. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1206. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1210. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1214. ];
  1215. //鹽田區幼兒園
  1216. U.MD.D.I.ytyTeacherDeskIcon = [
  1217. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1218. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1219. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1220. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1223. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1224. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1225. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1226. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1227. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1229. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1230. ];
  1231. //鹽田區幼兒園
  1232. U.MD.D.I.ytyStudentDeskIcon = [
  1233. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. ];
  1237. //scnuai
  1238. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1239. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1242. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1243. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1244. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1245. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1246. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1247. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1248. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1249. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1250. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1251. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1253. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1255. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1256. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1257. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1258. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1260. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1261. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiAdminDeskIcon = [
  1265. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiStudentDeskIcon = [
  1291. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. ];
  1296. //cocobiz
  1297. U.MD.D.I.cocobizteacherDeskIcon = [
  1298. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1299. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1303. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1304. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1305. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1306. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1307. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1308. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1309. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1310. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1311. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1315. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1316. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1317. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1318. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1319. ];
  1320. //cocobiz
  1321. U.MD.D.I.cocobizStudentDeskIcon = [
  1322. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. ];
  1329. //xxzjky
  1330. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1331. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1334. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1335. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1336. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1337. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1338. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1339. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1340. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1341. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1342. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1343. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1344. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1348. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1349. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1350. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1351. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1352. ];
  1353. //xxzjky
  1354. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1355. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //nsfx
  1363. U.MD.D.I.nsfxTeacherDeskIcon = [
  1364. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1371. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1372. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1373. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1374. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1379. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1380. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1381. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1382. ];
  1383. //nsfx
  1384. U.MD.D.I.nsfxStudentDeskIcon = [
  1385. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //stia
  1391. U.MD.D.I.stiaTeacherDeskIcon = [
  1392. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. // { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. // { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. // { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1401. // { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1406. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1407. ];
  1408. //stia
  1409. U.MD.D.I.stiaStudentDeskIcon = [
  1410. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgTeacherDeskIcon = [
  1417. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. ];
  1420. //szdjg
  1421. U.MD.D.I.szdjgStudentDeskIcon = [
  1422. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //010607
  1428. U.MD.D.I.x010607TeacherDeskIcon = [
  1429. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1437. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1438. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1440. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1441. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1444. ];
  1445. //010607
  1446. U.MD.D.I.x010607StudentDeskIcon = [
  1447. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608TeacherDeskIcon = [
  1454. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1462. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1467. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.x010608StudentDeskIcon = [
  1471. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1475. ];
  1476. //xhly
  1477. U.MD.D.I.xhlyTeacherDeskIcon = [
  1478. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1479. ];
  1480. //010608
  1481. U.MD.D.I.xhlyStudentDeskIcon = [
  1482. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. ];
  1484. //北師大
  1485. U.MD.D.I.BSDNSteacherDeskIcon = [
  1486. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1487. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1489. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1491. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1492. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1493. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1494. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1496. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1497. ];
  1498. //北師大
  1499. U.MD.D.I.BSDNSstudentDeskIcon = [
  1500. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1507. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1508. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1509. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1510. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1511. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1514. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1515. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1517. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1518. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1521. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1522. ];
  1523. //CUHK_EDU
  1524. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1525. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503TeacherDeskIcon = [
  1532. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1533. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1535. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1536. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1539. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1540. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1541. ];
  1542. //010503
  1543. U.MD.D.I.x010503StudentDeskIcon = [
  1544. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1545. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1546. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1551. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1561. ];
  1562. //SPROUT Lab
  1563. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1564. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1565. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1566. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1567. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //010204
  1570. U.MD.D.I.x010204TeacherDeskIcon = [
  1571. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. ];
  1574. //010204
  1575. U.MD.D.I.x010204StudentDeskIcon = [
  1576. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1580. ];
  1581. //trail
  1582. U.MD.D.I.trailTeacherDeskIcon = [
  1583. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1584. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1586. ];
  1587. //trail
  1588. U.MD.D.I.trailStudentDeskIcon = [
  1589. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //010504
  1595. U.MD.D.I.x010504TeacherDeskIcon = [
  1596. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1599. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1600. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1601. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1602. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1603. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1604. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1605. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1606. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1607. ];
  1608. //010504
  1609. U.MD.D.I.x010504StudentDeskIcon = [
  1610. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1611. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1612. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1614. ];
  1615. //SCNUET
  1616. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1617. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1620. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1621. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1622. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1623. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1624. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1625. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1626. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1627. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1628. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1629. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1630. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1633. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1636. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1637. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1640. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1641. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1642. ];
  1643. //SCNUET
  1644. U.MD.D.I.SCNUETAdminDeskIcon = [
  1645. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1646. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1647. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1648. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1649. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1650. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1651. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1652. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1653. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1654. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1655. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1656. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1657. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1658. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1659. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1660. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1662. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1663. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1664. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1665. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1666. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1667. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1668. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1669. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1670. ];
  1671. //SCNUET
  1672. U.MD.D.I.SCNUETStudentDeskIcon = [
  1673. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "項目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1677. ];
  1678. //x020201
  1679. U.MD.D.I.x020201TeacherDeskIcon = [
  1680. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1681. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1682. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1683. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1684. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1685. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1686. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1687. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1688. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1689. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1690. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1691. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1693. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1694. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //x020201
  1698. U.MD.D.I.x020201AdminDeskIcon = [
  1699. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1700. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1702. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1703. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1704. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1705. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1708. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1709. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1710. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1711. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1712. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1713. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1714. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1715. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1716. ];
  1717. //020201
  1718. U.MD.D.I.x020201StudentDeskIcon = [
  1719. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. ];
  1724. //010611
  1725. U.MD.D.I.x010611TeacherDeskIcon = [
  1726. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1727. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1729. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1730. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1733. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1734. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1735. ];
  1736. //010611
  1737. U.MD.D.I.x010611StudentDeskIcon = [
  1738. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1739. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1740. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1742. ];
  1743. //tianyuan
  1744. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1745. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1746. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1747. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1748. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1749. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1750. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1751. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1752. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1753. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1754. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1755. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1756. ];
  1757. //010611
  1758. U.MD.D.I.tianyuanStudentDeskIcon = [
  1759. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1760. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1761. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1762. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1763. ];
  1764. //320101
  1765. U.MD.D.I.x320101TeacherDeskIcon = [
  1766. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1767. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1768. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1769. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1770. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1771. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1772. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1773. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1774. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1775. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1776. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1777. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1778. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1779. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1780. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1781. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1782. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1783. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1784. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1785. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1786. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1787. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1788. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1789. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1790. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1791. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1792. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1793. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1794. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1795. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1796. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1797. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1798. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1799. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1800. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1801. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1804. ];
  1805. //320101
  1806. U.MD.D.I.x320101StudentDeskIcon = [
  1807. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1808. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1809. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1810. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1811. ];
  1812. //szsy
  1813. U.MD.D.I.szsyTeacherDeskIcon = [
  1814. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1815. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1816. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1817. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1818. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1819. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1820. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1821. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1822. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1823. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1824. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1825. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1826. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1827. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1828. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1829. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1830. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1831. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1832. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1833. ];
  1834. //szsy
  1835. U.MD.D.I.szsyStudentDeskIcon = [
  1836. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1837. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1838. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1839. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1840. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1841. ];
  1842. //#region 桌面初始化a
  1843. /**
  1844. * 初始化桌面的起始函數
  1845. *
  1846. */
  1847. U.MD.D.I.init = function () {
  1848. if ($("#U_MD_D_K")[0]) {
  1849. //初始化桌面圖標
  1850. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1851. // var clickUrl = ':12588/requestIp.php';
  1852. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1853. // U.MD.D.I.Ip = data;
  1854. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1855. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1856. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1857. // })
  1858. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1859. // })
  1860. }
  1861. }
  1862. /**
  1863. * 模式切換
  1864. *
  1865. */
  1866. U.MD.D.I.ModeCheck = function (type) {
  1867. if (US.Config.type == type) {
  1868. return
  1869. }
  1870. US.Config.type = type
  1871. $('.U_PBL_Check .active')[0].className = ''
  1872. if (type == 1) {
  1873. $('.U_PBL_Check div')[0].className = 'active'
  1874. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1875. } else {
  1876. $('.U_PBL_Check div')[1].className = 'active'
  1877. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1878. }
  1879. //初始化桌面圖標
  1880. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1881. if (type == 2) {
  1882. U.MD.D.I.openApplication("project")
  1883. }
  1884. }
  1885. /**
  1886. * 隱藏任務欄
  1887. *
  1888. * @param {element} 桌面元素
  1889. */
  1890. U.MD.D.I.hiddenTaskbar = function (el) {
  1891. //任務欄位置變小
  1892. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1893. //桌面的位置變大
  1894. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1895. }
  1896. /**
  1897. * 隱藏任務欄
  1898. *
  1899. * @param {element} 桌面元素
  1900. */
  1901. U.MD.D.I.hiddenTaskbarout = function (el) {
  1902. //任務欄位置變小
  1903. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1904. //任務欄位置變化
  1905. U.selectEl(el).css({ "bottom": "-60px" });
  1906. //桌面的位置變大
  1907. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1908. }
  1909. }
  1910. /**
  1911. * 初始化打印桌面圖標
  1912. *
  1913. * @param {element} 桌面元素
  1914. */
  1915. U.MD.D.I.initDesktopIcons = function (el, type) {
  1916. var i, //用於循環
  1917. _content, //桌面圖標元素
  1918. _iconcontent, //桌面圖標元素
  1919. _frag = $$("frag"), //定義一個碎片元素
  1920. _type = US.userInfo.type,
  1921. _org = US.userInfo.org,
  1922. _oid = US.userInfo.organizeid,
  1923. _role = US.userInfo.role,
  1924. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  1925. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  1926. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  1927. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  1928. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  1929. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  1930. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  1931. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1932. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1933. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1934. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  1935. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  1936. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  1937. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  1938. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  1939. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  1940. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  1941. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  1942. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  1943. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  1944. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  1945. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  1946. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  1947. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  1948. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1949. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1950. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  1951. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  1952. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  1953. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  1954. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  1955. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  1956. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1957. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1958. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1959. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1960. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1961. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1962. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1963. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1964. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1965. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  1966. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1967. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1968. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1969. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1970. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  1971. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1972. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1973. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1974. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1975. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1976. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1977. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1978. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1979. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1980. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1981. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  1982. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1983. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1984. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1985. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1986. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1987. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1988. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1989. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1990. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1991. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1992. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1993. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  1994. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  1995. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  1996. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  1997. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1998. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1999. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2000. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2001. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2002. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2003. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2004. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2005. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2006. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2007. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2008. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2009. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2010. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2011. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2012. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2013. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2014. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2015. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2016. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2017. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2018. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2019. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2020. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2021. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2022. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2023. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2024. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2025. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2026. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2027. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2028. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2029. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2030. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2031. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2032. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2033. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2034. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2035. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2036. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2037. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2038. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2039. 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','2c5d4971-ed9e-11ef-b508-005056924926'];
  2040. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636'];
  2041. //清楚桌面圖標
  2042. el.innerHTML = "";
  2043. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2044. _teacherDesktopIconInfo.push(
  2045. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2046. { "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)" } },
  2047. )
  2048. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2049. }
  2050. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926") {
  2051. _teacherDesktopIconInfo.push(
  2052. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2053. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2054. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2055. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2056. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2057. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2058. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2059. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2060. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2061. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2062. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2063. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2064. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2065. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2066. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2067. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2068. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2069. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2070. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2071. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2072. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2073. )
  2074. }
  2075. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  2076. _teacherDesktopIconInfo.push(
  2077. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2078. )
  2079. }
  2080. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2081. // _teacherDesktopIconInfo.push(
  2082. // )
  2083. // }
  2084. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2085. _teacherDesktopIconInfo.push(
  2086. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2087. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2088. )
  2089. }
  2090. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2091. _teacherDesktopIconInfo.push(
  2092. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2093. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2094. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2095. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2096. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2097. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2098. )
  2099. _studentDesktopIconInfo.push(
  2100. )
  2101. }
  2102. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2103. _teacherDesktopIconInfo.push(
  2104. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2105. )
  2106. _studentDesktopIconInfo.push(
  2107. )
  2108. }
  2109. //010606 組織
  2110. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2111. _teacherDesktopIconInfo.push(
  2112. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2113. )
  2114. _studentDesktopIconInfo.push(
  2115. )
  2116. }
  2117. //麒麟二中 和 民新小學
  2118. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2119. _teacherDesktopIconInfo.push(
  2120. )
  2121. }
  2122. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2123. _teacherDesktopIconInfo.push(
  2124. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2125. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2127. )
  2128. }
  2129. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2130. _hkTeacherDeskIconInfo.push(
  2131. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2132. )
  2133. }
  2134. //北師大附中(010601)
  2135. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2136. // _teacherDesktopIconInfo.push(
  2137. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2138. // )
  2139. // _studentDesktopIconInfo.push(
  2140. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2141. // )
  2142. // }
  2143. //樂善堂余近卿中學
  2144. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2145. _teacherDesktopIconInfo.push(
  2146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2147. )
  2148. }
  2149. // Education Artificial Intelligence
  2150. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2151. _teacherDesktopIconInfo.push(
  2152. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2153. )
  2154. }
  2155. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2156. _teacherDesktopIconInfo.push(
  2157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2158. )
  2159. }
  2160. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2161. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2162. _teacherDesktopIconInfo.push(
  2163. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2164. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2165. )
  2166. }
  2167. //麒麟二中
  2168. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2169. _studentDesktopIconInfo.push(
  2170. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2171. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2172. )
  2173. }
  2174. //萬科雙語
  2175. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2176. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2177. if (el.Name == '項目管理') {
  2178. el.Name = 'PBL項目'
  2179. }
  2180. return el
  2181. })
  2182. _studentDesktopIconInfo3.push(
  2183. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2184. )
  2185. }
  2186. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2187. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2188. return el.Name != '魔盒識字' && el.Name != '24點'
  2189. })
  2190. }
  2191. 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) {
  2192. _studentDesktopIconInfo.push(
  2193. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2194. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2195. )
  2196. }
  2197. //循環創建桌面圖標
  2198. if (type == 1) {
  2199. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2200. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2201. _content = $$("div", {
  2202. className: "U_MD_D_KO",
  2203. "onmousedown": U.UF.C.closure(function (obj) {
  2204. //防止拖動圖標即打開了桌面應用
  2205. U.MD.D.click(this, obj);
  2206. }, [_studentDesktopIconInfo[i]]),
  2207. "onclick": U.UF.C.closure(function (obj) {
  2208. //防止拖動圖標即打開了桌面應用
  2209. U.MD.D.click(this, obj);
  2210. }, [_studentDesktopIconInfo[i]])
  2211. }, _frag); //
  2212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2215. }
  2216. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2217. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2218. _content = $$("div", {
  2219. className: "U_MD_D_KO",
  2220. "onmousedown": U.UF.C.closure(function (obj) {
  2221. //防止拖動圖標即打開了桌面應用
  2222. U.MD.D.click(this, obj);
  2223. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2224. "onclick": U.UF.C.closure(function (obj) {
  2225. //防止拖動圖標即打開了桌面應用
  2226. U.MD.D.click(this, obj);
  2227. }, [_hkZJLSStudentDeskIconInfo[i]])
  2228. }, _frag); //
  2229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2232. } //
  2233. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2234. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2235. _content = $$("div", {
  2236. className: "U_MD_D_KO",
  2237. "onmousedown": U.UF.C.closure(function (obj) {
  2238. //防止拖動圖標即打開了桌面應用
  2239. U.MD.D.click(this, obj);
  2240. }, [_ytyStudentDeskIconInfo[i]]),
  2241. "onclick": U.UF.C.closure(function (obj) {
  2242. //防止拖動圖標即打開了桌面應用
  2243. U.MD.D.click(this, obj);
  2244. }, [_ytyStudentDeskIconInfo[i]])
  2245. }, _frag); //
  2246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2249. } //
  2250. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2251. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2252. _content = $$("div", {
  2253. className: "U_MD_D_KO",
  2254. "onmousedown": U.UF.C.closure(function (obj) {
  2255. //防止拖動圖標即打開了桌面應用
  2256. U.MD.D.click(this, obj);
  2257. }, [_jccssylStudentDeskIconInfo[i]]),
  2258. "onclick": U.UF.C.closure(function (obj) {
  2259. //防止拖動圖標即打開了桌面應用
  2260. U.MD.D.click(this, obj);
  2261. }, [_jccssylStudentDeskIconInfo[i]])
  2262. }, _frag); //
  2263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2266. }
  2267. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2268. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2269. _content = $$("div", {
  2270. className: "U_MD_D_KO",
  2271. "onmousedown": U.UF.C.closure(function (obj) {
  2272. //防止拖動圖標即打開了桌面應用
  2273. U.MD.D.click(this, obj);
  2274. }, [_scnuaiStudentDeskIconInfo[i]]),
  2275. "onclick": U.UF.C.closure(function (obj) {
  2276. //防止拖動圖標即打開了桌面應用
  2277. U.MD.D.click(this, obj);
  2278. }, [_scnuaiStudentDeskIconInfo[i]])
  2279. }, _frag); //
  2280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2283. }
  2284. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2285. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2286. _content = $$("div", {
  2287. className: "U_MD_D_KO",
  2288. "onmousedown": U.UF.C.closure(function (obj) {
  2289. //防止拖動圖標即打開了桌面應用
  2290. U.MD.D.click(this, obj);
  2291. }, [_caleStudentDeskIconInfo[i]]),
  2292. "onclick": U.UF.C.closure(function (obj) {
  2293. //防止拖動圖標即打開了桌面應用
  2294. U.MD.D.click(this, obj);
  2295. }, [_caleStudentDeskIconInfo[i]])
  2296. }, _frag); //
  2297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2300. }
  2301. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2302. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2303. _content = $$("div", {
  2304. className: "U_MD_D_KO",
  2305. "onmousedown": U.UF.C.closure(function (obj) {
  2306. //防止拖動圖標即打開了桌面應用
  2307. U.MD.D.click(this, obj);
  2308. }, [_thuioeStudentDeskIconInfo[i]]),
  2309. "onclick": U.UF.C.closure(function (obj) {
  2310. //防止拖動圖標即打開了桌面應用
  2311. U.MD.D.click(this, obj);
  2312. }, [_thuioeStudentDeskIconInfo[i]])
  2313. }, _frag); //
  2314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2317. }
  2318. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2319. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2320. _content = $$("div", {
  2321. className: "U_MD_D_KO",
  2322. "onmousedown": U.UF.C.closure(function (obj) {
  2323. //防止拖動圖標即打開了桌面應用
  2324. U.MD.D.click(this, obj);
  2325. }, [_tpcStudentDeskIconInfo[i]]),
  2326. "onclick": U.UF.C.closure(function (obj) {
  2327. //防止拖動圖標即打開了桌面應用
  2328. U.MD.D.click(this, obj);
  2329. }, [_tpcStudentDeskIconInfo[i]])
  2330. }, _frag); //
  2331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2334. } //
  2335. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2336. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2337. _content = $$("div", {
  2338. className: "U_MD_D_KO",
  2339. "onmousedown": U.UF.C.closure(function (obj) {
  2340. //防止拖動圖標即打開了桌面應用
  2341. U.MD.D.click(this, obj);
  2342. }, [_chjyjStudentDeskIconInfo[i]]),
  2343. "onclick": U.UF.C.closure(function (obj) {
  2344. //防止拖動圖標即打開了桌面應用
  2345. U.MD.D.click(this, obj);
  2346. }, [_chjyjStudentDeskIconInfo[i]])
  2347. }, _frag); //
  2348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2351. }
  2352. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2353. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2354. _content = $$("div", {
  2355. className: "U_MD_D_KO",
  2356. "onmousedown": U.UF.C.closure(function (obj) {
  2357. //防止拖動圖標即打開了桌面應用
  2358. U.MD.D.click(this, obj);
  2359. }, [_szjkyStudentDeskIconInfo[i]]),
  2360. "onclick": U.UF.C.closure(function (obj) {
  2361. //防止拖動圖標即打開了桌面應用
  2362. U.MD.D.click(this, obj);
  2363. }, [_szjkyStudentDeskIconInfo[i]])
  2364. }, _frag); //
  2365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2368. }
  2369. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2370. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2371. _content = $$("div", {
  2372. className: "U_MD_D_KO",
  2373. "onmousedown": U.UF.C.closure(function (obj) {
  2374. //防止拖動圖標即打開了桌面應用
  2375. U.MD.D.click(this, obj);
  2376. }, [_x020201StudentDeskIconInfo[i]]),
  2377. "onclick": U.UF.C.closure(function (obj) {
  2378. //防止拖動圖標即打開了桌面應用
  2379. U.MD.D.click(this, obj);
  2380. }, [_x020201StudentDeskIconInfo[i]])
  2381. }, _frag); //
  2382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2385. }
  2386. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2387. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖動圖標即打開了桌面應用
  2392. U.MD.D.click(this, obj);
  2393. }, [_SCNUETStudentDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖動圖標即打開了桌面應用
  2396. U.MD.D.click(this, obj);
  2397. }, [_SCNUETStudentDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2402. }
  2403. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2404. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2405. _content = $$("div", {
  2406. className: "U_MD_D_KO",
  2407. "onmousedown": U.UF.C.closure(function (obj) {
  2408. //防止拖動圖標即打開了桌面應用
  2409. U.MD.D.click(this, obj);
  2410. }, [_dseiStudentDeskIconInfo[i]]),
  2411. "onclick": U.UF.C.closure(function (obj) {
  2412. //防止拖動圖標即打開了桌面應用
  2413. U.MD.D.click(this, obj);
  2414. }, [_dseiStudentDeskIconInfo[i]])
  2415. }, _frag); //
  2416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2419. }
  2420. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2421. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2422. _content = $$("div", {
  2423. className: "U_MD_D_KO",
  2424. "onmousedown": U.UF.C.closure(function (obj) {
  2425. //防止拖動圖標即打開了桌面應用
  2426. U.MD.D.click(this, obj);
  2427. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2428. "onclick": U.UF.C.closure(function (obj) {
  2429. //防止拖動圖標即打開了桌面應用
  2430. U.MD.D.click(this, obj);
  2431. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2432. }, _frag); //
  2433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2436. }
  2437. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2438. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2439. _content = $$("div", {
  2440. className: "U_MD_D_KO",
  2441. "onmousedown": U.UF.C.closure(function (obj) {
  2442. //防止拖動圖標即打開了桌面應用
  2443. U.MD.D.click(this, obj);
  2444. }, [_nsfxStudentDeskIconInfo[i]]),
  2445. "onclick": U.UF.C.closure(function (obj) {
  2446. //防止拖動圖標即打開了桌面應用
  2447. U.MD.D.click(this, obj);
  2448. }, [_nsfxStudentDeskIconInfo[i]])
  2449. }, _frag); //
  2450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2453. }
  2454. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2455. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2456. _content = $$("div", {
  2457. className: "U_MD_D_KO",
  2458. "onmousedown": U.UF.C.closure(function (obj) {
  2459. //防止拖動圖標即打開了桌面應用
  2460. U.MD.D.click(this, obj);
  2461. }, [_stiaStudentDeskIconInfo[i]]),
  2462. "onclick": U.UF.C.closure(function (obj) {
  2463. //防止拖動圖標即打開了桌面應用
  2464. U.MD.D.click(this, obj);
  2465. }, [_stiaStudentDeskIconInfo[i]])
  2466. }, _frag); //
  2467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2470. }
  2471. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2472. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2473. _content = $$("div", {
  2474. className: "U_MD_D_KO",
  2475. "onmousedown": U.UF.C.closure(function (obj) {
  2476. //防止拖動圖標即打開了桌面應用
  2477. U.MD.D.click(this, obj);
  2478. }, [_szdjgStudentDeskIconInfo[i]]),
  2479. "onclick": U.UF.C.closure(function (obj) {
  2480. //防止拖動圖標即打開了桌面應用
  2481. U.MD.D.click(this, obj);
  2482. }, [_szdjgStudentDeskIconInfo[i]])
  2483. }, _frag); //
  2484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2487. }
  2488. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2489. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2490. _content = $$("div", {
  2491. className: "U_MD_D_KO",
  2492. "onmousedown": U.UF.C.closure(function (obj) {
  2493. //防止拖動圖標即打開了桌面應用
  2494. U.MD.D.click(this, obj);
  2495. }, [_x010607StudentDeskIconInfo[i]]),
  2496. "onclick": U.UF.C.closure(function (obj) {
  2497. //防止拖動圖標即打開了桌面應用
  2498. U.MD.D.click(this, obj);
  2499. }, [_x010607StudentDeskIconInfo[i]])
  2500. }, _frag); //
  2501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2504. }
  2505. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2506. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2507. _content = $$("div", {
  2508. className: "U_MD_D_KO",
  2509. "onmousedown": U.UF.C.closure(function (obj) {
  2510. //防止拖動圖標即打開了桌面應用
  2511. U.MD.D.click(this, obj);
  2512. }, [_xhlyStudentDeskIconInfo[i]]),
  2513. "onclick": U.UF.C.closure(function (obj) {
  2514. //防止拖動圖標即打開了桌面應用
  2515. U.MD.D.click(this, obj);
  2516. }, [_xhlyStudentDeskIconInfo[i]])
  2517. }, _frag); //
  2518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2521. }
  2522. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2523. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2524. _content = $$("div", {
  2525. className: "U_MD_D_KO",
  2526. "onmousedown": U.UF.C.closure(function (obj) {
  2527. //防止拖動圖標即打開了桌面應用
  2528. U.MD.D.click(this, obj);
  2529. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2530. "onclick": U.UF.C.closure(function (obj) {
  2531. //防止拖動圖標即打開了桌面應用
  2532. U.MD.D.click(this, obj);
  2533. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2534. }, _frag); //
  2535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2538. }
  2539. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2540. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2541. _content = $$("div", {
  2542. className: "U_MD_D_KO",
  2543. "onmousedown": U.UF.C.closure(function (obj) {
  2544. //防止拖動圖標即打開了桌面應用
  2545. U.MD.D.click(this, obj);
  2546. }, [_x010503StudentDeskIconInfo[i]]),
  2547. "onclick": U.UF.C.closure(function (obj) {
  2548. //防止拖動圖標即打開了桌面應用
  2549. U.MD.D.click(this, obj);
  2550. }, [_x010503StudentDeskIconInfo[i]])
  2551. }, _frag); //
  2552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2555. }
  2556. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2557. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖動圖標即打開了桌面應用
  2562. U.MD.D.click(this, obj);
  2563. }, [_x010504StudentDeskIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖動圖標即打開了桌面應用
  2566. U.MD.D.click(this, obj);
  2567. }, [_x010504StudentDeskIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2574. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2575. _content = $$("div", {
  2576. className: "U_MD_D_KO",
  2577. "onmousedown": U.UF.C.closure(function (obj) {
  2578. //防止拖動圖標即打開了桌面應用
  2579. U.MD.D.click(this, obj);
  2580. }, [_x010204StudentDeskIconInfo[i]]),
  2581. "onclick": U.UF.C.closure(function (obj) {
  2582. //防止拖動圖標即打開了桌面應用
  2583. U.MD.D.click(this, obj);
  2584. }, [_x010204StudentDeskIconInfo[i]])
  2585. }, _frag); //
  2586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2589. }
  2590. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2591. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖動圖標即打開了桌面應用
  2596. U.MD.D.click(this, obj);
  2597. }, [_x320101StudentDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖動圖標即打開了桌面應用
  2600. U.MD.D.click(this, obj);
  2601. }, [_x320101StudentDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2608. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖動圖標即打開了桌面應用
  2613. U.MD.D.click(this, obj);
  2614. }, [_trailStudentDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖動圖標即打開了桌面應用
  2617. U.MD.D.click(this, obj);
  2618. }, [_trailStudentDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2623. }
  2624. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2625. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2626. _content = $$("div", {
  2627. className: "U_MD_D_KO",
  2628. "onmousedown": U.UF.C.closure(function (obj) {
  2629. //防止拖動圖標即打開了桌面應用
  2630. U.MD.D.click(this, obj);
  2631. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2632. "onclick": U.UF.C.closure(function (obj) {
  2633. //防止拖動圖標即打開了桌面應用
  2634. U.MD.D.click(this, obj);
  2635. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2636. }, _frag); //
  2637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2640. }
  2641. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2642. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2643. _content = $$("div", {
  2644. className: "U_MD_D_KO",
  2645. "onmousedown": U.UF.C.closure(function (obj) {
  2646. //防止拖動圖標即打開了桌面應用
  2647. U.MD.D.click(this, obj);
  2648. }, [_szsyStudentDeskIconInfo[i]]),
  2649. "onclick": U.UF.C.closure(function (obj) {
  2650. //防止拖動圖標即打開了桌面應用
  2651. U.MD.D.click(this, obj);
  2652. }, [_szsyStudentDeskIconInfo[i]])
  2653. }, _frag); //
  2654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2657. }
  2658. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2659. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2660. _content = $$("div", {
  2661. className: "U_MD_D_KO",
  2662. "onmousedown": U.UF.C.closure(function (obj) {
  2663. //防止拖動圖標即打開了桌面應用
  2664. U.MD.D.click(this, obj);
  2665. }, [_x010608StudentDeskIconInfo[i]]),
  2666. "onclick": U.UF.C.closure(function (obj) {
  2667. //防止拖動圖標即打開了桌面應用
  2668. U.MD.D.click(this, obj);
  2669. }, [_x010608StudentDeskIconInfo[i]])
  2670. }, _frag); //
  2671. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2672. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2673. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2674. }
  2675. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2676. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2677. _content = $$("div", {
  2678. className: "U_MD_D_KO",
  2679. "onmousedown": U.UF.C.closure(function (obj) {
  2680. //防止拖動圖標即打開了桌面應用
  2681. U.MD.D.click(this, obj);
  2682. }, [_x010611StudentDeskIconInfo[i]]),
  2683. "onclick": U.UF.C.closure(function (obj) {
  2684. //防止拖動圖標即打開了桌面應用
  2685. U.MD.D.click(this, obj);
  2686. }, [_x010611StudentDeskIconInfo[i]])
  2687. }, _frag); //
  2688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2691. }
  2692. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2693. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2694. _content = $$("div", {
  2695. className: "U_MD_D_KO",
  2696. "onmousedown": U.UF.C.closure(function (obj) {
  2697. //防止拖動圖標即打開了桌面應用
  2698. U.MD.D.click(this, obj);
  2699. }, [_tianyuantudentDeskIconInfo[i]]),
  2700. "onclick": U.UF.C.closure(function (obj) {
  2701. //防止拖動圖標即打開了桌面應用
  2702. U.MD.D.click(this, obj);
  2703. }, [_tianyuantudentDeskIconInfo[i]])
  2704. }, _frag); //
  2705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2708. }
  2709. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2710. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2711. _content = $$("div", {
  2712. className: "U_MD_D_KO",
  2713. "onmousedown": U.UF.C.closure(function (obj) {
  2714. //防止拖動圖標即打開了桌面應用
  2715. U.MD.D.click(this, obj);
  2716. }, [_siesStudentDeskIconInfo[i]]),
  2717. "onclick": U.UF.C.closure(function (obj) {
  2718. //防止拖動圖標即打開了桌面應用
  2719. U.MD.D.click(this, obj);
  2720. }, [_siesStudentDeskIconInfo[i]])
  2721. }, _frag); //
  2722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2725. }
  2726. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2727. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖動圖標即打開了桌面應用
  2732. U.MD.D.click(this, obj);
  2733. }, [_guzmsStudentDeskIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖動圖標即打開了桌面應用
  2736. U.MD.D.click(this, obj);
  2737. }, [_guzmsStudentDeskIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2744. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2745. _content = $$("div", {
  2746. className: "U_MD_D_KO",
  2747. "onmousedown": U.UF.C.closure(function (obj) {
  2748. //防止拖動圖標即打開了桌面應用
  2749. U.MD.D.click(this, obj);
  2750. }, [_hkStudentDeskIconInfo[i]]),
  2751. "onclick": U.UF.C.closure(function (obj) {
  2752. //防止拖動圖標即打開了桌面應用
  2753. U.MD.D.click(this, obj);
  2754. }, [_hkStudentDeskIconInfo[i]])
  2755. }, _frag); //
  2756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2759. }
  2760. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2761. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2762. _content = $$("div", {
  2763. className: "U_MD_D_KO",
  2764. "onmousedown": U.UF.C.closure(function (obj) {
  2765. //防止拖動圖標即打開了桌面應用
  2766. U.MD.D.click(this, obj);
  2767. }, [_hkaceStudentDeskIconInfo[i]]),
  2768. "onclick": U.UF.C.closure(function (obj) {
  2769. //防止拖動圖標即打開了桌面應用
  2770. U.MD.D.click(this, obj);
  2771. }, [_hkaceStudentDeskIconInfo[i]])
  2772. }, _frag); //
  2773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2776. }
  2777. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2778. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2779. _content = $$("div", {
  2780. className: "U_MD_D_KO",
  2781. "onmousedown": U.UF.C.closure(function (obj) {
  2782. //防止拖動圖標即打開了桌面應用
  2783. U.MD.D.click(this, obj);
  2784. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2785. "onclick": U.UF.C.closure(function (obj) {
  2786. //防止拖動圖標即打開了桌面應用
  2787. U.MD.D.click(this, obj);
  2788. }, [_BSDNSstudentDesktopIconInfo[i]])
  2789. }, _frag); //
  2790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2793. }
  2794. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2795. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2796. _content = $$("div", {
  2797. className: "U_MD_D_KO",
  2798. "onmousedown": U.UF.C.closure(function (obj) {
  2799. //防止拖動圖標即打開了桌面應用
  2800. U.MD.D.click(this, obj);
  2801. }, [_cocobizStudentDeskIconInfo[i]]),
  2802. "onclick": U.UF.C.closure(function (obj) {
  2803. //防止拖動圖標即打開了桌面應用
  2804. U.MD.D.click(this, obj);
  2805. }, [_cocobizStudentDeskIconInfo[i]])
  2806. }, _frag); //
  2807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2810. }
  2811. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2812. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2813. _content = $$("div", {
  2814. className: "U_MD_D_KO",
  2815. "onmousedown": U.UF.C.closure(function (obj) {
  2816. //防止拖動圖標即打開了桌面應用
  2817. U.MD.D.click(this, obj);
  2818. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2819. "onclick": U.UF.C.closure(function (obj) {
  2820. //防止拖動圖標即打開了桌面應用
  2821. U.MD.D.click(this, obj);
  2822. }, [_xxzjkyStudentDeskIconInfo[i]])
  2823. }, _frag); //
  2824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2827. }
  2828. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2829. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2830. _content = $$("div", {
  2831. className: "U_MD_D_KO",
  2832. "onmousedown": U.UF.C.closure(function (obj) {
  2833. //防止拖動圖標即打開了桌面應用
  2834. U.MD.D.click(this, obj);
  2835. }, [_studentDesktopIconInfo[i]]),
  2836. "onclick": U.UF.C.closure(function (obj) {
  2837. //防止拖動圖標即打開了桌面應用
  2838. U.MD.D.click(this, obj);
  2839. }, [_studentDesktopIconInfo[i]])
  2840. }, _frag); //
  2841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2844. }
  2845. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2846. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  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. }, [_tcStudentDeskIconInfo[i]]),
  2853. "onclick": U.UF.C.closure(function (obj) {
  2854. //防止拖動圖標即打開了桌面應用
  2855. U.MD.D.click(this, obj);
  2856. }, [_tcStudentDeskIconInfo[i]])
  2857. }, _frag); //
  2858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2861. }
  2862. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2863. for (i = 0; i < _szscStudentDeskIconInfo.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. }, [_szscStudentDeskIconInfo[i]]),
  2870. "onclick": U.UF.C.closure(function (obj) {
  2871. //防止拖動圖標即打開了桌面應用
  2872. U.MD.D.click(this, obj);
  2873. }, [_szscStudentDeskIconInfo[i]])
  2874. }, _frag); //
  2875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2878. }
  2879. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2880. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2881. _content = $$("div", {
  2882. className: "U_MD_D_KO",
  2883. "onmousedown": U.UF.C.closure(function (obj) {
  2884. //防止拖動圖標即打開了桌面應用
  2885. U.MD.D.click(this, obj);
  2886. }, [_studentDesktopIconInfo3[i]]),
  2887. "onclick": U.UF.C.closure(function (obj) {
  2888. //防止拖動圖標即打開了桌面應用
  2889. U.MD.D.click(this, obj);
  2890. }, [_studentDesktopIconInfo3[i]])
  2891. }, _frag); //
  2892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2895. }
  2896. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2897. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2898. _content = $$("div", {
  2899. className: "U_MD_D_KO",
  2900. "onmousedown": U.UF.C.closure(function (obj) {
  2901. //防止拖動圖標即打開了桌面應用
  2902. U.MD.D.click(this, obj);
  2903. }, [_studentDesktopIconInfo2[i]]),
  2904. "onclick": U.UF.C.closure(function (obj) {
  2905. //防止拖動圖標即打開了桌面應用
  2906. U.MD.D.click(this, obj);
  2907. }, [_studentDesktopIconInfo2[i]])
  2908. }, _frag); //
  2909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2912. }
  2913. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2914. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2915. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2916. continue
  2917. }
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖動圖標即打開了桌面應用
  2922. U.MD.D.click(this, obj);
  2923. }, [_wanketeacherDesktopIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖動圖標即打開了桌面應用
  2926. U.MD.D.click(this, obj);
  2927. }, [_wanketeacherDesktopIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2934. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖動圖標即打開了桌面應用
  2939. U.MD.D.click(this, obj);
  2940. }, [_wankeAdminDesktopIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖動圖標即打開了桌面應用
  2943. U.MD.D.click(this, obj);
  2944. }, [_wankeAdminDesktopIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2951. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2952. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2953. continue
  2954. }
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖動圖標即打開了桌面應用
  2959. U.MD.D.click(this, obj);
  2960. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖動圖標即打開了桌面應用
  2963. U.MD.D.click(this, obj);
  2964. }, [_scnuaiTeacherDeskIconInfo[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2969. }
  2970. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2971. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2972. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2973. continue
  2974. }
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖動圖標即打開了桌面應用
  2979. U.MD.D.click(this, obj);
  2980. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖動圖標即打開了桌面應用
  2983. U.MD.D.click(this, obj);
  2984. }, [_BSDNSteacherDesktopIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2991. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖動圖標即打開了桌面應用
  2996. U.MD.D.click(this, obj);
  2997. }, [_scnuaiAdminDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖動圖標即打開了桌面應用
  3000. U.MD.D.click(this, obj);
  3001. }, [_scnuaiAdminDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3008. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3009. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3010. continue
  3011. }
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖動圖標即打開了桌面應用
  3016. U.MD.D.click(this, obj);
  3017. }, [_jccssylTeacherDeskIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖動圖標即打開了桌面應用
  3020. U.MD.D.click(this, obj);
  3021. }, [_jccssylTeacherDeskIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3028. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3029. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3030. continue
  3031. }
  3032. _content = $$("div", {
  3033. className: "U_MD_D_KO",
  3034. "onmousedown": U.UF.C.closure(function (obj) {
  3035. //防止拖動圖標即打開了桌面應用
  3036. U.MD.D.click(this, obj);
  3037. }, [_caleTeacherDeskIconInfo[i]]),
  3038. "onclick": U.UF.C.closure(function (obj) {
  3039. //防止拖動圖標即打開了桌面應用
  3040. U.MD.D.click(this, obj);
  3041. }, [_caleTeacherDeskIconInfo[i]])
  3042. }, _frag); //
  3043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3046. }
  3047. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3048. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3049. _content = $$("div", {
  3050. className: "U_MD_D_KO",
  3051. "onmousedown": U.UF.C.closure(function (obj) {
  3052. //防止拖動圖標即打開了桌面應用
  3053. U.MD.D.click(this, obj);
  3054. }, [_tpcOrganizerDeskIconInfo[i]]),
  3055. "onclick": U.UF.C.closure(function (obj) {
  3056. //防止拖動圖標即打開了桌面應用
  3057. U.MD.D.click(this, obj);
  3058. }, [_tpcOrganizerDeskIconInfo[i]])
  3059. }, _frag); //
  3060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3063. }
  3064. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3065. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3066. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3067. continue
  3068. }
  3069. _content = $$("div", {
  3070. className: "U_MD_D_KO",
  3071. "onmousedown": U.UF.C.closure(function (obj) {
  3072. //防止拖動圖標即打開了桌面應用
  3073. U.MD.D.click(this, obj);
  3074. }, [_tpcTeacherDeskIconInfo[i]]),
  3075. "onclick": U.UF.C.closure(function (obj) {
  3076. //防止拖動圖標即打開了桌面應用
  3077. U.MD.D.click(this, obj);
  3078. }, [_tpcTeacherDeskIconInfo[i]])
  3079. }, _frag); //
  3080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3083. }
  3084. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3085. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3086. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3087. continue
  3088. }
  3089. _content = $$("div", {
  3090. className: "U_MD_D_KO",
  3091. "onmousedown": U.UF.C.closure(function (obj) {
  3092. //防止拖動圖標即打開了桌面應用
  3093. U.MD.D.click(this, obj);
  3094. }, [_teacherDesktopIconInfo2[i]]),
  3095. "onclick": U.UF.C.closure(function (obj) {
  3096. //防止拖動圖標即打開了桌面應用
  3097. U.MD.D.click(this, obj);
  3098. }, [_teacherDesktopIconInfo2[i]])
  3099. }, _frag); //
  3100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3103. }
  3104. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3105. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3106. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3107. continue
  3108. }
  3109. _content = $$("div", {
  3110. className: "U_MD_D_KO",
  3111. "onmousedown": U.UF.C.closure(function (obj) {
  3112. //防止拖動圖標即打開了桌面應用
  3113. U.MD.D.click(this, obj);
  3114. }, [_thuioeTeacherDeskIconInfo[i]]),
  3115. "onclick": U.UF.C.closure(function (obj) {
  3116. //防止拖動圖標即打開了桌面應用
  3117. U.MD.D.click(this, obj);
  3118. }, [_thuioeTeacherDeskIconInfo[i]])
  3119. }, _frag); //
  3120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3123. }
  3124. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3125. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3126. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3127. continue
  3128. }
  3129. _content = $$("div", {
  3130. className: "U_MD_D_KO",
  3131. "onmousedown": U.UF.C.closure(function (obj) {
  3132. //防止拖動圖標即打開了桌面應用
  3133. U.MD.D.click(this, obj);
  3134. }, [_lotechTeacherDeskIconInfo[i]]),
  3135. "onclick": U.UF.C.closure(function (obj) {
  3136. //防止拖動圖標即打開了桌面應用
  3137. U.MD.D.click(this, obj);
  3138. }, [_lotechTeacherDeskIconInfo[i]])
  3139. }, _frag); //
  3140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3143. }//
  3144. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3145. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3146. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3147. continue
  3148. }
  3149. _content = $$("div", {
  3150. className: "U_MD_D_KO",
  3151. "onmousedown": U.UF.C.closure(function (obj) {
  3152. //防止拖動圖標即打開了桌面應用
  3153. U.MD.D.click(this, obj);
  3154. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3155. "onclick": U.UF.C.closure(function (obj) {
  3156. //防止拖動圖標即打開了桌面應用
  3157. U.MD.D.click(this, obj);
  3158. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3159. }, _frag); //
  3160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3163. }
  3164. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3165. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3166. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3167. continue
  3168. }
  3169. _content = $$("div", {
  3170. className: "U_MD_D_KO",
  3171. "onmousedown": U.UF.C.closure(function (obj) {
  3172. //防止拖動圖標即打開了桌面應用
  3173. U.MD.D.click(this, obj);
  3174. }, [_siesTeacherDeskIconInfo[i]]),
  3175. "onclick": U.UF.C.closure(function (obj) {
  3176. //防止拖動圖標即打開了桌面應用
  3177. U.MD.D.click(this, obj);
  3178. }, [_siesTeacherDeskIconInfo[i]])
  3179. }, _frag); //
  3180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3183. }
  3184. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3185. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3186. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3187. continue
  3188. }
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖動圖標即打開了桌面應用
  3193. U.MD.D.click(this, obj);
  3194. }, [_guzmsTeacherDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖動圖標即打開了桌面應用
  3197. U.MD.D.click(this, obj);
  3198. }, [_guzmsTeacherDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3205. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3206. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3207. continue
  3208. }
  3209. _content = $$("div", {
  3210. className: "U_MD_D_KO",
  3211. "onmousedown": U.UF.C.closure(function (obj) {
  3212. //防止拖動圖標即打開了桌面應用
  3213. U.MD.D.click(this, obj);
  3214. }, [_longhuaTeacherDeskIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖動圖標即打開了桌面應用
  3217. U.MD.D.click(this, obj);
  3218. }, [_longhuaTeacherDeskIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3225. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3226. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3227. continue
  3228. }
  3229. _content = $$("div", {
  3230. className: "U_MD_D_KO",
  3231. "onmousedown": U.UF.C.closure(function (obj) {
  3232. //防止拖動圖標即打開了桌面應用
  3233. U.MD.D.click(this, obj);
  3234. }, [_ytyTeacherDeskIconInfo[i]]),
  3235. "onclick": U.UF.C.closure(function (obj) {
  3236. //防止拖動圖標即打開了桌面應用
  3237. U.MD.D.click(this, obj);
  3238. }, [_ytyTeacherDeskIconInfo[i]])
  3239. }, _frag); //
  3240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3243. }
  3244. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3245. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3246. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3247. continue
  3248. }
  3249. _content = $$("div", {
  3250. className: "U_MD_D_KO",
  3251. "onmousedown": U.UF.C.closure(function (obj) {
  3252. //防止拖動圖標即打開了桌面應用
  3253. U.MD.D.click(this, obj);
  3254. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3255. "onclick": U.UF.C.closure(function (obj) {
  3256. //防止拖動圖標即打開了桌面應用
  3257. U.MD.D.click(this, obj);
  3258. }, [_yunhaiTeacherDeskIconInfo[i]])
  3259. }, _frag); //
  3260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3263. } //_hkStudentDeskIconInfo
  3264. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3265. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3266. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3267. continue
  3268. }
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖動圖標即打開了桌面應用
  3273. U.MD.D.click(this, obj);
  3274. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖動圖標即打開了桌面應用
  3277. U.MD.D.click(this, obj);
  3278. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3283. }
  3284. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3285. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖動圖標即打開了桌面應用
  3293. U.MD.D.click(this, obj);
  3294. }, [_hkTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖動圖標即打開了桌面應用
  3297. U.MD.D.click(this, obj);
  3298. }, [_hkTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3305. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖動圖標即打開了桌面應用
  3313. U.MD.D.click(this, obj);
  3314. }, [_hkaceTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖動圖標即打開了桌面應用
  3317. U.MD.D.click(this, obj);
  3318. }, [_hkaceTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3325. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖動圖標即打開了桌面應用
  3333. U.MD.D.click(this, obj);
  3334. }, [_cocobizTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖動圖標即打開了桌面應用
  3337. U.MD.D.click(this, obj);
  3338. }, [_cocobizTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3345. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖動圖標即打開了桌面應用
  3353. U.MD.D.click(this, obj);
  3354. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖動圖標即打開了桌面應用
  3357. U.MD.D.click(this, obj);
  3358. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3365. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3366. _content = $$("div", {
  3367. className: "U_MD_D_KO",
  3368. "onmousedown": U.UF.C.closure(function (obj) {
  3369. //防止拖動圖標即打開了桌面應用
  3370. U.MD.D.click(this, obj);
  3371. }, [_gdjgAdminDeskIconInfo[i]]),
  3372. "onclick": U.UF.C.closure(function (obj) {
  3373. //防止拖動圖標即打開了桌面應用
  3374. U.MD.D.click(this, obj);
  3375. }, [_gdjgAdminDeskIconInfo[i]])
  3376. }, _frag); //
  3377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3380. }
  3381. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3382. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3383. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3384. continue
  3385. }
  3386. _content = $$("div", {
  3387. className: "U_MD_D_KO",
  3388. "onmousedown": U.UF.C.closure(function (obj) {
  3389. //防止拖動圖標即打開了桌面應用
  3390. U.MD.D.click(this, obj);
  3391. }, [_gdjgTeacherDeskIconInfo[i]]),
  3392. "onclick": U.UF.C.closure(function (obj) {
  3393. //防止拖動圖標即打開了桌面應用
  3394. U.MD.D.click(this, obj);
  3395. }, [_gdjgTeacherDeskIconInfo[i]])
  3396. }, _frag); //
  3397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3400. }
  3401. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3402. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3403. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3404. continue
  3405. }
  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. }, [_szherTeacherDeskIconInfo[i]]),
  3412. "onclick": U.UF.C.closure(function (obj) {
  3413. //防止拖動圖標即打開了桌面應用
  3414. U.MD.D.click(this, obj);
  3415. }, [_szherTeacherDeskIconInfo[i]])
  3416. }, _frag); //
  3417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3420. }
  3421. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3422. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3423. _content = $$("div", {
  3424. className: "U_MD_D_KO",
  3425. "onmousedown": U.UF.C.closure(function (obj) {
  3426. //防止拖動圖標即打開了桌面應用
  3427. U.MD.D.click(this, obj);
  3428. }, [_heyuannAdminDeskIconInfo[i]]),
  3429. "onclick": U.UF.C.closure(function (obj) {
  3430. //防止拖動圖標即打開了桌面應用
  3431. U.MD.D.click(this, obj);
  3432. }, [_heyuannAdminDeskIconInfo[i]])
  3433. }, _frag); //
  3434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3437. }
  3438. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3439. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3440. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3441. continue
  3442. }
  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. }, [_heyuanTeacherDeskIconInfo[i]]),
  3449. "onclick": U.UF.C.closure(function (obj) {
  3450. //防止拖動圖標即打開了桌面應用
  3451. U.MD.D.click(this, obj);
  3452. }, [_heyuanTeacherDeskIconInfo[i]])
  3453. }, _frag); //
  3454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3457. } //
  3458. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3459. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3460. _content = $$("div", {
  3461. className: "U_MD_D_KO",
  3462. "onmousedown": U.UF.C.closure(function (obj) {
  3463. //防止拖動圖標即打開了桌面應用
  3464. U.MD.D.click(this, obj);
  3465. }, [_dseiAdminDeskIconInfo[i]]),
  3466. "onclick": U.UF.C.closure(function (obj) {
  3467. //防止拖動圖標即打開了桌面應用
  3468. U.MD.D.click(this, obj);
  3469. }, [_dseiAdminDeskIconInfo[i]])
  3470. }, _frag); //
  3471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3474. }
  3475. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3476. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3477. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3478. continue
  3479. }
  3480. _content = $$("div", {
  3481. className: "U_MD_D_KO",
  3482. "onmousedown": U.UF.C.closure(function (obj) {
  3483. //防止拖動圖標即打開了桌面應用
  3484. U.MD.D.click(this, obj);
  3485. }, [_dseiTeacherDeskIconInfo[i]]),
  3486. "onclick": U.UF.C.closure(function (obj) {
  3487. //防止拖動圖標即打開了桌面應用
  3488. U.MD.D.click(this, obj);
  3489. }, [_dseiTeacherDeskIconInfo[i]])
  3490. }, _frag); //
  3491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3494. } //
  3495. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3496. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖動圖標即打開了桌面應用
  3501. U.MD.D.click(this, obj);
  3502. }, [_chjyjAdminDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖動圖標即打開了桌面應用
  3505. U.MD.D.click(this, obj);
  3506. }, [_chjyjAdminDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3511. }//
  3512. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3513. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3514. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3515. continue
  3516. }
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖動圖標即打開了桌面應用
  3521. U.MD.D.click(this, obj);
  3522. }, [_chjyjTeacherDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖動圖標即打開了桌面應用
  3525. U.MD.D.click(this, obj);
  3526. }, [_chjyjTeacherDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3531. }
  3532. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3533. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖動圖標即打開了桌面應用
  3538. U.MD.D.click(this, obj);
  3539. }, [_szjkyAdminDeskIconInfo[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖動圖標即打開了桌面應用
  3542. U.MD.D.click(this, obj);
  3543. }, [_szjkyAdminDeskIconInfo[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3548. }//
  3549. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3550. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3551. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3552. continue
  3553. }
  3554. _content = $$("div", {
  3555. className: "U_MD_D_KO",
  3556. "onmousedown": U.UF.C.closure(function (obj) {
  3557. //防止拖動圖標即打開了桌面應用
  3558. U.MD.D.click(this, obj);
  3559. }, [_szjkyTeacherDeskIconInfo[i]]),
  3560. "onclick": U.UF.C.closure(function (obj) {
  3561. //防止拖動圖標即打開了桌面應用
  3562. U.MD.D.click(this, obj);
  3563. }, [_szjkyTeacherDeskIconInfo[i]])
  3564. }, _frag); //
  3565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3568. }
  3569. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3570. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3571. _content = $$("div", {
  3572. className: "U_MD_D_KO",
  3573. "onmousedown": U.UF.C.closure(function (obj) {
  3574. //防止拖動圖標即打開了桌面應用
  3575. U.MD.D.click(this, obj);
  3576. }, [_x020201AdminDeskIconInfo[i]]),
  3577. "onclick": U.UF.C.closure(function (obj) {
  3578. //防止拖動圖標即打開了桌面應用
  3579. U.MD.D.click(this, obj);
  3580. }, [_x020201AdminDeskIconInfo[i]])
  3581. }, _frag); //
  3582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3585. }//
  3586. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3587. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3588. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3589. continue
  3590. }
  3591. _content = $$("div", {
  3592. className: "U_MD_D_KO",
  3593. "onmousedown": U.UF.C.closure(function (obj) {
  3594. //防止拖動圖標即打開了桌面應用
  3595. U.MD.D.click(this, obj);
  3596. }, [_x020201TeacherDeskIconInfo[i]]),
  3597. "onclick": U.UF.C.closure(function (obj) {
  3598. //防止拖動圖標即打開了桌面應用
  3599. U.MD.D.click(this, obj);
  3600. }, [_x020201TeacherDeskIconInfo[i]])
  3601. }, _frag); //
  3602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3605. }
  3606. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3607. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖動圖標即打開了桌面應用
  3612. U.MD.D.click(this, obj);
  3613. }, [_SCNUETAdminDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖動圖標即打開了桌面應用
  3616. U.MD.D.click(this, obj);
  3617. }, [_SCNUETAdminDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3622. }//
  3623. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3624. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3625. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖動圖標即打開了桌面應用
  3632. U.MD.D.click(this, obj);
  3633. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖動圖標即打開了桌面應用
  3636. U.MD.D.click(this, obj);
  3637. }, [_SCNUETTeacherDeskIconInfo[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3644. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3645. _content = $$("div", {
  3646. className: "U_MD_D_KO",
  3647. "onmousedown": U.UF.C.closure(function (obj) {
  3648. //防止拖動圖標即打開了桌面應用
  3649. U.MD.D.click(this, obj);
  3650. }, [_futianAdminDeskIconInfo[i]]),
  3651. "onclick": U.UF.C.closure(function (obj) {
  3652. //防止拖動圖標即打開了桌面應用
  3653. U.MD.D.click(this, obj);
  3654. }, [_futianAdminDeskIconInfo[i]])
  3655. }, _frag); //
  3656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3659. }
  3660. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3661. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3662. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3663. continue
  3664. }
  3665. _content = $$("div", {
  3666. className: "U_MD_D_KO",
  3667. "onmousedown": U.UF.C.closure(function (obj) {
  3668. //防止拖動圖標即打開了桌面應用
  3669. U.MD.D.click(this, obj);
  3670. }, [_futianTeacherDeskIconInfo[i]]),
  3671. "onclick": U.UF.C.closure(function (obj) {
  3672. //防止拖動圖標即打開了桌面應用
  3673. U.MD.D.click(this, obj);
  3674. }, [_futianTeacherDeskIconInfo[i]])
  3675. }, _frag); //
  3676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3679. }
  3680. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3681. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3682. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3683. continue
  3684. }
  3685. _content = $$("div", {
  3686. className: "U_MD_D_KO",
  3687. "onmousedown": U.UF.C.closure(function (obj) {
  3688. //防止拖動圖標即打開了桌面應用
  3689. U.MD.D.click(this, obj);
  3690. }, [_MingdeTeacherDeskIcon[i]]),
  3691. "onclick": U.UF.C.closure(function (obj) {
  3692. //防止拖動圖標即打開了桌面應用
  3693. U.MD.D.click(this, obj);
  3694. }, [_MingdeTeacherDeskIcon[i]])
  3695. }, _frag); //
  3696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3699. }
  3700. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3701. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3702. _content = $$("div", {
  3703. className: "U_MD_D_KO",
  3704. "onmousedown": U.UF.C.closure(function (obj) {
  3705. //防止拖動圖標即打開了桌面應用
  3706. U.MD.D.click(this, obj);
  3707. }, [_lhsAdminDesktopIconInfo[i]]),
  3708. "onclick": U.UF.C.closure(function (obj) {
  3709. //防止拖動圖標即打開了桌面應用
  3710. U.MD.D.click(this, obj);
  3711. }, [_lhsAdminDesktopIconInfo[i]])
  3712. }, _frag); //
  3713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3716. }
  3717. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3718. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3719. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3720. continue
  3721. }
  3722. _content = $$("div", {
  3723. className: "U_MD_D_KO",
  3724. "onmousedown": U.UF.C.closure(function (obj) {
  3725. //防止拖動圖標即打開了桌面應用
  3726. U.MD.D.click(this, obj);
  3727. }, [_lhsteacherDesktopIconInfo[i]]),
  3728. "onclick": U.UF.C.closure(function (obj) {
  3729. //防止拖動圖標即打開了桌面應用
  3730. U.MD.D.click(this, obj);
  3731. }, [_lhsteacherDesktopIconInfo[i]])
  3732. }, _frag); //
  3733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3736. }
  3737. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3738. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3739. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3740. continue
  3741. }
  3742. _content = $$("div", {
  3743. className: "U_MD_D_KO",
  3744. "onmousedown": U.UF.C.closure(function (obj) {
  3745. //防止拖動圖標即打開了桌面應用
  3746. U.MD.D.click(this, obj);
  3747. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3748. "onclick": U.UF.C.closure(function (obj) {
  3749. //防止拖動圖標即打開了桌面應用
  3750. U.MD.D.click(this, obj);
  3751. }, [_zhoujiateacherDesktopIconInfo[i]])
  3752. }, _frag); //
  3753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3756. }
  3757. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3758. for (i = 0; i < _hanDeskIcon.length; i++) {
  3759. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3760. continue
  3761. }
  3762. _content = $$("div", {
  3763. className: "U_MD_D_KO",
  3764. "onmousedown": U.UF.C.closure(function (obj) {
  3765. //防止拖動圖標即打開了桌面應用
  3766. U.MD.D.click(this, obj);
  3767. }, [_hanDeskIcon[i]]),
  3768. "onclick": U.UF.C.closure(function (obj) {
  3769. //防止拖動圖標即打開了桌面應用
  3770. U.MD.D.click(this, obj);
  3771. }, [_hanDeskIcon[i]])
  3772. }, _frag); //
  3773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3776. }
  3777. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3778. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3779. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3780. continue
  3781. }
  3782. _content = $$("div", {
  3783. className: "U_MD_D_KO",
  3784. "onmousedown": U.UF.C.closure(function (obj) {
  3785. //防止拖動圖標即打開了桌面應用
  3786. U.MD.D.click(this, obj);
  3787. }, [_orgStemDeskIcon[i]]),
  3788. "onclick": U.UF.C.closure(function (obj) {
  3789. //防止拖動圖標即打開了桌面應用
  3790. U.MD.D.click(this, obj);
  3791. }, [_orgStemDeskIcon[i]])
  3792. }, _frag); //
  3793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3796. }
  3797. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3798. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3799. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3800. continue
  3801. }
  3802. _content = $$("div", {
  3803. className: "U_MD_D_KO",
  3804. "onmousedown": U.UF.C.closure(function (obj) {
  3805. //防止拖動圖標即打開了桌面應用
  3806. U.MD.D.click(this, obj);
  3807. }, [_szulsDeskIcon[i]]),
  3808. "onclick": U.UF.C.closure(function (obj) {
  3809. //防止拖動圖標即打開了桌面應用
  3810. U.MD.D.click(this, obj);
  3811. }, [_szulsDeskIcon[i]])
  3812. }, _frag); //
  3813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3816. }
  3817. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3818. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3819. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3820. continue
  3821. }
  3822. _content = $$("div", {
  3823. className: "U_MD_D_KO",
  3824. "onmousedown": U.UF.C.closure(function (obj) {
  3825. //防止拖動圖標即打開了桌面應用
  3826. U.MD.D.click(this, obj);
  3827. }, [_orgDesktopIconInfo[i]]),
  3828. "onclick": U.UF.C.closure(function (obj) {
  3829. //防止拖動圖標即打開了桌面應用
  3830. U.MD.D.click(this, obj);
  3831. }, [_orgDesktopIconInfo[i]])
  3832. }, _frag); //
  3833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3836. }
  3837. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3838. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3839. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3840. continue
  3841. }
  3842. _content = $$("div", {
  3843. className: "U_MD_D_KO",
  3844. "onmousedown": U.UF.C.closure(function (obj) {
  3845. //防止拖動圖標即打開了桌面應用
  3846. U.MD.D.click(this, obj);
  3847. }, [_schoolDesktopIconInfo[i]]),
  3848. "onclick": U.UF.C.closure(function (obj) {
  3849. //防止拖動圖標即打開了桌面應用
  3850. U.MD.D.click(this, obj);
  3851. }, [_schoolDesktopIconInfo[i]])
  3852. }, _frag); //
  3853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3856. }
  3857. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3858. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3859. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3860. continue
  3861. }
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖動圖標即打開了桌面應用
  3866. U.MD.D.click(this, obj);
  3867. }, [_GMteacherDesktopIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖動圖標即打開了桌面應用
  3870. U.MD.D.click(this, obj);
  3871. }, [_GMteacherDesktopIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3878. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3879. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖動圖標即打開了桌面應用
  3886. U.MD.D.click(this, obj);
  3887. }, [_SONGteacherDesktopIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖動圖標即打開了桌面應用
  3890. U.MD.D.click(this, obj);
  3891. }, [_SONGteacherDesktopIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3898. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3899. _content = $$("div", {
  3900. className: "U_MD_D_KO",
  3901. "onmousedown": U.UF.C.closure(function (obj) {
  3902. //防止拖動圖標即打開了桌面應用
  3903. U.MD.D.click(this, obj);
  3904. }, [_GMstudentDesktopIconInfo[i]]),
  3905. "onclick": U.UF.C.closure(function (obj) {
  3906. //防止拖動圖標即打開了桌面應用
  3907. U.MD.D.click(this, obj);
  3908. }, [_GMstudentDesktopIconInfo[i]])
  3909. }, _frag); //
  3910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3915. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3916. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3917. continue
  3918. }
  3919. _content = $$("div", {
  3920. className: "U_MD_D_KO",
  3921. "onmousedown": U.UF.C.closure(function (obj) {
  3922. //防止拖動圖標即打開了桌面應用
  3923. U.MD.D.click(this, obj);
  3924. }, [_tcTeacherDeskIconInfo[i]]),
  3925. "onclick": U.UF.C.closure(function (obj) {
  3926. //防止拖動圖標即打開了桌面應用
  3927. U.MD.D.click(this, obj);
  3928. }, [_tcTeacherDeskIconInfo[i]])
  3929. }, _frag); //
  3930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3933. }
  3934. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3935. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3936. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3937. continue
  3938. }
  3939. _content = $$("div", {
  3940. className: "U_MD_D_KO",
  3941. "onmousedown": U.UF.C.closure(function (obj) {
  3942. //防止拖動圖標即打開了桌面應用
  3943. U.MD.D.click(this, obj);
  3944. }, [_tcOrganizerDeskIconInfo[i]]),
  3945. "onclick": U.UF.C.closure(function (obj) {
  3946. //防止拖動圖標即打開了桌面應用
  3947. U.MD.D.click(this, obj);
  3948. }, [_tcOrganizerDeskIconInfo[i]])
  3949. }, _frag); //
  3950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3953. }
  3954. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3955. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3956. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3957. continue
  3958. }
  3959. _content = $$("div", {
  3960. className: "U_MD_D_KO",
  3961. "onmousedown": U.UF.C.closure(function (obj) {
  3962. //防止拖動圖標即打開了桌面應用
  3963. U.MD.D.click(this, obj);
  3964. }, [_szscTeacherDeskIconInfo[i]]),
  3965. "onclick": U.UF.C.closure(function (obj) {
  3966. //防止拖動圖標即打開了桌面應用
  3967. U.MD.D.click(this, obj);
  3968. }, [_szscTeacherDeskIconInfo[i]])
  3969. }, _frag); //
  3970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3973. }
  3974. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3975. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3976. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3977. continue
  3978. }
  3979. _content = $$("div", {
  3980. className: "U_MD_D_KO",
  3981. "onmousedown": U.UF.C.closure(function (obj) {
  3982. //防止拖動圖標即打開了桌面應用
  3983. U.MD.D.click(this, obj);
  3984. }, [_szscOrganizerDeskIconInfo[i]]),
  3985. "onclick": U.UF.C.closure(function (obj) {
  3986. //防止拖動圖標即打開了桌面應用
  3987. U.MD.D.click(this, obj);
  3988. }, [_szscOrganizerDeskIconInfo[i]])
  3989. }, _frag); //
  3990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3993. }
  3994. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3995. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3996. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3997. continue
  3998. }
  3999. _content = $$("div", {
  4000. className: "U_MD_D_KO",
  4001. "onmousedown": U.UF.C.closure(function (obj) {
  4002. //防止拖動圖標即打開了桌面應用
  4003. U.MD.D.click(this, obj);
  4004. }, [_nsfxTeacherDeskIconInfo[i]]),
  4005. "onclick": U.UF.C.closure(function (obj) {
  4006. //防止拖動圖標即打開了桌面應用
  4007. U.MD.D.click(this, obj);
  4008. }, [_nsfxTeacherDeskIconInfo[i]])
  4009. }, _frag); //
  4010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4013. }
  4014. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4015. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4016. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4017. continue
  4018. }
  4019. _content = $$("div", {
  4020. className: "U_MD_D_KO",
  4021. "onmousedown": U.UF.C.closure(function (obj) {
  4022. //防止拖動圖標即打開了桌面應用
  4023. U.MD.D.click(this, obj);
  4024. }, [_stiaTeacherDeskIconInfo[i]]),
  4025. "onclick": U.UF.C.closure(function (obj) {
  4026. //防止拖動圖標即打開了桌面應用
  4027. U.MD.D.click(this, obj);
  4028. }, [_stiaTeacherDeskIconInfo[i]])
  4029. }, _frag); //
  4030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4033. }
  4034. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4035. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4036. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4037. continue
  4038. }
  4039. _content = $$("div", {
  4040. className: "U_MD_D_KO",
  4041. "onmousedown": U.UF.C.closure(function (obj) {
  4042. //防止拖動圖標即打開了桌面應用
  4043. U.MD.D.click(this, obj);
  4044. }, [_szdjgTeacherDeskIconInfo[i]]),
  4045. "onclick": U.UF.C.closure(function (obj) {
  4046. //防止拖動圖標即打開了桌面應用
  4047. U.MD.D.click(this, obj);
  4048. }, [_szdjgTeacherDeskIconInfo[i]])
  4049. }, _frag); //
  4050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4053. }
  4054. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4055. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4056. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4057. continue
  4058. }
  4059. _content = $$("div", {
  4060. className: "U_MD_D_KO",
  4061. "onmousedown": U.UF.C.closure(function (obj) {
  4062. //防止拖動圖標即打開了桌面應用
  4063. U.MD.D.click(this, obj);
  4064. }, [_x010607TeacherDeskIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖動圖標即打開了桌面應用
  4067. U.MD.D.click(this, obj);
  4068. }, [_x010607TeacherDeskIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4075. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4076. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4077. continue
  4078. }
  4079. _content = $$("div", {
  4080. className: "U_MD_D_KO",
  4081. "onmousedown": U.UF.C.closure(function (obj) {
  4082. //防止拖動圖標即打開了桌面應用
  4083. U.MD.D.click(this, obj);
  4084. }, [_xhlyTeacherDeskIconInfo[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖動圖標即打開了桌面應用
  4087. U.MD.D.click(this, obj);
  4088. }, [_xhlyTeacherDeskIconInfo[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4093. }
  4094. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4095. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4096. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4097. continue
  4098. }
  4099. _content = $$("div", {
  4100. className: "U_MD_D_KO",
  4101. "onmousedown": U.UF.C.closure(function (obj) {
  4102. //防止拖動圖標即打開了桌面應用
  4103. U.MD.D.click(this, obj);
  4104. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4105. "onclick": U.UF.C.closure(function (obj) {
  4106. //防止拖動圖標即打開了桌面應用
  4107. U.MD.D.click(this, obj);
  4108. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4109. }, _frag); //
  4110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4113. }
  4114. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4115. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4116. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4117. continue
  4118. }
  4119. _content = $$("div", {
  4120. className: "U_MD_D_KO",
  4121. "onmousedown": U.UF.C.closure(function (obj) {
  4122. //防止拖動圖標即打開了桌面應用
  4123. U.MD.D.click(this, obj);
  4124. }, [_x010503TeacherDeskIconInfo[i]]),
  4125. "onclick": U.UF.C.closure(function (obj) {
  4126. //防止拖動圖標即打開了桌面應用
  4127. U.MD.D.click(this, obj);
  4128. }, [_x010503TeacherDeskIconInfo[i]])
  4129. }, _frag); //
  4130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4133. }
  4134. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4135. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4136. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4137. continue
  4138. }
  4139. _content = $$("div", {
  4140. className: "U_MD_D_KO",
  4141. "onmousedown": U.UF.C.closure(function (obj) {
  4142. //防止拖動圖標即打開了桌面應用
  4143. U.MD.D.click(this, obj);
  4144. }, [_x010504TeacherDeskIconInfo[i]]),
  4145. "onclick": U.UF.C.closure(function (obj) {
  4146. //防止拖動圖標即打開了桌面應用
  4147. U.MD.D.click(this, obj);
  4148. }, [_x010504TeacherDeskIconInfo[i]])
  4149. }, _frag); //
  4150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4153. }
  4154. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4155. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4156. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4157. continue
  4158. }
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖動圖標即打開了桌面應用
  4163. U.MD.D.click(this, obj);
  4164. }, [_x010204TeacherDeskIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖動圖標即打開了桌面應用
  4167. U.MD.D.click(this, obj);
  4168. }, [_x010204TeacherDeskIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4173. }
  4174. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4175. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4176. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4177. continue
  4178. }
  4179. _content = $$("div", {
  4180. className: "U_MD_D_KO",
  4181. "onmousedown": U.UF.C.closure(function (obj) {
  4182. //防止拖動圖標即打開了桌面應用
  4183. U.MD.D.click(this, obj);
  4184. }, [_x320101TeacherDeskIconInfo[i]]),
  4185. "onclick": U.UF.C.closure(function (obj) {
  4186. //防止拖動圖標即打開了桌面應用
  4187. U.MD.D.click(this, obj);
  4188. }, [_x320101TeacherDeskIconInfo[i]])
  4189. }, _frag); //
  4190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4193. }
  4194. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4195. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4196. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4197. continue
  4198. }
  4199. _content = $$("div", {
  4200. className: "U_MD_D_KO",
  4201. "onmousedown": U.UF.C.closure(function (obj) {
  4202. //防止拖動圖標即打開了桌面應用
  4203. U.MD.D.click(this, obj);
  4204. }, [_trailTeacherDeskIconInfo[i]]),
  4205. "onclick": U.UF.C.closure(function (obj) {
  4206. //防止拖動圖標即打開了桌面應用
  4207. U.MD.D.click(this, obj);
  4208. }, [_trailTeacherDeskIconInfo[i]])
  4209. }, _frag); //
  4210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4213. }
  4214. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4215. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4216. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4217. continue
  4218. }
  4219. _content = $$("div", {
  4220. className: "U_MD_D_KO",
  4221. "onmousedown": U.UF.C.closure(function (obj) {
  4222. //防止拖動圖標即打開了桌面應用
  4223. U.MD.D.click(this, obj);
  4224. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4225. "onclick": U.UF.C.closure(function (obj) {
  4226. //防止拖動圖標即打開了桌面應用
  4227. U.MD.D.click(this, obj);
  4228. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4229. }, _frag); //
  4230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4233. }
  4234. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4235. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4236. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4237. continue
  4238. }
  4239. _content = $$("div", {
  4240. className: "U_MD_D_KO",
  4241. "onmousedown": U.UF.C.closure(function (obj) {
  4242. //防止拖動圖標即打開了桌面應用
  4243. U.MD.D.click(this, obj);
  4244. }, [_szsyTeacherDeskIconInfo[i]]),
  4245. "onclick": U.UF.C.closure(function (obj) {
  4246. //防止拖動圖標即打開了桌面應用
  4247. U.MD.D.click(this, obj);
  4248. }, [_szsyTeacherDeskIconInfo[i]])
  4249. }, _frag); //
  4250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4253. }
  4254. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4255. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4256. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4257. continue
  4258. }
  4259. _content = $$("div", {
  4260. className: "U_MD_D_KO",
  4261. "onmousedown": U.UF.C.closure(function (obj) {
  4262. //防止拖動圖標即打開了桌面應用
  4263. U.MD.D.click(this, obj);
  4264. }, [_x010608TeacherDeskIconInfo[i]]),
  4265. "onclick": U.UF.C.closure(function (obj) {
  4266. //防止拖動圖標即打開了桌面應用
  4267. U.MD.D.click(this, obj);
  4268. }, [_x010608TeacherDeskIconInfo[i]])
  4269. }, _frag); //
  4270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4273. }
  4274. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4275. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4276. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4277. continue
  4278. }
  4279. _content = $$("div", {
  4280. className: "U_MD_D_KO",
  4281. "onmousedown": U.UF.C.closure(function (obj) {
  4282. //防止拖動圖標即打開了桌面應用
  4283. U.MD.D.click(this, obj);
  4284. }, [_x010611TeacherDeskIconInfo[i]]),
  4285. "onclick": U.UF.C.closure(function (obj) {
  4286. //防止拖動圖標即打開了桌面應用
  4287. U.MD.D.click(this, obj);
  4288. }, [_x010611TeacherDeskIconInfo[i]])
  4289. }, _frag); //
  4290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4293. }
  4294. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4295. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4296. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4297. continue
  4298. }
  4299. _content = $$("div", {
  4300. className: "U_MD_D_KO",
  4301. "onmousedown": U.UF.C.closure(function (obj) {
  4302. //防止拖動圖標即打開了桌面應用
  4303. U.MD.D.click(this, obj);
  4304. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4305. "onclick": U.UF.C.closure(function (obj) {
  4306. //防止拖動圖標即打開了桌面應用
  4307. U.MD.D.click(this, obj);
  4308. }, [_tianyuanTeacherDeskIconInfo[i]])
  4309. }, _frag); //
  4310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4313. }
  4314. } else {
  4315. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4316. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4317. continue
  4318. }
  4319. _content = $$("div", {
  4320. className: "U_MD_D_KO",
  4321. "onmousedown": U.UF.C.closure(function (obj) {
  4322. //防止拖動圖標即打開了桌面應用
  4323. U.MD.D.click(this, obj);
  4324. }, [_teacherDesktopIconInfo[i]]),
  4325. "onclick": U.UF.C.closure(function (obj) {
  4326. //防止拖動圖標即打開了桌面應用
  4327. U.MD.D.click(this, obj);
  4328. }, [_teacherDesktopIconInfo[i]])
  4329. }, _frag); //
  4330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4333. }
  4334. }
  4335. } else {
  4336. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4337. _content = $$("div", {
  4338. className: "U_MD_D_KO",
  4339. style: { 'width': '124px', 'height': '145px' },
  4340. "onmousedown": U.UF.C.closure(function (obj) {
  4341. //防止拖動圖標即打開了桌面應用
  4342. U.MD.D.click(this, obj);
  4343. }, [_easyDesktopIconInfo[i]]),
  4344. "onclick": U.UF.C.closure(function (obj) {
  4345. //防止拖動圖標即打開了桌面應用
  4346. U.MD.D.click(this, obj);
  4347. }, [_easyDesktopIconInfo[i]])
  4348. }, _frag); //
  4349. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4352. }
  4353. }
  4354. if (type == 1) {
  4355. //加載好後給圖標定位
  4356. U.MD.D.iconPostion($(_frag).Child());
  4357. } else {
  4358. //加載好後給圖標定位
  4359. U.MD.D.iconPostion2($(_frag).Child());
  4360. }
  4361. //把圖標加載到頁面
  4362. el.appendChild(_frag);
  4363. }
  4364. /**
  4365. * 顯示任務欄
  4366. *
  4367. * @param {element} 桌面元素
  4368. */
  4369. U.MD.D.I.displayTaskbar = function (el) {
  4370. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4371. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4372. //任務欄位置變化
  4373. U.selectEl(el).css({ "bottom": "0px" });
  4374. //桌面位置變話
  4375. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4376. }
  4377. }
  4378. //#region 桌面圖標拖動邏輯
  4379. /**
  4380. * 桌面排列圖標
  4381. *
  4382. * @param {element} 桌面元素
  4383. * @param {object} 上下相距的距離
  4384. * @param {object} 左右相距的距離
  4385. * @return {object} 命名空間
  4386. */
  4387. U.MD.D.iconPostion = function (childs, top, left) {
  4388. var i; //用於循環處理
  4389. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4390. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4391. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4392. for (i = 0; i < childs.length; i++) {
  4393. //如果豎排top超過了範圍處理
  4394. if (top + 95 > US.height - 10) {
  4395. //left超過了頁面範圍處理,則向上重疊打印處理
  4396. if ((left + 180) > US.width) {
  4397. top -= 110;
  4398. left -= 90;
  4399. }
  4400. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4401. else {
  4402. left += 90;
  4403. top = 15;
  4404. };
  4405. }
  4406. //給圖標的位置賦值
  4407. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4408. if (i < childs.length - 1) {
  4409. //頁面圖標每次向下加95
  4410. top += 95;
  4411. }
  4412. }
  4413. //返回最後調用的圖標的位置
  4414. return [top, left];
  4415. }
  4416. /**
  4417. * 桌面排列圖標
  4418. *
  4419. * @param {element} 桌面元素
  4420. * @param {object} 上下相距的距離
  4421. * @param {object} 左右相距的距離
  4422. * @return {object} 命名空間
  4423. */
  4424. U.MD.D.iconPostion2 = function (childs, top, left) {
  4425. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4426. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4427. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4428. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4429. for (i = 0; i < childs.length; i++) {
  4430. //如果豎排top超過了範圍處理
  4431. if (left + 150 > US.width - 10) {
  4432. //left超過了頁面範圍處理,則向上重疊打印處理
  4433. if ((top + 180) > US.Height) {
  4434. top -= 150;
  4435. left -= 150;
  4436. }
  4437. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4438. else {
  4439. top += 150;
  4440. left = ol;
  4441. };
  4442. }
  4443. //給圖標的位置賦值
  4444. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4445. if (i < childs.length - 1) {
  4446. //頁面圖標每次向下加95
  4447. left += 150;
  4448. }
  4449. }
  4450. //返回最後調用的圖標的位置
  4451. return [top, left];
  4452. }
  4453. /**
  4454. * 桌面點擊事件邏輯
  4455. *
  4456. * @param {element} 桌面元素
  4457. * @param {object} 上下相距的距離
  4458. * @param {object} 左右相距的距離
  4459. * @return {object} 命名空間
  4460. */
  4461. U.MD.D.click = function (el, obj) {
  4462. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4463. var _userinfo = US.userInfo;
  4464. U.UF.EV.stopBubble(); //阻止向上冒泡
  4465. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4466. if (_buttonnumber < 2) {
  4467. //如果是click事件的處理
  4468. if (event.type == "click") {
  4469. //如果元素在mousemove事件中沒有移動則出發click事件
  4470. if (!U.MD.D.I.IsDrag) {
  4471. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4472. U.alert("請先登錄您的賬號!");
  4473. setTimeout(() => {
  4474. U.MD.U.L.login();
  4475. }, 2000);
  4476. } else {
  4477. //打開應用處理
  4478. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4479. }
  4480. }
  4481. }
  4482. //如果是mouse事件的處理
  4483. else {
  4484. if (US.Config.type == '1') {
  4485. //拖動處理,添加拖動和拖動結束事件
  4486. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4487. }
  4488. }
  4489. U.MD.D.I.IsDrag = false;
  4490. }
  4491. }
  4492. /**
  4493. * 拖動的處理
  4494. *
  4495. */
  4496. U.MD.D.iconMove = function () {
  4497. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4498. U.MD.D.I.IsDrag = true;
  4499. }
  4500. /**
  4501. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4502. *
  4503. * @param {element} 拖動的元素
  4504. * @return {object} 命名空間
  4505. */
  4506. U.MD.D.iconUp = function (el) {
  4507. var _top = 15,
  4508. _left = 20,
  4509. _margin,
  4510. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4511. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4512. if (_positioninfo["OT"] > 15) {
  4513. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4514. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4515. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4516. }
  4517. if (_positioninfo["OL"] > 20) {
  4518. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4519. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4520. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4521. }
  4522. //while循環判斷麼一個重疊的元素
  4523. do {
  4524. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4525. _top = _positioninfo[0] + 95; //得到定位後的top
  4526. _left = _positioninfo[1]; //得到定位後的left
  4527. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4528. }
  4529. /**
  4530. * 判斷拖動後圖標是否重疊
  4531. *
  4532. * @param {element} 拖動的元素
  4533. * @param {element} 桌面所有的元素
  4534. * @param {array} 拖動元素的位置
  4535. ----------[0] 上 top
  4536. ----------[1] 左 left
  4537. * @return {object} 命名空間
  4538. */
  4539. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4540. //循環所有的圖標
  4541. for (var i = 0; i < childs.length; i++) {
  4542. //判斷有沒有和該圖標誒子重疊的元素
  4543. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4544. return childs[i]; //如果有返回
  4545. }
  4546. }
  4547. }
  4548. //#endregion
  4549. //#endregion
  4550. //#region 桌面應用
  4551. /**
  4552. * 打開應用
  4553. *
  4554. * @param {string} 類型
  4555. -----------------Disk 網盤系統
  4556. -----------------PDisk 學習系統網盤
  4557. -----------------Poto 圖片
  4558. -----------------Video 視頻
  4559. -----------------Music 音樂
  4560. -----------------Word word
  4561. -----------------Excel excel
  4562. -----------------Txt 記事本
  4563. -----------------PB 學習系統
  4564. -----------------Blog 朋友圈系統
  4565. -----------------FTP ftp系統
  4566. -----------------Group 好友群
  4567. -----------------SY 首頁系統
  4568. -----------------Set 個人設置
  4569. -----------------XSet 系統設置
  4570. -----------------App 我們所有的app
  4571. -----------------BC c.1473.cn 平臺
  4572. -----------------CWeb d.1473.cn 變成平臺
  4573. -----------------其他的外聯系統 我們統一用iframe打開
  4574. * @param {array} 類型
  4575. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4576. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4577. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4578. 如果第一個參數為其他,則無第二個參數
  4579. * @returns {array}
  4580. */
  4581. window.addEventListener('message', function (e) { // 監聽 message 事件
  4582. // alert(e.data.type);
  4583. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4584. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4585. //3是展示全部階段 2學生 1老師 4專家
  4586. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4587. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4588. //3是展示全部階段 2學生 1老師 4專家
  4589. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4590. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4591. //3是展示全部階段 2學生 1老師 4專家
  4592. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4593. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4594. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4595. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4596. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4597. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4598. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4599. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4600. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4601. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4602. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4603. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4604. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4605. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4606. //3是展示全部階段 2學生 1老師 4專家
  4607. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4608. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4609. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4610. U.MD.D.I.selectUser();
  4611. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4612. var _formel = document.getElementById("study");
  4613. U.UF.F.windowZooming(_formel);
  4614. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4615. var _formel = document.getElementById("studyDetail");
  4616. U.UF.F.windowZooming(_formel);
  4617. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4618. var _formel = document.getElementById("studyDetail");
  4619. U.UF.F.windowZooming(_formel);
  4620. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4621. var _formel = document.getElementById("studentStudy");
  4622. U.UF.F.windowZooming(_formel);
  4623. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4624. // var _formel = document.getElementById("study");
  4625. //如果最大化了,那麼就把他縮小
  4626. // if (_formel.ismaximize) {
  4627. // return;
  4628. // }
  4629. // U.UF.F.windowZooming(_formel);
  4630. // U.UF.F.topWindow(_formel);
  4631. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4632. // var _formel = document.getElementById("studyDetail");
  4633. //如果最大化了,那麼就把他縮小
  4634. // if (_formel.ismaximize) {
  4635. // return;
  4636. // }
  4637. // U.UF.F.windowZooming(_formel);
  4638. // U.UF.F.topWindow(_formel);
  4639. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4640. // var _formel = document.getElementById("studentStudy");
  4641. // if (_formel.ismaximize) {
  4642. // return;
  4643. // }
  4644. // U.UF.F.windowZooming(_formel);
  4645. // U.UF.F.topWindow(_formel);
  4646. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4647. var _formel = document.getElementById("study");
  4648. // if (_formel.ismaximize) {
  4649. // return;
  4650. // }
  4651. // U.UF.F.windowZooming(_formel);
  4652. U.UF.F.topWindow(_formel);
  4653. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4654. var _formel = document.getElementById("studentIndex");
  4655. U.UF.F.windowZooming(_formel);
  4656. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4657. var _formel = document.getElementById("studyDetailS");
  4658. U.UF.F.windowZooming(_formel);
  4659. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4660. var _formel = document.getElementById("studioIndex");
  4661. U.UF.F.windowZooming(_formel);
  4662. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4663. var _formel = document.getElementById("studyDetailStudio");
  4664. U.UF.F.windowZooming(_formel);
  4665. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4666. var _formel = document.getElementById("studyDetailStudio");
  4667. U.UF.F.windowZooming(_formel);
  4668. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4669. var _formel = document.getElementById("studyDetailNT");
  4670. U.UF.F.windowZooming(_formel);
  4671. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4672. var _formel = document.getElementById("studyDetailS");
  4673. U.UF.F.windowZooming(_formel);
  4674. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4675. var _formel = document.getElementById("studyDetailS");
  4676. U.UF.F.topWindow(_formel);
  4677. } else if (e.data.tools && e.data.tools == "1") {
  4678. // U.MD.D.I.openApplication("whiteboard")
  4679. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4680. } else if (e.data.tools && e.data.tools == "2") {
  4681. U.MD.D.I.openApplication("note")
  4682. } else if (e.data.tools && e.data.tools == "3") {
  4683. // U.MD.D.I.openApplication("mind")
  4684. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4685. } else if (e.data.tools && e.data.tools == "4") {
  4686. U.MD.D.I.openApplication("investigation")
  4687. } else if (e.data.tools && e.data.tools == "6") {
  4688. // U.MD.D.I.openApplication("doc")
  4689. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4690. } else if (e.data.tools && e.data.tools == "7") {
  4691. // U.MD.D.I.openApplication("mindNetwork")
  4692. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4693. } else if (e.data.tools && e.data.tools == "8") {
  4694. U.MD.D.I.openApplication("library")
  4695. } else if (e.data.tools && e.data.tools == "17") {
  4696. U.MD.D.I.openApplication("stuLibrary")
  4697. } else if (e.data.tools && e.data.tools == "18") {
  4698. U.MD.D.I.openApplication("train")
  4699. } else if (e.data.tools && e.data.tools == "21") {
  4700. U.MD.D.I.openApplication("program")
  4701. } else if (e.data.tools && e.data.tools == "22") {
  4702. U.MD.D.I.openApplication("AIprogram2")
  4703. } else if (e.data.tools && e.data.tools == "23") {
  4704. U.MD.D.I.openApplication("Pythonprogram")
  4705. } else if (e.data.tools && e.data.tools == "24") {
  4706. U.MD.D.I.openApplication("AIprogram")
  4707. } else if (e.data.tools && e.data.tools == "25") {
  4708. U.MD.D.I.openApplication("sys")
  4709. } else if (e.data.tools && e.data.tools == "26") {
  4710. // U.MD.D.I.openApplication("courseDesign")
  4711. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4712. } else if (e.data.tools && e.data.tools == "31") {
  4713. U.MD.D.I.openApplication("netWorkPanel")
  4714. } else if (e.data.tools && e.data.tools == "32") {
  4715. U.MD.D.I.openApplication("codeEdit")
  4716. } else if (e.data.tools && e.data.tools == "57") {
  4717. U.MD.D.I.openApplication("CocoPi")
  4718. } else if (e.data.tools && e.data.tools == "63") {
  4719. U.MD.D.I.openApplication("Wood")
  4720. } else if (e.data.tools && e.data.tools == "58") {
  4721. U.MD.D.I.openApplication("car")
  4722. } else if (e.data.tools && e.data.tools == "59") {
  4723. U.MD.D.I.openApplication("lineSearch")
  4724. } else if (e.data.tools && e.data.tools == "60") {
  4725. U.MD.D.I.openApplication("deepLearning")
  4726. } else if (e.data.tools && e.data.tools == "61") {
  4727. U.MD.D.I.openApplication("allHistory")
  4728. } else if (e.data.tools && e.data.tools == "28") {
  4729. U.MD.D.I.openApplication("translation")
  4730. } else if (e.data.tools && e.data.tools == "37") {
  4731. U.MD.D.I.openApplication("mohe")
  4732. } else if (e.data.tools && e.data.tools == "38") {
  4733. U.MD.D.I.openApplication("24game")
  4734. } else if (e.data.tools && e.data.tools == "39") {
  4735. U.MD.D.I.openApplication("GeoGebra")
  4736. } else if (e.data.tools && e.data.tools == "43") {
  4737. U.MD.D.I.openApplication("studentEvaluate")
  4738. } else if (e.data.tools && e.data.tools == "44") {
  4739. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4740. } else if (e.data.tools && e.data.tools == "46") {
  4741. U.MD.D.I.openApplication("project")
  4742. } else if (e.data.tools && e.data.tools == "71") {
  4743. U.MD.D.I.openApplication("aigptCourse")
  4744. } else if (e.data.tools && e.data.tools == "1s") {
  4745. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4746. } else if (e.data.tools && e.data.tools == "3s") {
  4747. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4748. } else if (e.data.tools && e.data.tools == "6s") {
  4749. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4750. } else if (e.data.tools && e.data.tools == "1studio") {
  4751. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4752. } else if (e.data.tools && e.data.tools == "3studio") {
  4753. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4754. } else if (e.data.tools && e.data.tools == "6studio") {
  4755. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4756. } else if (e.data.tools && e.data.tools == "3y") {
  4757. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4758. } else if (e.data.tools && e.data.tools == "1y") {
  4759. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4760. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4761. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4762. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4763. U.MD.D.I.openApplication("AIAnalyse")
  4764. } else if (e.data.tools && e.data.tools == "1teacher") {
  4765. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4766. } else if (e.data.tools && e.data.tools == "3teacher") {
  4767. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4768. } else if (e.data.tools && e.data.tools == "7teacher") {
  4769. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4770. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4771. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4772. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4773. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4774. } else if (e.data.tools && e.data.tools == "1E") {
  4775. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4776. } else if (e.data.tools && e.data.tools == "3E") {
  4777. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4778. } else if (e.data.tools && e.data.tools == "57y") {
  4779. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4780. } else if (e.data.tools && e.data.tools == "57u") {
  4781. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4782. } else if (e.data.tools && e.data.tools == "57teacher") {
  4783. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4784. } else if (e.data.tools && e.data.tools == "64") {
  4785. U.MD.D.I.openApplication("AIChat")
  4786. } else if (e.data.tools && e.data.tools == "66") {
  4787. U.MD.D.I.openApplication("formulaEdi")
  4788. } else if (e.data.tools && e.data.tools == "67") {
  4789. U.MD.D.I.openApplication("molStr")
  4790. } else if (e.data.tools && e.data.tools == "68") {
  4791. U.MD.D.I.openApplication("timeAxis")
  4792. } else if (e.data.tools && e.data.tools == "openCourse") {
  4793. let _data = {
  4794. typea: e.data.typea || '',
  4795. typeb: e.data.typeb || '',
  4796. typed: e.data.typed || '',
  4797. }
  4798. U.MD.D.I.openInApplication("index", _data)
  4799. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4800. let _data = {
  4801. classid: e.data.classid || '',
  4802. }
  4803. U.MD.D.I.openInApplication("dataClass", _data)
  4804. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4805. let _data = {
  4806. cid: e.data.cid || '',
  4807. gid: e.data.gid || '',
  4808. }
  4809. U.MD.D.I.openInApplication("opencCscl", _data)
  4810. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4811. U.MD.D.I.openApplication("dataBoardTest")
  4812. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4813. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4814. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4815. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4816. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4817. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4818. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4819. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4820. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4821. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4822. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4823. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4824. }else if (e.data.tools && e.data.tools == "loginSz") {
  4825. U.MD.D.I.openInApplication("loginSz")
  4826. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4827. if($('#classroom_observation_board')[0]){
  4828. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4829. }
  4830. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4831. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4832. if($('#classroom_observation_ob_comment')[0]){
  4833. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4834. }
  4835. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4836. }else if (e.data.tools && e.data.tools == "logout"){
  4837. U.MD.U.LO.logoutSystem()
  4838. }else if (e.data.tools && e.data.tools == "getLogin"){
  4839. let _iframe = $('#UI_Login')[0];
  4840. if (_iframe) {
  4841. var userInfo = US.userInfo;
  4842. var type = 2
  4843. if(userInfo && userInfo.userid){
  4844. type = 1
  4845. }
  4846. _contentWindow = _iframe.contentWindow;
  4847. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4848. }
  4849. }
  4850. });
  4851. U.MD.D.I.selectUser = function () {
  4852. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4853. if (res.value[0].length > 0) {
  4854. US.userInfo = res.value[0][0];
  4855. $(".userName")[0].innerHTML = US.userInfo.username;
  4856. }
  4857. }, [], { "type": "GET", "withCredentials": true });
  4858. }
  4859. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4860. var _userinfo = US.userInfo, //登錄用戶信息
  4861. _userid = US.userInfo.userid, //登錄用戶id
  4862. _oid = _userinfo.organizeid,
  4863. _type = US.userInfo.type,
  4864. _org = US.userInfo.org,
  4865. _role = US.userInfo.role,
  4866. _classId = US.userInfo.classid;
  4867. if (_type == 4) {
  4868. tType = 4
  4869. }
  4870. switch (str) {
  4871. case "studyDetailNT": //無終端模式
  4872. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4873. setTimeout(() => {
  4874. U.MD.U.L.login();
  4875. }, 2000);
  4876. } else {
  4877. _formdiv = new U.UF.UI.form(
  4878. "課程詳情",
  4879. $$("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 }), {
  4880. "id": "studyDetailNT",
  4881. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4882. "onresize": function () { }
  4883. }, {
  4884. closecallback: function () { }
  4885. }, { "style": { "height": "36px" } }).form; //創建窗體
  4886. _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); } }
  4887. break;
  4888. }
  4889. case "studyDetail":
  4890. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4891. setTimeout(() => {
  4892. U.MD.U.L.login();
  4893. }, 2000);
  4894. } else {
  4895. _formdiv = new U.UF.UI.form(
  4896. "課程詳情",
  4897. $$("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 }), {
  4898. "id": "studyDetail",
  4899. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4900. "onresize": function () { }
  4901. }, {
  4902. closecallback: function () { }
  4903. }, { "style": { "height": "36px" } }).form; //創建窗體
  4904. _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); } }
  4905. break;
  4906. }
  4907. case "studyDetailTrain":
  4908. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4909. setTimeout(() => {
  4910. U.MD.U.L.login();
  4911. }, 2000);
  4912. } else {
  4913. _formdiv = new U.UF.UI.form(
  4914. "培訓詳情",
  4915. $$("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 }), {
  4916. "id": "studyDetailTrain",
  4917. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4918. "onresize": function () { }
  4919. }, {
  4920. closecallback: function () { }
  4921. }, { "style": { "height": "36px" } }).form; //創建窗體
  4922. _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); } }
  4923. break;
  4924. }
  4925. case "studyDetailS":
  4926. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4927. setTimeout(() => {
  4928. U.MD.U.L.login();
  4929. }, 2000);
  4930. } else {
  4931. _formdiv = new U.UF.UI.form(
  4932. "項目詳情",
  4933. $$("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 }), {
  4934. "id": "studyDetailS",
  4935. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4936. "onresize": function () { }
  4937. }, {
  4938. closecallback: function () { }
  4939. }, { "style": { "height": "36px" } }).form; //創建窗體
  4940. _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); } }
  4941. break;
  4942. }
  4943. case "studyDetailStudio":
  4944. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4945. setTimeout(() => {
  4946. U.MD.U.L.login();
  4947. }, 2000);
  4948. } else {
  4949. _formdiv = new U.UF.UI.form(
  4950. "工作詳情",
  4951. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4952. "id": "studyDetailStudio",
  4953. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4954. "onresize": function () { }
  4955. }, {
  4956. closecallback: function () { }
  4957. }, { "style": { "height": "36px" } }).form; //創建窗體
  4958. _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); } }
  4959. break;
  4960. }
  4961. case "studyDetailS5":
  4962. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4963. setTimeout(() => {
  4964. U.MD.U.L.login();
  4965. }, 2000);
  4966. } else {
  4967. _formdiv = new U.UF.UI.form(
  4968. "項目詳情",
  4969. $$("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 }), {
  4970. "id": "studyDetailS",
  4971. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4972. "onresize": function () { }
  4973. }, {
  4974. closecallback: function () { }
  4975. }, { "style": { "height": "36px" } }).form; //創建窗體
  4976. _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); } }
  4977. break;
  4978. }
  4979. case "studyDetailGM":
  4980. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4981. setTimeout(() => {
  4982. U.MD.U.L.login();
  4983. }, 2000);
  4984. } else {
  4985. _formdiv = new U.UF.UI.form(
  4986. "課程詳情",
  4987. $$("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 }), {
  4988. "id": "studyDetail",
  4989. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4990. "onresize": function () { }
  4991. }, {
  4992. closecallback: function () { }
  4993. }, { "style": { "height": "36px" } }).form; //創建窗體
  4994. _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); } }
  4995. break;
  4996. }
  4997. case "hanUrl":
  4998. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4999. setTimeout(() => {
  5000. U.MD.U.L.login();
  5001. }, 2000);
  5002. } else {
  5003. _formdiv = new U.UF.UI.form(
  5004. "漢字宮",
  5005. $$("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" }), {
  5006. "id": "hanUrl",
  5007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //創建窗體
  5012. _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); } }
  5013. break;
  5014. }
  5015. case "index":
  5016. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5017. setTimeout(() => {
  5018. U.MD.U.L.login();
  5019. }, 2000);
  5020. } else {
  5021. _formdiv = new U.UF.UI.form(
  5022. "課程中心",
  5023. $$("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 }), {
  5024. "id": "study",
  5025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5026. "onresize": function () { }
  5027. }, {
  5028. closecallback: function () { }
  5029. }, { "style": { "height": "36px" } }).form; //創建窗體
  5030. _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); } }
  5031. break;
  5032. }
  5033. case "dataClass":
  5034. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5035. setTimeout(() => {
  5036. U.MD.U.L.login();
  5037. }, 2000);
  5038. } else {
  5039. _formdiv = new U.UF.UI.form(
  5040. "數據報告",
  5041. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  5042. "id": "dataClass",
  5043. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //創建窗體
  5048. _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); } }
  5049. break;
  5050. }
  5051. case "opencCscl":
  5052. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5053. setTimeout(() => {
  5054. U.MD.U.L.login();
  5055. }, 2000);
  5056. } else {
  5057. _formdiv = new U.UF.UI.form(
  5058. "協同建構",
  5059. $$("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 }), {
  5060. "id": "futureClass",
  5061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5062. "onresize": function () { }
  5063. }, {
  5064. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5065. }, { "style": { "height": "36px" } }).form; //創建窗體
  5066. _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); } }
  5067. break;
  5068. }
  5069. case "openCourseUpdate":
  5070. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5071. setTimeout(() => {
  5072. U.MD.U.L.login();
  5073. }, 2000);
  5074. } else {
  5075. _formdiv = new U.UF.UI.form(
  5076. "課程管理",
  5077. $$("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 }), {
  5078. "id": "openCourseUpdate",
  5079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5080. "onresize": function () { }
  5081. }, {
  5082. closecallback: function () { }
  5083. }, { "style": { "height": "36px" } }).form; //創建窗體
  5084. break;
  5085. }
  5086. case "openNewCourseUpdate":
  5087. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5088. setTimeout(() => {
  5089. U.MD.U.L.login();
  5090. }, 2000);
  5091. } else {
  5092. _formdiv = new U.UF.UI.form(
  5093. "課程管理",
  5094. $$("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 }), {
  5095. "id": "openCourseUpdate",
  5096. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5097. "onresize": function () { }
  5098. }, {
  5099. closecallback: function () { }
  5100. }, { "style": { "height": "36px" } }).form; //創建窗體
  5101. break;
  5102. }
  5103. case "openCourseEUpdate":
  5104. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5105. setTimeout(() => {
  5106. U.MD.U.L.login();
  5107. }, 2000);
  5108. } else {
  5109. _formdiv = new U.UF.UI.form(
  5110. "課程管理",
  5111. $$("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 }), {
  5112. "id": "openCourseUpdate",
  5113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //創建窗體
  5118. break;
  5119. }
  5120. case "openCourseAiUpdate":
  5121. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5122. setTimeout(() => {
  5123. U.MD.U.L.login();
  5124. }, 2000);
  5125. } else {
  5126. _formdiv = new U.UF.UI.form(
  5127. "課程管理",
  5128. $$("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 }), {
  5129. "id": "openCourseUpdate",
  5130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //創建窗體
  5135. break;
  5136. }
  5137. case "openCourseAiUpdate2":
  5138. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5139. setTimeout(() => {
  5140. U.MD.U.L.login();
  5141. }, 2000);
  5142. } else {
  5143. _formdiv = new U.UF.UI.form(
  5144. "課程管理",
  5145. $$("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 }), {
  5146. "id": "openCourseUpdate",
  5147. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5148. "onresize": function () { }
  5149. }, {
  5150. closecallback: function () { }
  5151. }, { "style": { "height": "36px" } }).form; //創建窗體
  5152. break;
  5153. }
  5154. case "openCourseNewUpdate":
  5155. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5156. setTimeout(() => {
  5157. U.MD.U.L.login();
  5158. }, 2000);
  5159. } else {
  5160. _formdiv = new U.UF.UI.form(
  5161. "課程管理",
  5162. $$("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 }), {
  5163. "id": "openCourseUpdate",
  5164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5165. "onresize": function () { }
  5166. }, {
  5167. closecallback: function () { }
  5168. }, { "style": { "height": "36px" } }).form; //創建窗體
  5169. break;
  5170. }
  5171. case "inviteLoginSz":
  5172. _formdiv = new U.UF.UI.form(
  5173. "隨機碼登錄",
  5174. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5175. "id": "loginSz",
  5176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5177. "onresize": function () { }
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //創建窗體
  5181. break;
  5182. case "loginSz":
  5183. _formdiv = new U.UF.UI.form(
  5184. "教師登錄",
  5185. $$("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" }), {
  5186. "id": "loginSz",
  5187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. "onresize": function () { }
  5189. }, {
  5190. closecallback: function () { }
  5191. }, { "style": { "height": "36px" } }).form; //創建窗體
  5192. break;
  5193. case "teacher":
  5194. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5195. setTimeout(() => {
  5196. U.MD.U.L.login();
  5197. }, 2000);
  5198. } else {
  5199. _formdiv = new U.UF.UI.form(
  5200. "教師管理",
  5201. $$("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 }), {
  5202. "id": "teacher",
  5203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5204. "onresize": function () { }
  5205. }, {
  5206. closecallback: function () { }
  5207. }, { "style": { "height": "36px" } }).form; //創建窗體
  5208. break;
  5209. }
  5210. case "dataBoardSZArea":
  5211. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5212. setTimeout(() => {
  5213. U.MD.U.L.login();
  5214. }, 2000);
  5215. } else {
  5216. _formdiv = new U.UF.UI.form(
  5217. "綜合數據看板",
  5218. $$("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 }), {
  5219. "id": "dataBoardSZArea",
  5220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5221. "onresize": function () { }
  5222. }, {
  5223. closecallback: function () { }
  5224. }, { "style": { "height": "36px" } }).form; //創建窗體
  5225. break;
  5226. }
  5227. case "dataBoardSZCity":
  5228. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5229. setTimeout(() => {
  5230. U.MD.U.L.login();
  5231. }, 2000);
  5232. } else {
  5233. _formdiv = new U.UF.UI.form(
  5234. "綜合數據看板",
  5235. $$("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 }), {
  5236. "id": "dataBoardSZCity",
  5237. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //創建窗體
  5242. break;
  5243. }
  5244. case "classroom_observation_board":
  5245. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5246. setTimeout(() => {
  5247. U.MD.U.L.login();
  5248. }, 2000);
  5249. } else {
  5250. _formdiv = new U.UF.UI.form(
  5251. "課堂觀察",
  5252. $$("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 }), {
  5253. "id": "classroom_observation_board",
  5254. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //創建窗體
  5259. break;
  5260. }
  5261. case "classroom_observation_ob_comment":
  5262. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5263. setTimeout(() => {
  5264. U.MD.U.L.login();
  5265. }, 2000);
  5266. } else {
  5267. _formdiv = new U.UF.UI.form(
  5268. "課堂審核",
  5269. $$("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 }), {
  5270. "id": "classroom_observation_ob_comment",
  5271. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //創建窗體
  5276. break;
  5277. }
  5278. }
  5279. }
  5280. U.MD.D.I.openApplication = function (str, obj, info) {
  5281. obj = obj || {};
  5282. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5283. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5284. _userinfo = US.userInfo, //登錄用戶信息
  5285. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5286. _oid = obj.organizeid || _userinfo.organizeid,
  5287. _type = US.userInfo.type,
  5288. _org = US.userInfo.org,
  5289. _role = US.userInfo.role,
  5290. _classId = US.userInfo.classid,
  5291. _TscreenType = 1
  5292. _screenType = 2,
  5293. _SscreenType = 3;
  5294. let iframeBool = true
  5295. if(U.UF.UI.form.allForm[str]){
  5296. iframeBool = false
  5297. }
  5298. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5299. return;
  5300. }
  5301. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5302. switch (str) {
  5303. case "studnetProject": //好友打開
  5304. _formdiv = new U.UF.UI.form(
  5305. "我的項目",
  5306. $$("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 }), {
  5307. "id": "studnetProject",
  5308. "style": { "width": "70%", "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/project.png)" }, "name": "我的項目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5314. break;
  5315. case "studentEvaluate": //好友打開
  5316. _formdiv = new U.UF.UI.form(
  5317. "我的評價",
  5318. $$("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 }), {
  5319. "id": "studentEvaluate",
  5320. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //創建窗體
  5325. _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); } }
  5326. break;
  5327. case "my":
  5328. _formdiv = new U.UF.UI.form(
  5329. "我的資料",
  5330. $$("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 }), {
  5331. "id": "my",
  5332. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5333. "onresize": function () { }
  5334. }, {
  5335. closecallback: function () { }
  5336. }, { "style": { "height": "36px" } }).form; //創建窗體
  5337. _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); } }
  5338. break;
  5339. case "program":
  5340. _formdiv = new U.UF.UI.form(
  5341. "編程平臺",
  5342. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5343. "id": "program",
  5344. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5345. "onresize": function () { }
  5346. }, {
  5347. closecallback: function () { }
  5348. }, { "style": { "height": "36px" } }).form; //創建窗體
  5349. _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); } }
  5350. break;
  5351. case "library":
  5352. _formdiv = new U.UF.UI.form(
  5353. "素材庫",
  5354. $$("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 }), {
  5355. "id": "library",
  5356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5357. "onresize": function () { }
  5358. }, {
  5359. closecallback: function () { }
  5360. }, { "style": { "height": "36px" } }).form; //創建窗體
  5361. _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); } }
  5362. break;
  5363. case "whiteboard":
  5364. _formdiv = new U.UF.UI.form(
  5365. "電子白板",
  5366. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5367. "id": "whiteboard",
  5368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //創建窗體
  5373. _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); } }
  5374. break;
  5375. case "investigation":
  5376. _formdiv = new U.UF.UI.form(
  5377. "問卷調查",
  5378. $$("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 }), {
  5379. "id": "investigation",
  5380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5381. "onresize": function () { }
  5382. }, {
  5383. closecallback: function () { }
  5384. }, { "style": { "height": "36px" } }).form; //創建窗體
  5385. _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); } }
  5386. break;
  5387. case "note":
  5388. _formdiv = new U.UF.UI.form(
  5389. "便簽分類",
  5390. $$("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 }), {
  5391. "id": "note",
  5392. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //創建窗體
  5397. _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); } }
  5398. break;
  5399. // case "score":
  5400. // _formdiv = new U.UF.UI.form(
  5401. // "量規評分",
  5402. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5403. // "id": "score",
  5404. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5405. // "onresize": function() {}
  5406. // }, {
  5407. // closecallback: function() {}
  5408. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5409. // _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); } }
  5410. // break;
  5411. case "mind":
  5412. _formdiv = new U.UF.UI.form(
  5413. "思維導圖",
  5414. $$("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"
  5415. "id": "mind",
  5416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5417. "onresize": function () { }
  5418. }, {
  5419. closecallback: function () { }
  5420. }, { "style": { "height": "36px" } }).form; //創建窗體
  5421. _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); } }
  5422. break;
  5423. case "doc":
  5424. // U.MD.D.I.isRoom();
  5425. _formdiv = new U.UF.UI.form(
  5426. "協同文檔",
  5427. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5428. "id": "doc",
  5429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //創建窗體
  5434. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5435. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5436. // })
  5437. _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); } }
  5438. break;
  5439. case "studentStudy":
  5440. _formdiv = new U.UF.UI.form(
  5441. "課程中心",
  5442. $$("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
  5443. "id": "studentStudy",
  5444. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //創建窗體
  5449. _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); } }
  5450. break;
  5451. case "train": //好友打開
  5452. _formdiv = new U.UF.UI.form(
  5453. "訓練平臺",
  5454. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5455. "id": "train",
  5456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //創建窗體
  5461. _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); } }
  5462. break;
  5463. case "mindNetwork": //好友打開
  5464. _formdiv = new U.UF.UI.form(
  5465. "思維網格",
  5466. $$("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 }), {
  5467. "id": "mindNetwork",
  5468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //創建窗體
  5473. _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); } }
  5474. break;
  5475. case "studentClassRoom": //好友打開
  5476. _formdiv = new U.UF.UI.form(
  5477. "實時課堂",
  5478. $$("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 }), {
  5479. "id": "studentClassRoom",
  5480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //創建窗體
  5485. _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); } }
  5486. setTimeout(() => {
  5487. U.UF.F.windowZooming(_formdiv)
  5488. }, 0);
  5489. break;
  5490. }
  5491. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5492. switch (str) {
  5493. case "studnetProject": //好友打開
  5494. _formdiv = new U.UF.UI.form(
  5495. "我的項目",
  5496. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5497. "id": "studnetProject",
  5498. "style": { "width": "70%", "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/project.png)" }, "name": "我的項目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5504. break;
  5505. case "studentEvaluate": //好友打開
  5506. _formdiv = new U.UF.UI.form(
  5507. "我的評價",
  5508. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5509. "id": "studentEvaluate",
  5510. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //創建窗體
  5515. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5516. break;
  5517. case "my":
  5518. _formdiv = new U.UF.UI.form(
  5519. "我的資料",
  5520. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5521. "id": "my",
  5522. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //創建窗體
  5527. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5528. break;
  5529. case "program":
  5530. _formdiv = new U.UF.UI.form(
  5531. "編程平臺",
  5532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5533. "id": "program",
  5534. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //創建窗體
  5539. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5540. break;
  5541. case "library":
  5542. _formdiv = new U.UF.UI.form(
  5543. "素材庫",
  5544. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5545. "id": "library",
  5546. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5547. "onresize": function () { }
  5548. }, {
  5549. closecallback: function () { }
  5550. }, { "style": { "height": "36px" } }).form; //創建窗體
  5551. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材庫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5552. break;
  5553. case "whiteboard":
  5554. _formdiv = new U.UF.UI.form(
  5555. "電子白板",
  5556. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5557. "id": "whiteboard",
  5558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //創建窗體
  5563. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "電子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5564. break;
  5565. case "investigation":
  5566. _formdiv = new U.UF.UI.form(
  5567. "問卷調查",
  5568. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5569. "id": "investigation",
  5570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //創建窗體
  5575. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5576. break;
  5577. case "note":
  5578. _formdiv = new U.UF.UI.form(
  5579. "便簽分類",
  5580. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5581. "id": "note",
  5582. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //創建窗體
  5587. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便簽分類", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5588. break;
  5589. // case "score":
  5590. // _formdiv = new U.UF.UI.form(
  5591. // "量規評分",
  5592. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5593. // "id": "score",
  5594. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5595. // "onresize": function() {}
  5596. // }, {
  5597. // closecallback: function() {}
  5598. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5599. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量規評分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5600. // break;
  5601. case "mind":
  5602. _formdiv = new U.UF.UI.form(
  5603. "思維導圖",
  5604. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5605. "id": "mind",
  5606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //創建窗體
  5611. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5612. break;
  5613. case "doc":
  5614. // U.MD.D.I.isRoom();
  5615. _formdiv = new U.UF.UI.form(
  5616. "協同文檔",
  5617. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5618. "id": "doc",
  5619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5620. "onresize": function () { }
  5621. }, {
  5622. closecallback: function () { }
  5623. }, { "style": { "height": "36px" } }).form; //創建窗體
  5624. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5625. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5626. })
  5627. _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); } }
  5628. break;
  5629. case "train": //好友打開
  5630. _formdiv = new U.UF.UI.form(
  5631. "訓練平臺",
  5632. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5633. "id": "train",
  5634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //創建窗體
  5639. _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); } }
  5640. break;
  5641. case "studentStudy":
  5642. _formdiv = new U.UF.UI.form(
  5643. "課程中心",
  5644. $$("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
  5645. "id": "studentStudy",
  5646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //創建窗體
  5651. _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); } }
  5652. break;
  5653. case "mindNetwork": //好友打開
  5654. _formdiv = new U.UF.UI.form(
  5655. "思維網格",
  5656. $$("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 }), {
  5657. "id": "mindNetwork",
  5658. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //創建窗體
  5663. _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); } }
  5664. break;
  5665. case "studentClassRoom": //好友打開
  5666. _formdiv = new U.UF.UI.form(
  5667. "實時課堂",
  5668. $$("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 }), {
  5669. "id": "studentClassRoom",
  5670. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5671. "onresize": function () { }
  5672. }, {
  5673. closecallback: function () { }
  5674. }, { "style": { "height": "36px" } }).form; //創建窗體
  5675. _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); } }
  5676. setTimeout(() => {
  5677. U.UF.F.windowZooming(_formdiv)
  5678. }, 0);
  5679. break;
  5680. }
  5681. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5682. //選擇應用處理
  5683. switch (str) {
  5684. case "project": //好友打開
  5685. _formdiv = new U.UF.UI.form(
  5686. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5687. $$("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 }), {
  5688. "id": "project",
  5689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5690. "onresize": function () { }
  5691. }, {
  5692. closecallback: function () { }
  5693. }, { "style": { "height": "36px" } }).form; //創建窗體
  5694. _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); } }
  5695. break;
  5696. case "student":
  5697. _formdiv = new U.UF.UI.form(
  5698. "學生管理",
  5699. $$("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 }), {
  5700. "id": "student",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //創建窗體
  5706. _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); } }
  5707. break;
  5708. case "evaluate":
  5709. _formdiv = new U.UF.UI.form(
  5710. "學生評價",
  5711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5712. "id": "evaluate",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //創建窗體
  5718. _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); } }
  5719. break;
  5720. case "sys":
  5721. _formdiv = new U.UF.UI.form(
  5722. "目標管理",
  5723. $$("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 }), {
  5724. "id": "sys",
  5725. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5726. "onresize": function () { }
  5727. }, {
  5728. closecallback: function () { }
  5729. }, { "style": { "height": "36px" } }).form; //創建窗體
  5730. _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); } }
  5731. break;
  5732. case "courseDesign":
  5733. _formdiv = new U.UF.UI.form(
  5734. "項目設計",
  5735. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5736. "id": "courseDesign",
  5737. "style": { "width": "90%", "height": "90%", "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/courseDesign.png)" }, "name": "項目設計", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5743. break;
  5744. case "program":
  5745. _formdiv = new U.UF.UI.form(
  5746. "編程平臺",
  5747. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5748. "id": "program",
  5749. "style": { "width": "70%", "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/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5755. break;
  5756. case "class":
  5757. _formdiv = new U.UF.UI.form(
  5758. "班級管理",
  5759. $$("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 }), {
  5760. "id": "class",
  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/class.png)" }, "name": "班級管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5767. break;
  5768. case "Grade":
  5769. _formdiv = new U.UF.UI.form(
  5770. "年級管理",
  5771. $$("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 }), {
  5772. "id": "Grade",
  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/Grade.png)" }, "name": "年級管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5779. break;
  5780. case "teacherOffice":
  5781. _formdiv = new U.UF.UI.form(
  5782. "教研室",
  5783. $$("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 }), {
  5784. "id": "teacherOffice",
  5785. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5786. "onresize": function () { }
  5787. }, {
  5788. closecallback: function () { }
  5789. }, { "style": { "height": "36px" } }).form; //創建窗體
  5790. _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); } }
  5791. break;
  5792. case "my":
  5793. _formdiv = new U.UF.UI.form(
  5794. "我的資料",
  5795. $$("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 }), {
  5796. "id": "my",
  5797. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5798. "onresize": function () { }
  5799. }, {
  5800. closecallback: function () { }
  5801. }, { "style": { "height": "36px" } }).form; //創建窗體
  5802. _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); } }
  5803. break;
  5804. case "notice":
  5805. _formdiv = new U.UF.UI.form(
  5806. "通知公告",
  5807. $$("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 }), {
  5808. "id": "notice",
  5809. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5810. "onresize": function () { }
  5811. }, {
  5812. closecallback: function () { }
  5813. }, { "style": { "height": "36px" } }).form; //創建窗體
  5814. _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); } }
  5815. break;
  5816. case "library":
  5817. _formdiv = new U.UF.UI.form(
  5818. "素材庫",
  5819. $$("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 }), {
  5820. "id": "library",
  5821. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5822. "onresize": function () { }
  5823. }, {
  5824. closecallback: function () { }
  5825. }, { "style": { "height": "36px" } }).form; //創建窗體
  5826. _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); } }
  5827. break;
  5828. case "whiteboard":
  5829. _formdiv = new U.UF.UI.form(
  5830. "電子白板",
  5831. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5832. "id": "whiteboard",
  5833. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5834. "onresize": function () { }
  5835. }, {
  5836. closecallback: function () { }
  5837. }, { "style": { "height": "36px" } }).form; //創建窗體
  5838. _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); } }
  5839. break;
  5840. case "investigation":
  5841. _formdiv = new U.UF.UI.form(
  5842. "問卷調查",
  5843. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5844. "id": "investigation",
  5845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //創建窗體
  5850. _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); } }
  5851. break;
  5852. case "note":
  5853. _formdiv = new U.UF.UI.form(
  5854. "便簽分類",
  5855. $$("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 }), {
  5856. "id": "note",
  5857. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5858. "onresize": function () { }
  5859. }, {
  5860. closecallback: function () { }
  5861. }, { "style": { "height": "36px" } }).form; //創建窗體
  5862. _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); } }
  5863. break;
  5864. // case "score":
  5865. // _formdiv = new U.UF.UI.form(
  5866. // "量規評分",
  5867. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5868. // "id": "score",
  5869. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5870. // "onresize": function() {}
  5871. // }, {
  5872. // closecallback: function() {}
  5873. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5874. // _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); } }
  5875. // break;
  5876. case "mind":
  5877. _formdiv = new U.UF.UI.form(
  5878. "思維導圖",
  5879. $$("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"
  5880. "id": "mind",
  5881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5882. "onresize": function () { }
  5883. }, {
  5884. closecallback: function () { }
  5885. }, { "style": { "height": "36px" } }).form; //創建窗體
  5886. _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); } }
  5887. break;
  5888. case "doc":
  5889. // U.MD.D.I.isRoom();
  5890. _formdiv = new U.UF.UI.form(
  5891. "協同文檔",
  5892. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5893. "id": "doc",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //創建窗體
  5899. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5900. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5901. })
  5902. _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); } }
  5903. break;
  5904. case "study":
  5905. _formdiv = new U.UF.UI.form(
  5906. "課程中心",
  5907. $$("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
  5908. "id": "study",
  5909. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //創建窗體
  5914. _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); } }
  5915. break;
  5916. case "mindNetwork": //好友打開
  5917. _formdiv = new U.UF.UI.form(
  5918. "思維網格",
  5919. $$("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 }), {
  5920. "id": "mindNetwork",
  5921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. closecallback: function () { }
  5925. }, { "style": { "height": "36px" } }).form; //創建窗體
  5926. _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); } }
  5927. break;
  5928. case "train": //好友打開
  5929. _formdiv = new U.UF.UI.form(
  5930. "訓練平臺",
  5931. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5932. "id": "mindNetwork",
  5933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5934. "onresize": function () { }
  5935. }, {
  5936. closecallback: function () { }
  5937. }, { "style": { "height": "36px" } }).form; //創建窗體
  5938. _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); } }
  5939. break;
  5940. case "teacherClassRoom": //好友打開
  5941. _formdiv = new U.UF.UI.form(
  5942. "實時課堂",
  5943. $$("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 }), {
  5944. "id": "teacherClassRoom",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //創建窗體
  5950. _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); } }
  5951. setTimeout(() => {
  5952. U.UF.F.windowZooming(_formdiv)
  5953. }, 0);
  5954. break;
  5955. }
  5956. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5957. switch (str) {
  5958. case "project": //好友打開
  5959. _formdiv = new U.UF.UI.form(
  5960. "課程管理",
  5961. $$("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 }), {
  5962. "id": "project",
  5963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5964. "onresize": function () { }
  5965. }, {
  5966. closecallback: function () { }
  5967. }, { "style": { "height": "36px" } }).form; //創建窗體
  5968. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5969. break;
  5970. case "evaluate":
  5971. _formdiv = new U.UF.UI.form(
  5972. "學生評價",
  5973. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5974. "id": "evaluate",
  5975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //創建窗體
  5980. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "學生評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5981. break;
  5982. case "notice":
  5983. _formdiv = new U.UF.UI.form(
  5984. "通知公告",
  5985. $$("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 }), {
  5986. "id": "notice",
  5987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5988. "onresize": function () { }
  5989. }, {
  5990. closecallback: function () { }
  5991. }, { "style": { "height": "36px" } }).form; //創建窗體
  5992. _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); } }
  5993. break;
  5994. case "stuLibrary":
  5995. _formdiv = new U.UF.UI.form(
  5996. "學習資料",
  5997. $$("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 }), {
  5998. "id": "stuLibrary",
  5999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6000. "onresize": function () { }
  6001. }, {
  6002. closecallback: function () { }
  6003. }, { "style": { "height": "36px" } }).form; //創建窗體
  6004. _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); } }
  6005. break;
  6006. case "program":
  6007. _formdiv = new U.UF.UI.form(
  6008. "編程平臺",
  6009. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6010. "id": "program",
  6011. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6012. "onresize": function () { }
  6013. }, {
  6014. closecallback: function () { }
  6015. }, { "style": { "height": "36px" } }).form; //創建窗體
  6016. _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); } }
  6017. break;
  6018. case "whiteboard":
  6019. _formdiv = new U.UF.UI.form(
  6020. "電子白板",
  6021. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6022. "id": "whiteboard",
  6023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6024. "onresize": function () { }
  6025. }, {
  6026. closecallback: function () { }
  6027. }, { "style": { "height": "36px" } }).form; //創建窗體
  6028. _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); } }
  6029. break;
  6030. case "investigation":
  6031. _formdiv = new U.UF.UI.form(
  6032. "問卷調查",
  6033. $$("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 }), {
  6034. "id": "investigation",
  6035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //創建窗體
  6040. _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); } }
  6041. break;
  6042. case "mind":
  6043. _formdiv = new U.UF.UI.form(
  6044. "思維導圖",
  6045. $$("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"
  6046. "id": "mind",
  6047. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //創建窗體
  6052. _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); } }
  6053. break;
  6054. case "doc":
  6055. // U.MD.D.I.isRoom();
  6056. _formdiv = new U.UF.UI.form(
  6057. "協同文檔",
  6058. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6059. "id": "doc",
  6060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6061. "onresize": function () { }
  6062. }, {
  6063. closecallback: function () { }
  6064. }, { "style": { "height": "36px" } }).form; //創建窗體
  6065. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6066. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6067. })
  6068. _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); } }
  6069. break;
  6070. case "study":
  6071. _formdiv = new U.UF.UI.form(
  6072. "課程中心",
  6073. $$("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
  6074. "id": "study",
  6075. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //創建窗體
  6080. _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); } }
  6081. break;
  6082. case "mindNetwork": //好友打開
  6083. _formdiv = new U.UF.UI.form(
  6084. "思維網格",
  6085. $$("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 }), {
  6086. "id": "mindNetwork",
  6087. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //創建窗體
  6092. _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); } }
  6093. break;
  6094. case "train": //好友打開
  6095. _formdiv = new U.UF.UI.form(
  6096. "訓練平臺",
  6097. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6098. "id": "train",
  6099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //創建窗體
  6104. _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); } }
  6105. break;
  6106. case "sys":
  6107. _formdiv = new U.UF.UI.form(
  6108. "目標管理",
  6109. $$("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 }), {
  6110. "id": "sys",
  6111. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //創建窗體
  6116. _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); } }
  6117. break;
  6118. case "courseDesign":
  6119. _formdiv = new U.UF.UI.form(
  6120. "項目設計",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6122. "id": "courseDesign",
  6123. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //創建窗體
  6128. _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); } }
  6129. break;
  6130. }
  6131. } else if (!_type) {
  6132. switch (str) {
  6133. case "my":
  6134. _formdiv = new U.UF.UI.form(
  6135. "我的資料",
  6136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6137. "id": "my",
  6138. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6139. "onresize": function () { }
  6140. }, {
  6141. closecallback: function () { }
  6142. }, { "style": { "height": "36px" } }).form; //創建窗體
  6143. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6144. break;
  6145. }
  6146. }
  6147. switch (str) {
  6148. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6149. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6150. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6151. case "formulaEdi": //公式編輯
  6152. _formdiv = new U.UF.UI.form(
  6153. "公式編輯",
  6154. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6155. "id": "formulaEdi",
  6156. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6157. "onresize": function () { }
  6158. }, {
  6159. closecallback: function () { }
  6160. }, { "style": { "height": "36px" } }).form; //創建窗體
  6161. _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); } }
  6162. break;
  6163. case "molStr": //分子結構
  6164. _formdiv = new U.UF.UI.form(
  6165. "分子結構",
  6166. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6167. "id": "molStr",
  6168. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6169. "onresize": function () { }
  6170. }, {
  6171. closecallback: function () { }
  6172. }, { "style": { "height": "36px" } }).form; //創建窗體
  6173. _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); } }
  6174. break;
  6175. case "timeAxis": //時間軸
  6176. _formdiv = new U.UF.UI.form(
  6177. "時間軸",
  6178. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6179. "id": "timeAxis",
  6180. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6181. "onresize": function () { }
  6182. }, {
  6183. closecallback: function () { }
  6184. }, { "style": { "height": "36px" } }).form; //創建窗體
  6185. _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); } }
  6186. break;
  6187. case "AIprogram2": //AI體驗
  6188. _formdiv = new U.UF.UI.form(
  6189. "AI體驗",
  6190. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6191. "id": "AIprogram2",
  6192. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6193. "onresize": function () { }
  6194. }, {
  6195. closecallback: function () { }
  6196. }, { "style": { "height": "36px" } }).form; //創建窗體
  6197. _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); } }
  6198. break;
  6199. case "Pythonprogram": //python編程
  6200. _formdiv = new U.UF.UI.form(
  6201. "Python編程",
  6202. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6203. "id": "Pythonprogram",
  6204. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6205. "onresize": function () { }
  6206. }, {
  6207. closecallback: function () { }
  6208. }, { "style": { "height": "36px" } }).form; //創建窗體
  6209. _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); } }
  6210. break;
  6211. case "AIprogram": //ai編程
  6212. _formdiv = new U.UF.UI.form(
  6213. "AI編程平臺",
  6214. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6215. "id": "AIprogram",
  6216. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6217. "onresize": function () { }
  6218. }, {
  6219. closecallback: function () { }
  6220. }, { "style": { "height": "36px" } }).form; //創建窗體
  6221. _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); } }
  6222. break;
  6223. case "CocoPi": //CocoPi
  6224. _formdiv = new U.UF.UI.form(
  6225. "CocoPi",
  6226. $$("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" }), {
  6227. "id": "CocoPi",
  6228. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6229. "onresize": function () { }
  6230. }, {
  6231. closecallback: function () { }
  6232. }, { "style": { "height": "36px" } }).form; //創建窗體
  6233. _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); } }
  6234. break;
  6235. case "Wood": //Wood
  6236. _formdiv = new U.UF.UI.form(
  6237. "海龜編程",
  6238. $$("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/" }), {
  6239. "id": "Wood",
  6240. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6241. "onresize": function () { }
  6242. }, {
  6243. closecallback: function () { }
  6244. }, { "style": { "height": "36px" } }).form; //創建窗體
  6245. _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); } }
  6246. break;
  6247. case "car": //模擬駕駛
  6248. _formdiv = new U.UF.UI.form(
  6249. "模擬駕駛",
  6250. $$("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/" }), {
  6251. "id": "car",
  6252. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6253. "onresize": function () { }
  6254. }, {
  6255. closecallback: function () { }
  6256. }, { "style": { "height": "36px" } }).form; //創建窗體
  6257. _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); } }
  6258. break;
  6259. case "lineSearch": //路徑搜索
  6260. _formdiv = new U.UF.UI.form(
  6261. "路徑搜索",
  6262. $$("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/" }), {
  6263. "id": "lineSearch",
  6264. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //創建窗體
  6269. _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); } }
  6270. break;
  6271. case "deepLearning": //深度學習
  6272. _formdiv = new U.UF.UI.form(
  6273. "深度學習",
  6274. $$("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/#" }), {
  6275. "id": "deepLearning",
  6276. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6277. "onresize": function () { }
  6278. }, {
  6279. closecallback: function () { }
  6280. }, { "style": { "height": "36px" } }).form; //創建窗體
  6281. _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); } }
  6282. break;
  6283. case "allHistory": //深度學習
  6284. _formdiv = new U.UF.UI.form(
  6285. "全歷史",
  6286. $$("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/" }), {
  6287. "id": "allHistory",
  6288. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6289. "onresize": function () { }
  6290. }, {
  6291. closecallback: function () { }
  6292. }, { "style": { "height": "36px" } }).form; //創建窗體
  6293. _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); } }
  6294. break;
  6295. case "chatPDF": //ai編程
  6296. _formdiv = new U.UF.UI.form(
  6297. "chatPDF",
  6298. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6299. "id": "chatPDF",
  6300. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6301. "onresize": function () { }
  6302. }, {
  6303. closecallback: function () { }
  6304. }, { "style": { "height": "36px" } }).form; //創建窗體
  6305. _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); } }
  6306. break;
  6307. case "resources": //國家教育
  6308. _formdiv = new U.UF.UI.form(
  6309. "國家教育",
  6310. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6311. "id": "resources",
  6312. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6313. "onresize": function () { }
  6314. }, {
  6315. closecallback: function () { }
  6316. }, { "style": { "height": "36px" } }).form; //創建窗體
  6317. _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); } }
  6318. break;
  6319. case "codeEdit": //源碼編輯
  6320. _formdiv = new U.UF.UI.form(
  6321. "源碼編輯",
  6322. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6323. "id": "codeEdit",
  6324. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6325. "onresize": function () { }
  6326. }, {
  6327. closecallback: function () { }
  6328. }, { "style": { "height": "36px" } }).form; //創建窗體
  6329. _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); } }
  6330. break; //
  6331. case "MindMap": //MindMap
  6332. _formdiv = new U.UF.UI.form(
  6333. "MindMap",
  6334. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6335. "id": "MindMap",
  6336. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6337. "onresize": function () { }
  6338. }, {
  6339. closecallback: function () { }
  6340. }, { "style": { "height": "36px" } }).form; //創建窗體
  6341. _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); } }
  6342. break;
  6343. case "netWorkPanel": //netWorkPanel
  6344. _formdiv = new U.UF.UI.form(
  6345. "netWorkPanel",
  6346. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6347. "id": "netWorkPanel",
  6348. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6349. "onresize": function () { }
  6350. }, {
  6351. closecallback: function () { }
  6352. }, { "style": { "height": "36px" } }).form; //創建窗體
  6353. _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); } }
  6354. break;
  6355. case "GeoGebra": //GeoGebra
  6356. _formdiv = new U.UF.UI.form(
  6357. "GeoGebra",
  6358. $$("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" }), {
  6359. "id": "GeoGebra",
  6360. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //創建窗體
  6365. _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); } }
  6366. break;
  6367. case "translation": //翻譯
  6368. _formdiv = new U.UF.UI.form(
  6369. "翻譯",
  6370. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6371. "id": "translation",
  6372. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //創建窗體
  6377. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻譯", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6378. break;
  6379. case "mohe": //魔盒
  6380. _formdiv = new U.UF.UI.form(
  6381. "魔盒識字",
  6382. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6383. "id": "mohe",
  6384. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6385. "onresize": function () { }
  6386. }, {
  6387. closecallback: function () { }
  6388. }, { "style": { "height": "36px" } }).form; //創建窗體
  6389. _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); } }
  6390. break;
  6391. case "24game": //24點
  6392. _formdiv = new U.UF.UI.form(
  6393. "24點",
  6394. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6395. "id": "24game",
  6396. "style": { "width": "375px", "height": "667px", "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/24game.png)" }, "name": "24點", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6402. break;
  6403. case "case":
  6404. _formdiv = new U.UF.UI.form(
  6405. "課程進展",
  6406. $$("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 }), {
  6407. "id": "case",
  6408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6409. "onresize": function () { }
  6410. }, {
  6411. closecallback: function () { }
  6412. }, { "style": { "height": "36px" } }).form; //創建窗體
  6413. _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); } }
  6414. break;
  6415. case "snf":
  6416. _formdiv = new U.UF.UI.form(
  6417. "賽諾梵",
  6418. $$("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" }), {
  6419. "id": "snf",
  6420. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6421. "onresize": function () { }
  6422. }, {
  6423. closecallback: function () { }
  6424. }, { "style": { "height": "36px" } }).form; //創建窗體
  6425. _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); } }
  6426. break;
  6427. case "hanFamily":
  6428. _formdiv = new U.UF.UI.form(
  6429. "漢字家族",
  6430. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6431. "id": "hanFamily",
  6432. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6433. "onresize": function () { }
  6434. }, {
  6435. closecallback: function () { }
  6436. }, { "style": { "height": "36px" } }).form; //創建窗體
  6437. _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); } }
  6438. break;
  6439. case "hanClassics":
  6440. _formdiv = new U.UF.UI.form(
  6441. "國學經典",
  6442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6443. "id": "hanClassics",
  6444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6445. "onresize": function () { }
  6446. }, {
  6447. closecallback: function () { }
  6448. }, { "style": { "height": "36px" } }).form; //創建窗體
  6449. _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); } }
  6450. break;
  6451. case "hanTraining":
  6452. _formdiv = new U.UF.UI.form(
  6453. "筆畫訓練",
  6454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6455. "id": "hanTraining",
  6456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6457. "onresize": function () { }
  6458. }, {
  6459. closecallback: function () { }
  6460. }, { "style": { "height": "36px" } }).form; //創建窗體
  6461. _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); } }
  6462. break;
  6463. case "hanClass":
  6464. _formdiv = new U.UF.UI.form(
  6465. "書法課堂",
  6466. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6467. "id": "hanClass",
  6468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6469. "onresize": function () { }
  6470. }, {
  6471. closecallback: function () { }
  6472. }, { "style": { "height": "36px" } }).form; //創建窗體
  6473. _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); } }
  6474. break;
  6475. case "han":
  6476. _formdiv = new U.UF.UI.form(
  6477. "漢字宮",
  6478. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6479. "id": "han",
  6480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6481. "onresize": function () { }
  6482. }, {
  6483. closecallback: function () { }
  6484. }, { "style": { "height": "36px" } }).form; //創建窗體
  6485. _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); } }
  6486. break;
  6487. case "projectGM": //課程管理
  6488. _formdiv = new U.UF.UI.form(
  6489. "課程管理",
  6490. $$("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 }), {
  6491. "id": "projectGM",
  6492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6493. "onresize": function () { }
  6494. }, {
  6495. closecallback: function () { }
  6496. }, { "style": { "height": "36px" } }).form; //創建窗體
  6497. _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); } }
  6498. break;
  6499. case "studyGM": //課程中心
  6500. _formdiv = new U.UF.UI.form(
  6501. "課程中心",
  6502. $$("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
  6503. "id": "study",
  6504. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6505. "onresize": function () { }
  6506. }, {
  6507. closecallback: function () { }
  6508. }, { "style": { "height": "36px" } }).form; //創建窗體
  6509. _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); } }
  6510. break;
  6511. // studentGM
  6512. case "studentGM": //學生管理
  6513. _formdiv = new U.UF.UI.form(
  6514. "學生管理",
  6515. $$("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 }), {
  6516. "id": "studentGM",
  6517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6518. "onresize": function () { }
  6519. }, {
  6520. closecallback: function () { }
  6521. }, { "style": { "height": "36px" } }).form; //創建窗體
  6522. _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); } }
  6523. break;
  6524. case "evaluateGM": //學生評價
  6525. _formdiv = new U.UF.UI.form(
  6526. "學生評價",
  6527. $$("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 }), {
  6528. "id": "evaluateGM",
  6529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6530. "onresize": function () { }
  6531. }, {
  6532. closecallback: function () { }
  6533. }, { "style": { "height": "36px" } }).form; //創建窗體
  6534. _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); } }
  6535. break;
  6536. // classGM
  6537. case "classGM": //班級管理
  6538. _formdiv = new U.UF.UI.form(
  6539. "班級管理",
  6540. $$("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 }), {
  6541. "id": "classGM",
  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/gm/class.png)" }, "name": "班級管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6548. break;
  6549. // dataGM
  6550. case "dataGM":
  6551. _formdiv = new U.UF.UI.form(
  6552. "我的資料",
  6553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6554. "id": "dataGM",
  6555. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. closecallback: function () { }
  6559. }, { "style": { "height": "36px" } }).form; //創建窗體
  6560. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6561. break;
  6562. // caseGM
  6563. case "caseGM": //課程進展
  6564. _formdiv = new U.UF.UI.form(
  6565. "課程進展",
  6566. $$("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 }), {
  6567. "id": "caseGM",
  6568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6569. "onresize": function () { }
  6570. }, {
  6571. closecallback: function () { }
  6572. }, { "style": { "height": "36px" } }).form; //創建窗體
  6573. _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); } }
  6574. break;
  6575. // meterialGM
  6576. case "meterialGM": //素材庫
  6577. _formdiv = new U.UF.UI.form(
  6578. "素材庫",
  6579. $$("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 }), {
  6580. "id": "meterialGM",
  6581. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, { "style": { "height": "36px" } }).form; //創建窗體
  6586. _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); } }
  6587. break;
  6588. // evaluateSGM
  6589. case "evaluateSGM": //我的評價
  6590. _formdiv = new U.UF.UI.form(
  6591. "我的評價",
  6592. $$("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 }), {
  6593. "id": "evaluateSGM",
  6594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6595. "onresize": function () { }
  6596. }, {
  6597. closecallback: function () { }
  6598. }, { "style": { "height": "36px" } }).form; //創建窗體
  6599. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6600. break;
  6601. case "jupyter": //jupyter
  6602. _formdiv = new U.UF.UI.form(
  6603. "jupyter",
  6604. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6605. "id": "jupyter",
  6606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6607. "onresize": function () { }
  6608. }, {
  6609. closecallback: function () { }
  6610. }, { "style": { "height": "36px" } }).form; //創建窗體
  6611. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6612. break;
  6613. case "number": //數字實驗室
  6614. _formdiv = new U.UF.UI.form(
  6615. "數字實驗室",
  6616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6617. "id": "number",
  6618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //創建窗體
  6623. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "數字實驗室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6624. break;
  6625. case "studentCourse": //項目管理 學生
  6626. _formdiv = new U.UF.UI.form(
  6627. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6628. $$("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 }), {
  6629. "id": "studentCourse",
  6630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, { "style": { "height": "36px" } }).form; //創建窗體
  6635. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6636. break;
  6637. case "studentCourseS": //項目管理 老師
  6638. _formdiv = new U.UF.UI.form(
  6639. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6640. $$("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 }), {
  6641. "id": "studentCourseS",
  6642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () { }
  6646. }, { "style": { "height": "36px" } }).form; //創建窗體
  6647. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6648. break;
  6649. case "studentIndex": //項目中心
  6650. _formdiv = new U.UF.UI.form(
  6651. "項目中心",
  6652. $$("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 }), {
  6653. "id": "studentIndex",
  6654. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6655. "onresize": function () { }
  6656. }, {
  6657. closecallback: function () { }
  6658. }, { "style": { "height": "36px" } }).form; //創建窗體
  6659. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6660. break;
  6661. case "CaseDesignS":
  6662. _formdiv = new U.UF.UI.form(
  6663. "項目進展",
  6664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6665. "id": "case",
  6666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6667. "onresize": function () { }
  6668. }, {
  6669. closecallback: function () { }
  6670. }, { "style": { "height": "36px" } }).form; //創建窗體
  6671. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "項目進展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6672. break;
  6673. case "tcStudent": //騰訊學生管理
  6674. _formdiv = new U.UF.UI.form(
  6675. "學生管理",
  6676. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6677. "id": "tcStudent",
  6678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6679. "onresize": function () { }
  6680. }, {
  6681. closecallback: function () { }
  6682. }, { "style": { "height": "36px" } }).form; //創建窗體
  6683. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "學生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6684. break;
  6685. case "tcSchool": //騰訊學校管理
  6686. _formdiv = new U.UF.UI.form(
  6687. "學校管理",
  6688. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6689. "id": "tcSchool",
  6690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6691. "onresize": function () { }
  6692. }, {
  6693. closecallback: function () { }
  6694. }, { "style": { "height": "36px" } }).form; //創建窗體
  6695. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "學校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6696. break;
  6697. case "tcTeacher": //騰訊學校管理
  6698. _formdiv = new U.UF.UI.form(
  6699. "教師管理",
  6700. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6701. "id": "tcTeacher",
  6702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6703. "onresize": function () { }
  6704. }, {
  6705. closecallback: function () { }
  6706. }, { "style": { "height": "36px" } }).form; //創建窗體
  6707. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教師管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6708. break;
  6709. case "teacher":
  6710. _formdiv = new U.UF.UI.form(
  6711. "教師管理",
  6712. $$("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 }), {
  6713. "id": "teacher",
  6714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //創建窗體
  6719. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教師管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6720. break;
  6721. case "tcData": //騰訊我的資料
  6722. _formdiv = new U.UF.UI.form(
  6723. "我的資料",
  6724. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6725. "id": "tcData",
  6726. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //創建窗體
  6731. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6732. break;
  6733. case "tcNotice": //騰訊消息通知
  6734. _formdiv = new U.UF.UI.form(
  6735. "消息通知",
  6736. $$("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 }), {
  6737. "id": "tcNotice",
  6738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () { }
  6742. }, { "style": { "height": "36px" } }).form; //創建窗體
  6743. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6744. break;
  6745. case "myReport": //好友打開
  6746. _formdiv = new U.UF.UI.form(
  6747. "我的評價",
  6748. $$("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 }), {
  6749. "id": "myReport",
  6750. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //創建窗體
  6755. _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); } }
  6756. break;
  6757. case "learnAna": //好友打開
  6758. _formdiv = new U.UF.UI.form(
  6759. "學習分析",
  6760. $$("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 }), {
  6761. "id": "learnAna",
  6762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //創建窗體
  6767. _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); } }
  6768. break;
  6769. case "AIChat": //AI共創
  6770. _formdiv = new U.UF.UI.form(
  6771. "AI共創",
  6772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  6773. "id": "AIChat",
  6774. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. istop: true,
  6778. closecallback: function () { $("#aichat_icon").remove(); },
  6779. narrowcallback: function () {
  6780. if (!$("#aichat_icon")[0]) {
  6781. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6782. }
  6783. },
  6784. }, { "style": { "height": "36px" } }).form; //創建窗體
  6785. _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); } }
  6786. break;
  6787. case "ainew": //AI共創
  6788. _formdiv = new U.UF.UI.form(
  6789. "AI協同",
  6790. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  6791. "id": "ainew",
  6792. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6793. "onresize": function () { }
  6794. }, {
  6795. closecallback: function () { }
  6796. }, { "style": { "height": "36px" } }).form; //創建窗體
  6797. _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); } }
  6798. break;
  6799. case "gpt4": //gpt4
  6800. _formdiv = new U.UF.UI.form(
  6801. "AI助手",
  6802. $$("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 }), {
  6803. "id": "gpt4",
  6804. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6805. "onresize": function () { }
  6806. }, {
  6807. closecallback: function () { }
  6808. }, { "style": { "height": "36px" } }).form; //創建窗體
  6809. _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); } }
  6810. break;
  6811. case "aigpt": //gpt4
  6812. _formdiv = new U.UF.UI.form(
  6813. "AI助手+",
  6814. $$("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 }), {
  6815. "id": "aigpt",
  6816. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6817. "onresize": function () { }
  6818. }, {
  6819. closecallback: function () {
  6820. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6821. }
  6822. }, { "style": { "height": "36px" } }).form; //創建窗體
  6823. _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); } }
  6824. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6825. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6826. })
  6827. break;
  6828. case "aiKnowledge": //aiKnowledge
  6829. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  6830. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6831. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6832. }
  6833. _formdiv = new U.UF.UI.form(
  6834. "知識建構",
  6835. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  6836. "id": "aiKnowledge",
  6837. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6838. "onresize": function () { }
  6839. }, {
  6840. closecallback: function () { }
  6841. }, { "style": { "height": "36px" } }).form; //創建窗體
  6842. _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); } }
  6843. break;
  6844. case "futureClass": //AI共創
  6845. _formdiv = new U.UF.UI.form(
  6846. "協同建構",
  6847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  6848. "id": "synergyCourse",
  6849. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () {
  6853. $("iframe", _formdiv)[0].contentWindow.loginout();
  6854. }
  6855. }, { "style": { "height": "36px" } }).form; //創建窗體
  6856. _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); } }
  6857. break;
  6858. case "aiagent": //ai agent
  6859. _formdiv = new U.UF.UI.form(
  6860. "AI Agent",
  6861. $$("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" }), {
  6862. "id": "AIAgent",
  6863. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, { "style": { "height": "36px" } }).form; //創建窗體
  6868. _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); } }
  6869. break;
  6870. case "dataBoard": //數據看板
  6871. _formdiv = new U.UF.UI.form(
  6872. "數據看板",
  6873. $$("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 }), {
  6874. "id": "dataBoard",
  6875. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, { "style": { "height": "36px" } }).form; //創建窗體
  6880. _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); } }
  6881. break;
  6882. case "dataBoardSies": //數據融合
  6883. _formdiv = new U.UF.UI.form(
  6884. "數據融合",
  6885. $$("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 }), {
  6886. "id": "dataBoardSies",
  6887. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //創建窗體
  6892. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "數據融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6893. break;
  6894. case "dataBoardNew": //數據看板
  6895. _formdiv = new U.UF.UI.form(
  6896. "綜合看板",
  6897. $$("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 }), {
  6898. "id": "dataBoardNew",
  6899. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //創建窗體
  6904. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "綜合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6905. break;
  6906. case "dataBoardTest": //數據看板
  6907. _formdiv = new U.UF.UI.form(
  6908. "評測看板",
  6909. $$("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 }), {
  6910. "id": "dataBoardTest",
  6911. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6912. "onresize": function () { }
  6913. }, {
  6914. closecallback: function () { }
  6915. }, { "style": { "height": "36px" } }).form; //創建窗體
  6916. _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); } }
  6917. break;
  6918. case "AIAnalyse": //AI共創
  6919. _formdiv = new U.UF.UI.form(
  6920. "AI分析",
  6921. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  6922. "id": "AIAnalyse",
  6923. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6924. "onresize": function () { }
  6925. }, {
  6926. closecallback: function () { }
  6927. }, { "style": { "height": "36px" } }).form; //創建窗體
  6928. _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); } }
  6929. break;
  6930. case "studioCourse": //AI共創
  6931. _formdiv = new U.UF.UI.form(
  6932. "工作管理",
  6933. $$("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 }), {
  6934. "id": "studioCourse",
  6935. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6936. "onresize": function () { }
  6937. }, {
  6938. closecallback: function () { }
  6939. }, { "style": { "height": "36px" } }).form; //創建窗體
  6940. _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); } }
  6941. break;
  6942. case "studioIndex": //AI共創
  6943. _formdiv = new U.UF.UI.form(
  6944. "工作中心",
  6945. $$("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 }), {
  6946. "id": "studioIndex",
  6947. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6948. "onresize": function () { }
  6949. }, {
  6950. closecallback: function () { }
  6951. }, { "style": { "height": "36px" } }).form; //創建窗體
  6952. _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); } }
  6953. break;
  6954. case "source":
  6955. _formdiv = new U.UF.UI.form(
  6956. "教學資源",
  6957. $$("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 }), {
  6958. "id": "source",
  6959. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6960. "onresize": function () { }
  6961. }, {
  6962. closecallback: function () { }
  6963. }, { "style": { "height": "36px" } }).form; //創建窗體
  6964. _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); } }
  6965. break;
  6966. case "testTeacher":
  6967. _formdiv = new U.UF.UI.form(
  6968. "智能表單",
  6969. $$("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 }), {
  6970. "id": "testTeacher",
  6971. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6972. "onresize": function () { }
  6973. }, {
  6974. closecallback: function () { }
  6975. }, { "style": { "height": "36px" } }).form; //創建窗體
  6976. _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); } }
  6977. break;
  6978. case "testStudent":
  6979. _formdiv = new U.UF.UI.form(
  6980. "教師中心",
  6981. $$("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 }), {
  6982. "id": "testStudent",
  6983. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6984. "onresize": function () { }
  6985. }, {
  6986. closecallback: function () { }
  6987. }, { "style": { "height": "36px" } }).form; //創建窗體
  6988. _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); } }
  6989. break;
  6990. case "testTeacherSies":
  6991. _formdiv = new U.UF.UI.form(
  6992. "教師管理",
  6993. $$("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 }), {
  6994. "id": "testTeacherSies",
  6995. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6996. "onresize": function () { }
  6997. }, {
  6998. closecallback: function () { }
  6999. }, { "style": { "height": "36px" } }).form; //創建窗體
  7000. _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); } }
  7001. break;
  7002. case "testStudentSies":
  7003. _formdiv = new U.UF.UI.form(
  7004. "教師中心",
  7005. $$("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 }), {
  7006. "id": "testStudentSies",
  7007. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. closecallback: function () { }
  7011. }, { "style": { "height": "36px" } }).form; //創建窗體
  7012. _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); } }
  7013. break;
  7014. case "ytpbl": //消息通知
  7015. _formdiv = new U.UF.UI.form(
  7016. "案例征集",
  7017. $$("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 }), {
  7018. "id": "ytpbl",
  7019. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7020. "onresize": function () { }
  7021. }, {
  7022. closecallback: function () { }
  7023. }, { "style": { "height": "36px" } }).form; //創建窗體
  7024. _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); } }
  7025. // 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");
  7026. break;
  7027. case "aiCourseResource": //人工智能窗體
  7028. _formdiv = new U.UF.UI.form(
  7029. false,
  7030. $$("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 }), {
  7031. "id": "aiCourseResource",
  7032. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7033. "onresize": function () { },
  7034. "isdrag": false,
  7035. }, {
  7036. closecallback: function () { }
  7037. }, { "style": { "height": "36px" } }).form; //創建窗體
  7038. _taskbar = ''
  7039. break;
  7040. case "szdjgCocooroboX": //圖形化編程
  7041. _formdiv = new U.UF.UI.form(
  7042. "圖形化編程",
  7043. $$("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" }), {
  7044. "id": "szdjgCocooroboX",
  7045. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7046. "onresize": function () { }
  7047. }, {
  7048. closecallback: function () { }
  7049. }, { "style": { "height": "36px" } }).form; //創建窗體
  7050. _taskbar = ''
  7051. break;
  7052. case "szdjgPython": //python編程
  7053. _formdiv = new U.UF.UI.form(
  7054. "Python編程",
  7055. $$("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" }), {
  7056. "id": "szdjgPython",
  7057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7058. "onresize": function () { }
  7059. }, {
  7060. closecallback: function () { }
  7061. }, { "style": { "height": "36px" } }).form; //創建窗體
  7062. _taskbar = ''
  7063. break;
  7064. case "Record":
  7065. _formdiv = new U.UF.UI.form(
  7066. "觀察記錄",
  7067. $$("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 }), {
  7068. "id": "Record",
  7069. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7070. "onresize": function () { }
  7071. }, {
  7072. closecallback: function () { }
  7073. }, { "style": { "height": "36px" } }).form; //創建窗體
  7074. _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); } }
  7075. break;
  7076. case "aigptCourse":
  7077. _formdiv = new U.UF.UI.form(
  7078. "AI智能體",
  7079. $$("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' }), {
  7080. "id": "aigptCourse",
  7081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7082. "onresize": function () { }
  7083. }, {
  7084. closecallback: function () { }
  7085. }, { "style": { "height": "36px" } }).form; //創建窗體
  7086. _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); } }
  7087. break;
  7088. case "classroomObservation":
  7089. _formdiv = new U.UF.UI.form(
  7090. "課堂觀察",
  7091. $$("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 }), {
  7092. "id": "classroomObservation",
  7093. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7094. "onresize": function () { }
  7095. }, {
  7096. closecallback: function () { }
  7097. }, { "style": { "height": "36px" } }).form; //創建窗體
  7098. _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); } }
  7099. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7100. break;
  7101. case "pblCourse":
  7102. _formdiv = new U.UF.UI.form(
  7103. "學生PBL",
  7104. $$("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 }), {
  7105. "id": "pblCourse",
  7106. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7107. "onresize": function () { }
  7108. }, {
  7109. closecallback: function () { }
  7110. }, { "style": { "height": "36px" } }).form; //創建窗體
  7111. _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); } }
  7112. break;
  7113. case "appStore":
  7114. _formdiv = new U.UF.UI.form(
  7115. "CocoFlow",
  7116. $$("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 }), {
  7117. "id": "appStore",
  7118. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7119. "onresize": function () { }
  7120. }, {
  7121. closecallback: function () { }
  7122. }, { "style": { "height": "36px" } }).form; //創建窗體
  7123. _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); } }
  7124. break;
  7125. case "sassPlatform":
  7126. _formdiv = new U.UF.UI.form(
  7127. "Sass通用後臺管理",
  7128. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7129. "id": "sassPlatform",
  7130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7131. "onresize": function () { }
  7132. }, {
  7133. closecallback: function () { }
  7134. }, { "style": { "height": "36px" } }).form; //創建窗體
  7135. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7136. break;
  7137. case "EDU":
  7138. _formdiv = new U.UF.UI.form(
  7139. "EDU",
  7140. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7141. "id": "EDU",
  7142. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7143. "onresize": function () { }
  7144. }, {
  7145. closecallback: function () { }
  7146. }, { "style": { "height": "36px" } }).form; //創建窗體
  7147. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7148. break;
  7149. case "knowledge":
  7150. _formdiv = new U.UF.UI.form(
  7151. "知識庫",
  7152. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7153. "id": "knowledge",
  7154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7155. "onresize": function () { }
  7156. }, {
  7157. closecallback: function () { }
  7158. }, { "style": { "height": "36px" } }).form; //創建窗體
  7159. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7160. break;
  7161. case "userExamine":
  7162. _formdiv = new U.UF.UI.form(
  7163. "賬號申請",
  7164. $$("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" }), {
  7165. "id": "userExamine",
  7166. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7167. "onresize": function () { }
  7168. }, {
  7169. closecallback: function () { }
  7170. }, { "style": { "height": "36px" } }).form; //創建窗體
  7171. break;
  7172. }
  7173. //U.MD.D.I.openClick(str);
  7174. //如果有任務欄信息
  7175. if (_taskbar) {
  7176. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7177. }
  7178. if(iframeBool){
  7179. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7180. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7181. // console.log("iframe进入");
  7182. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7183. // };
  7184. setTimeout(() => {
  7185. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7186. }, 2000);
  7187. }
  7188. }
  7189. // U.MD.D.I.openClick = function(str){
  7190. // var click = '';
  7191. // switch(str){
  7192. // case 'friend':
  7193. // click = '我的好友';
  7194. // break;
  7195. // case 'domain':
  7196. // click = '域名管理';
  7197. // break;
  7198. // case 'disk':
  7199. // click = '我的雲盤';
  7200. // break;
  7201. // case 'word':
  7202. // click = 'Word';
  7203. // break;
  7204. // case 'excel':
  7205. // click = 'Execl';
  7206. // break;
  7207. // case 'txt':
  7208. // click = '文本文件';
  7209. // break;
  7210. // case 'lookupFriend':
  7211. // click = '查找好友';
  7212. // break;
  7213. // case 'ftp':
  7214. // click = 'FTP';
  7215. // break;
  7216. // case 'group':
  7217. // click = '群組';
  7218. // break;
  7219. // case 'set':
  7220. // click = '我的設置';
  7221. // break;
  7222. // case 'systemSet':
  7223. // click = '系統設置';
  7224. // break;
  7225. // case 'boomYun':
  7226. // click = '互聯辦公';
  7227. // break;
  7228. // case 'xz':
  7229. // click = '雲端下載';
  7230. // break;
  7231. // case 'client':
  7232. // click = '有思瀏覽器';
  7233. // break;
  7234. // case 'backEndProgramming':
  7235. // click = '在線後臺編程';
  7236. // break;
  7237. // case 'frontEndProgramming':
  7238. // click = '在線前端編程';
  7239. // break;
  7240. // default: break;
  7241. // }
  7242. // if(U.MD.D.I.Ip && click){
  7243. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7244. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7245. // })
  7246. // }
  7247. // }
  7248. /**
  7249. *函數作用:ajax簡易函數,使用post格式
  7250. *@param url {data} 後臺地址
  7251. *@param data {data} 參數json
  7252. *@param fn {data} 回調函數
  7253. *
  7254. */
  7255. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7256. // var xhr = new XMLHttpRequest();
  7257. // xhr.open("GET",url,true);
  7258. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7259. // xhr.onreadystatechange = function(){
  7260. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7261. // fn.call(this,xhr.responseText);
  7262. // }
  7263. // };
  7264. // xhr.send();
  7265. // }
  7266. /*判斷是否是內網IP*/
  7267. // U.MD.D.I.isInnerIPFn = function(str){
  7268. // var curPageUrl = str;
  7269. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7270. // curPageUrl =curPageUrl.replace(reg1,'');
  7271. // // console.log('curPageUrl-1 '+curPageUrl);
  7272. // var reg2 = /\:+/g;//替換冒號為一點
  7273. // curPageUrl =curPageUrl.replace(reg2,'.');
  7274. // // console.log('curPageUrl-2 '+curPageUrl);
  7275. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7276. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7277. // if(curPageUrl[2] != '16'){
  7278. // return ipAddress;
  7279. // }else{
  7280. // return false;
  7281. // }
  7282. // }
  7283. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7284. // //compatibility for firefox and chrome
  7285. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7286. // var pc = new myPeerConnection({
  7287. // iceServers: []
  7288. // }),
  7289. // noop = function() {},
  7290. // localIPs = {},
  7291. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7292. // key;
  7293. // function iterateIP(ip) {
  7294. // if (!localIPs[ip]) onNewIP(ip);
  7295. // localIPs[ip] = true;
  7296. // }
  7297. // //create a bogus data channel
  7298. // pc.createDataChannel("");
  7299. // // create offer and set local description
  7300. // pc.createOffer().then(function(sdp) {
  7301. // sdp.sdp.split('\n').forEach(function(line) {
  7302. // if (line.indexOf('candidate') < 0) return;
  7303. // line.match(ipRegex).forEach(iterateIP);
  7304. // });
  7305. // pc.setLocalDescription(sdp, noop, noop);
  7306. // }).catch(function(reason) {
  7307. // // An error occurred, so handle the failure to connect
  7308. // });
  7309. // //sten for candidate events
  7310. // pc.onicecandidate = function(ice) {
  7311. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7312. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7313. // };
  7314. // }
  7315. // U.MD.D.I.getUserIpBool = function(callback){
  7316. // U.MD.D.I.getUserIP(function(ip){
  7317. // alert("Got IP! :" + ip);
  7318. // });
  7319. //}
  7320. //#endregion
  7321. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7322. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7323. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7324. _userinfo = US.userInfo, //登錄用戶信息
  7325. _userid = US.userInfo.userid //登錄用戶id
  7326. let _iframe;
  7327. let _cid = cid,
  7328. _stage = stage,
  7329. _task = task,
  7330. _tool = tool;
  7331. var _jie = $$("div", {
  7332. "style": {
  7333. "position": "absolute",
  7334. "bottom": "50px",
  7335. "right": "50px",
  7336. "zIndex": "9999",
  7337. "backgroundColor": "#2268bc",
  7338. "color": "#fff",
  7339. "padding": "12px 20px",
  7340. "cursor": "pointer",
  7341. "borderRadius": "4px",
  7342. },
  7343. "innerHTML": "提交作業"
  7344. })
  7345. let aTool = ''
  7346. let _loading = document.createElement('div')
  7347. _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;"
  7348. // _loading.id = "";
  7349. let _lchild = document.createElement('div')
  7350. let _limg = document.createElement('img')
  7351. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7352. _limg.style = "width: 26px;margin-right: 10px;"
  7353. _lchild.appendChild(_limg)
  7354. let _lspan = document.createElement('span')
  7355. _lspan.innerHTML = "上傳中..."
  7356. _lchild.appendChild(_lspan)
  7357. _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%);"
  7358. _loading.appendChild(_lchild)
  7359. var _box = $$('div', {
  7360. "style": {
  7361. "position": "relative",
  7362. "width": "100%",
  7363. "height": "100%",
  7364. },
  7365. })
  7366. _box.appendChild(_loading)
  7367. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7368. switch (str) {
  7369. case "whiteboard":
  7370. aTool = 1;
  7371. _iframe = $$("iframe", {
  7372. "frameborder": "no",
  7373. "border": "0",
  7374. "scrolling ": "no",
  7375. "style": {
  7376. "cssText": "border:0;width:100%;height:100%"
  7377. },
  7378. "src": "https://iwb.cocorobo.hk/"
  7379. })
  7380. _box.appendChild(_iframe);
  7381. _box.appendChild(_jie);
  7382. _formdiv = new U.UF.UI.form(
  7383. "電子白板",
  7384. _box, {
  7385. "id": "whiteboard" + cid + stage + task + tool,
  7386. "style": {
  7387. "width": "90%",
  7388. "height": "90%",
  7389. "overflow": 'hidden'
  7390. },
  7391. "onresize": function () { }
  7392. }, {
  7393. closecallback: function () { }
  7394. }, {
  7395. "style": {
  7396. "height": "36px"
  7397. }
  7398. }).form; //創建窗體
  7399. _taskbar = {
  7400. "id": str + _formdiv.id,
  7401. "style": {
  7402. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7403. },
  7404. "name": "電子白板",
  7405. "forms": _formdiv,
  7406. "click": function () {
  7407. U.MD.D.I.openApplication(str, obj, info);
  7408. }
  7409. }
  7410. break;
  7411. case "mind":
  7412. aTool = 3;
  7413. _iframe = $$("iframe", {
  7414. "frameborder": "no",
  7415. "border": "0",
  7416. "scrolling ": "no",
  7417. "style": {
  7418. "cssText": "border:0;width:100%;height:100%"
  7419. },
  7420. "src": "/kityminder-editor/dist/index.html"
  7421. })
  7422. _box.appendChild(_iframe);
  7423. _box.appendChild(_jie);
  7424. _formdiv = new U.UF.UI.form(
  7425. "思維導圖",
  7426. _box, { //"/jsmind/example/demo.html"
  7427. "id": "mind" + cid + stage + task + tool,
  7428. "style": {
  7429. "width": "90%",
  7430. "height": "90%",
  7431. "overflow": 'hidden'
  7432. },
  7433. "onresize": function () { }
  7434. }, {
  7435. closecallback: function () { }
  7436. }, {
  7437. "style": {
  7438. "height": "36px"
  7439. }
  7440. }).form; //創建窗體
  7441. _taskbar = {
  7442. "id": str + _formdiv.id,
  7443. "style": {
  7444. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7445. },
  7446. "name": "思維導圖",
  7447. "forms": _formdiv,
  7448. "click": function () {
  7449. U.MD.D.I.openApplication(str, obj, info);
  7450. }
  7451. }
  7452. break;
  7453. case "MindMap":
  7454. aTool = 3;
  7455. _iframe = $$("iframe", {
  7456. "frameborder": "no",
  7457. "border": "0",
  7458. "scrolling ": "no",
  7459. "style": {
  7460. "cssText": "border:0;width:100%;height:100%"
  7461. },
  7462. "src": "//cloud.cocorobo.hk/mind/"
  7463. })
  7464. _box.appendChild(_iframe);
  7465. _box.appendChild(_jie);
  7466. _formdiv = new U.UF.UI.form(
  7467. "思維導圖",
  7468. _box, { //"/jsmind/example/demo.html"
  7469. "id": "mind" + cid + stage + task + tool,
  7470. "style": {
  7471. "width": "90%",
  7472. "height": "90%",
  7473. "overflow": 'hidden'
  7474. },
  7475. "onresize": function () { }
  7476. }, {
  7477. closecallback: function () { }
  7478. }, {
  7479. "style": {
  7480. "height": "36px"
  7481. }
  7482. }).form; //創建窗體
  7483. _taskbar = {
  7484. "id": str + _formdiv.id,
  7485. "style": {
  7486. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7487. },
  7488. "name": "思維導圖",
  7489. "forms": _formdiv,
  7490. "click": function () {
  7491. U.MD.D.I.openApplication(str, obj, info);
  7492. }
  7493. }
  7494. break;
  7495. case "doc":
  7496. aTool = 6;
  7497. _iframe = $$("iframe", {
  7498. "frameborder": "no",
  7499. "border": "0",
  7500. "scrolling ": "no",
  7501. "style": {
  7502. "cssText": "border:0;width:100%;height:100%"
  7503. },
  7504. "src": "/Office/Word/WordEditArea.htm"
  7505. })
  7506. _box.appendChild(_iframe);
  7507. _box.appendChild(_jie);
  7508. _formdiv = new U.UF.UI.form(
  7509. "協同文檔",
  7510. _box, {
  7511. "id": "doc" + cid + stage + task + tool,
  7512. "style": {
  7513. "width": "90%",
  7514. "height": "90%",
  7515. "overflow": 'hidden'
  7516. },
  7517. "onresize": function () { }
  7518. }, {
  7519. closecallback: function () { }
  7520. }, {
  7521. "style": {
  7522. "height": "36px"
  7523. }
  7524. }).form; //創建窗體
  7525. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7526. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7527. })
  7528. _taskbar = {
  7529. "id": str + _formdiv.id,
  7530. "style": {
  7531. "backgroundImage": "url(/img/icon/doc.png)"
  7532. },
  7533. "name": "協同文檔",
  7534. "forms": _formdiv,
  7535. "click": function () {
  7536. U.MD.D.I.openApplication(str, obj, info);
  7537. }
  7538. }
  7539. break;
  7540. case "mindNetwork": //好友打開
  7541. aTool = 7;
  7542. _iframe = $$("iframe", {
  7543. "webkitallowfullscreen": "",
  7544. "mozallowfullscreen": "",
  7545. "allowfullscreen": "",
  7546. "frameborder": "no",
  7547. "border": "0",
  7548. "scrolling ": "no",
  7549. "style": {
  7550. "cssText": "border:0; width:100%; height:100%;"
  7551. },
  7552. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7553. })
  7554. _box.appendChild(_iframe);
  7555. _box.appendChild(_jie);
  7556. _formdiv = new U.UF.UI.form(
  7557. "思維網格",
  7558. _box, {
  7559. "id": "mindNetwork" + cid + stage + task + tool,
  7560. "style": {
  7561. "width": "90%",
  7562. "height": "90%",
  7563. "overflow": 'hidden'
  7564. },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, {
  7569. "style": {
  7570. "height": "36px"
  7571. }
  7572. }).form; //創建窗體
  7573. _taskbar = {
  7574. "id": str + _formdiv.id,
  7575. "style": {
  7576. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7577. },
  7578. "name": "思維網格",
  7579. "forms": _formdiv,
  7580. "click": function () {
  7581. U.MD.D.I.openApplication(str, obj, info);
  7582. }
  7583. }
  7584. break;
  7585. case "courseDesign":
  7586. _iframe = $$("iframe", {
  7587. "webkitallowfullscreen": "",
  7588. "mozallowfullscreen": "",
  7589. "allowfullscreen": "",
  7590. "frameborder": "no",
  7591. "border": "0",
  7592. "scrolling ": "no",
  7593. "style": {
  7594. "cssText": "border:0; width:100%; height:100%;"
  7595. },
  7596. "src": "/course-design-vue"
  7597. })
  7598. _box.appendChild(_iframe);
  7599. _box.appendChild(_jie);
  7600. _formdiv = new U.UF.UI.form(
  7601. "項目設計",
  7602. _box, {
  7603. "id": "courseDesign" + cid + stage + task + tool,
  7604. "style": {
  7605. "width": "90%",
  7606. "height": "90%",
  7607. "overflow": 'hidden'
  7608. },
  7609. "onresize": function () { }
  7610. }, {
  7611. closecallback: function () { }
  7612. }, {
  7613. "style": {
  7614. "height": "36px"
  7615. }
  7616. }).form; //創建窗體
  7617. _taskbar = {
  7618. "id": str + _formdiv.id,
  7619. "style": {
  7620. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7621. },
  7622. "name": "項目設計",
  7623. "forms": _formdiv,
  7624. "click": function () {
  7625. U.MD.D.I.openApplication(str, obj, info);
  7626. }
  7627. }
  7628. break;
  7629. }
  7630. const script1 = document.createElement("script");
  7631. script1.type = "text/javascript";
  7632. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7633. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7634. const script2 = document.createElement("script");
  7635. script2.type = "text/javascript";
  7636. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7637. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7638. const script3 = document.createElement("script");
  7639. script3.type = "text/javascript";
  7640. script3.charset = "UTF-8";
  7641. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7642. const script4 = document.createElement("script");
  7643. script4.type = "text/javascript";
  7644. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7645. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7646. if (_iframe) {
  7647. if (str == 'doc') {
  7648. _iframe = _formdiv.querySelector('iframe')
  7649. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7650. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7651. _iframe.contentWindow.document.body.appendChild(script1);
  7652. _iframe.contentWindow.document.body.appendChild(script2);
  7653. // _iframe.contentWindow.document.body.appendChild(script3);
  7654. _iframe.contentWindow.document.body.appendChild(script4);
  7655. })
  7656. if (onloadListener) {
  7657. _iframe.contentDocument.location.reload()
  7658. } else {
  7659. _iframe.contentDocument.location.reload()
  7660. }
  7661. } else if (str == 'courseDesign') {
  7662. U.UF.DL.iframeLoad(_iframe, function () {
  7663. // _iframe.contentWindow.U.MD.O.W.load();
  7664. // _iframe.contentWindow.document.body.appendChild(script1);
  7665. _iframe.contentWindow.document.body.appendChild(script2);
  7666. _iframe.contentWindow.document.body.appendChild(script4);
  7667. })
  7668. } else if (str == 'mind') {
  7669. _iframe = _formdiv.querySelector('iframe')
  7670. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7671. //
  7672. _iframe.contentWindow.document.body.appendChild(script1);
  7673. _iframe.contentWindow.document.body.appendChild(script2);
  7674. _iframe.contentWindow.document.body.appendChild(script4);
  7675. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7676. })
  7677. if (onloadListener) {
  7678. _iframe.contentDocument.location.reload()
  7679. } else {
  7680. _iframe.contentDocument.location.reload()
  7681. }
  7682. } else if (str == 'whiteboard') {
  7683. _iframe = _formdiv.querySelector('iframe')
  7684. let onloadListener = _iframe.onload = () => {
  7685. _iframe.contentWindow.document.body.appendChild(script1);
  7686. _iframe.contentWindow.document.body.appendChild(script2);
  7687. _iframe.contentWindow.document.body.appendChild(script4);
  7688. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7689. };
  7690. // if (onloadListener) {
  7691. // try {
  7692. // _iframe.src += "?cocorobo="+new Date().getTime()
  7693. // _iframe.contentWindow.document.location.reload()
  7694. // } catch (error) {
  7695. // }
  7696. // } else {
  7697. // _iframe.contentDocument.location.reload()
  7698. // }
  7699. } else {
  7700. _iframe.onload = () => {
  7701. _iframe.contentWindow.document.body.appendChild(script1);
  7702. _iframe.contentWindow.document.body.appendChild(script2);
  7703. // _iframe.contentWindow.document.body.appendChild(script3);
  7704. _iframe.contentWindow.document.body.appendChild(script4);
  7705. };
  7706. }
  7707. _jie.onclick = async () => {
  7708. let text = ''
  7709. if (aTool == 1) {
  7710. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7711. } else if (aTool == 6) {
  7712. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7713. } else if (aTool == 3) {
  7714. text = await U.MD.D.I.getEditorContent(_iframe);
  7715. }
  7716. _loading.style.display = 'flex'
  7717. console.log(_loading);
  7718. var _ajs = _iframe.contentWindow.document.createElement("script");
  7719. _ajs.type = "text/javascript";
  7720. _ajs.innerHTML =
  7721. // 'console.log(' + _loading + ');\n' +
  7722. 'var _js = document.createElement("script");\n' +
  7723. '_js.type="text/javascript";\n' +
  7724. '_js.charset="UTF-8";\n' +
  7725. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7726. "_js.onload = function(){\n" +
  7727. ' var a = document.getElementsByTagName("img")\n' +
  7728. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7729. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7730. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7731. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7732. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7733. "beforeUpload_shishi(file," +
  7734. "'" +
  7735. _userid +
  7736. "'" +
  7737. ", " +
  7738. "'" +
  7739. _cid +
  7740. "'" +
  7741. ", " +
  7742. "'" +
  7743. _stage +
  7744. "'" +
  7745. ", " +
  7746. "'" +
  7747. _task +
  7748. "'" +
  7749. ", " +
  7750. "'" +
  7751. _tool +
  7752. "'" +
  7753. ", " +
  7754. "'" +
  7755. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7756. "'" +
  7757. ", " +
  7758. "'" +
  7759. aTool +
  7760. "'" +
  7761. ", " +
  7762. "`" +
  7763. text +
  7764. "`" +
  7765. ")\n" +
  7766. " });\n" +
  7767. "}\n" +
  7768. "document.head.appendChild(_js);\n";
  7769. _iframe.contentWindow.document.head.appendChild(_ajs);
  7770. }
  7771. }
  7772. //U.MD.D.I.openClick(str);
  7773. //如果有任務欄信息
  7774. // if (_taskbar) {
  7775. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7776. // }
  7777. }
  7778. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7779. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7780. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7781. _userinfo = US.userInfo, //登錄用戶信息
  7782. _userid = US.userInfo.userid //登錄用戶id
  7783. let _iframe;
  7784. let _cid = cid,
  7785. _stage = stage,
  7786. _task = task,
  7787. _tool = tool;
  7788. var _jie = $$("div", {
  7789. "style": {
  7790. "position": "absolute",
  7791. "bottom": "50px",
  7792. "right": "50px",
  7793. "zIndex": "9999",
  7794. "backgroundColor": "#2268bc",
  7795. "color": "#fff",
  7796. "padding": "12px 20px",
  7797. "cursor": "pointer",
  7798. "borderRadius": "4px",
  7799. },
  7800. "innerHTML": "提交作業"
  7801. })
  7802. let aTool = ''
  7803. let _loading = document.createElement('div')
  7804. _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;"
  7805. // _loading.id = "";
  7806. let _lchild = document.createElement('div')
  7807. let _limg = document.createElement('img')
  7808. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7809. _limg.style = "width: 26px;margin-right: 10px;"
  7810. _lchild.appendChild(_limg)
  7811. let _lspan = document.createElement('span')
  7812. _lspan.innerHTML = "上傳中..."
  7813. _lchild.appendChild(_lspan)
  7814. _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%);"
  7815. _loading.appendChild(_lchild)
  7816. let _box = $$('div', {
  7817. "style": {
  7818. "position": "relative",
  7819. "width": "100%",
  7820. "height": "100%",
  7821. },
  7822. })
  7823. _box.appendChild(_loading)
  7824. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7825. switch (str) {
  7826. case "whiteboard":
  7827. aTool = 1;
  7828. _iframe = $$("iframe", {
  7829. "frameborder": "no",
  7830. "border": "0",
  7831. "scrolling ": "no",
  7832. "style": {
  7833. "cssText": "border:0;width:100%;height:100%"
  7834. },
  7835. "src": "https://iwb.cocorobo.hk/"
  7836. })
  7837. _box.appendChild(_iframe);
  7838. _box.appendChild(_jie);
  7839. _formdiv = new U.UF.UI.form(
  7840. "電子白板",
  7841. _box, {
  7842. "id": "whiteboard" + cid + stage + task + tool,
  7843. "style": {
  7844. "width": "90%",
  7845. "height": "90%",
  7846. "overflow": 'hidden'
  7847. },
  7848. "onresize": function () { }
  7849. }, {
  7850. closecallback: function () { }
  7851. }, {
  7852. "style": {
  7853. "height": "36px"
  7854. }
  7855. }).form; //創建窗體
  7856. _taskbar = {
  7857. "id": str + _formdiv.id,
  7858. "style": {
  7859. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7860. },
  7861. "name": "電子白板",
  7862. "forms": _formdiv,
  7863. "click": function () {
  7864. U.MD.D.I.openApplication(str, obj, info);
  7865. }
  7866. }
  7867. break;
  7868. case "mind":
  7869. aTool = 3;
  7870. _iframe = $$("iframe", {
  7871. "frameborder": "no",
  7872. "border": "0",
  7873. "scrolling ": "no",
  7874. "style": {
  7875. "cssText": "border:0;width:100%;height:100%"
  7876. },
  7877. "src": "/kityminder-editor/dist/index.html"
  7878. })
  7879. _box.appendChild(_iframe);
  7880. _box.appendChild(_jie);
  7881. _formdiv = new U.UF.UI.form(
  7882. "思維導圖",
  7883. _box, { //"/jsmind/example/demo.html"
  7884. "id": "mind" + cid + stage + task + tool,
  7885. "style": {
  7886. "width": "90%",
  7887. "height": "90%",
  7888. "overflow": 'hidden'
  7889. },
  7890. "onresize": function () { }
  7891. }, {
  7892. closecallback: function () { }
  7893. }, {
  7894. "style": {
  7895. "height": "36px"
  7896. }
  7897. }).form; //創建窗體
  7898. _taskbar = {
  7899. "id": str + _formdiv.id,
  7900. "style": {
  7901. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7902. },
  7903. "name": "思維導圖",
  7904. "forms": _formdiv,
  7905. "click": function () {
  7906. U.MD.D.I.openApplication(str, obj, info);
  7907. }
  7908. }
  7909. break;
  7910. case "MindMap":
  7911. aTool = 3;
  7912. _iframe = $$("iframe", {
  7913. "frameborder": "no",
  7914. "border": "0",
  7915. "scrolling ": "no",
  7916. "style": {
  7917. "cssText": "border:0;width:100%;height:100%"
  7918. },
  7919. "src": "//cloud.cocorobo.hk/mind/"
  7920. })
  7921. _box.appendChild(_iframe);
  7922. _box.appendChild(_jie);
  7923. _formdiv = new U.UF.UI.form(
  7924. "思維導圖",
  7925. _box, { //"/jsmind/example/demo.html"
  7926. "id": "mind" + cid + stage + task + tool,
  7927. "style": {
  7928. "width": "90%",
  7929. "height": "90%",
  7930. "overflow": 'hidden'
  7931. },
  7932. "onresize": function () { }
  7933. }, {
  7934. closecallback: function () { }
  7935. }, {
  7936. "style": {
  7937. "height": "36px"
  7938. }
  7939. }).form; //創建窗體
  7940. _taskbar = {
  7941. "id": str + _formdiv.id,
  7942. "style": {
  7943. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7944. },
  7945. "name": "思維導圖",
  7946. "forms": _formdiv,
  7947. "click": function () {
  7948. U.MD.D.I.openApplication(str, obj, info);
  7949. }
  7950. }
  7951. break;
  7952. case "doc":
  7953. aTool = 6;
  7954. _iframe = $$("iframe", {
  7955. "frameborder": "no",
  7956. "border": "0",
  7957. "scrolling ": "no",
  7958. "style": {
  7959. "cssText": "border:0;width:100%;height:100%"
  7960. },
  7961. "src": "/Office/Word/WordEditArea.htm"
  7962. })
  7963. _box.appendChild(_iframe);
  7964. _box.appendChild(_jie);
  7965. _formdiv = new U.UF.UI.form(
  7966. "協同文檔",
  7967. _box, {
  7968. "id": "doc" + cid + stage + task + tool,
  7969. "style": {
  7970. "width": "90%",
  7971. "height": "90%",
  7972. "overflow": 'hidden'
  7973. },
  7974. "onresize": function () { }
  7975. }, {
  7976. closecallback: function () { }
  7977. }, {
  7978. "style": {
  7979. "height": "36px"
  7980. }
  7981. }).form; //創建窗體
  7982. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7983. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7984. })
  7985. _taskbar = {
  7986. "id": str + _formdiv.id,
  7987. "style": {
  7988. "backgroundImage": "url(/img/icon/doc.png)"
  7989. },
  7990. "name": "協同文檔",
  7991. "forms": _formdiv,
  7992. "click": function () {
  7993. U.MD.D.I.openApplication(str, obj, info);
  7994. }
  7995. }
  7996. break;
  7997. case "mindNetwork": //好友打開
  7998. aTool = 7;
  7999. _iframe = $$("iframe", {
  8000. "webkitallowfullscreen": "",
  8001. "mozallowfullscreen": "",
  8002. "allowfullscreen": "",
  8003. "frameborder": "no",
  8004. "border": "0",
  8005. "scrolling ": "no",
  8006. "style": {
  8007. "cssText": "border:0; width:100%; height:100%;"
  8008. },
  8009. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8010. })
  8011. _box.appendChild(_iframe);
  8012. _box.appendChild(_jie);
  8013. _formdiv = new U.UF.UI.form(
  8014. "思維網格",
  8015. _box, {
  8016. "id": "mindNetwork" + cid + stage + task + tool,
  8017. "style": {
  8018. "width": "90%",
  8019. "height": "90%",
  8020. "overflow": 'hidden'
  8021. },
  8022. "onresize": function () { }
  8023. }, {
  8024. closecallback: function () { }
  8025. }, {
  8026. "style": {
  8027. "height": "36px"
  8028. }
  8029. }).form; //創建窗體
  8030. _taskbar = {
  8031. "id": str + _formdiv.id,
  8032. "style": {
  8033. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8034. },
  8035. "name": "思維網格",
  8036. "forms": _formdiv,
  8037. "click": function () {
  8038. U.MD.D.I.openApplication(str, obj, info);
  8039. }
  8040. }
  8041. break;
  8042. case "courseDesign":
  8043. _iframe = $$("iframe", {
  8044. "webkitallowfullscreen": "",
  8045. "mozallowfullscreen": "",
  8046. "allowfullscreen": "",
  8047. "frameborder": "no",
  8048. "border": "0",
  8049. "scrolling ": "no",
  8050. "style": {
  8051. "cssText": "border:0; width:100%; height:100%;"
  8052. },
  8053. "src": "/course-design-vue"
  8054. })
  8055. _box.appendChild(_iframe);
  8056. _box.appendChild(_jie);
  8057. _formdiv = new U.UF.UI.form(
  8058. "項目設計",
  8059. _box, {
  8060. "id": "courseDesign" + cid + stage + task + tool,
  8061. "style": {
  8062. "width": "90%",
  8063. "height": "90%",
  8064. "overflow": 'hidden'
  8065. },
  8066. "onresize": function () { }
  8067. }, {
  8068. closecallback: function () { }
  8069. }, {
  8070. "style": {
  8071. "height": "36px"
  8072. }
  8073. }).form; //創建窗體
  8074. _taskbar = {
  8075. "id": str + _formdiv.id,
  8076. "style": {
  8077. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8078. },
  8079. "name": "項目設計",
  8080. "forms": _formdiv,
  8081. "click": function () {
  8082. U.MD.D.I.openApplication(str, obj, info);
  8083. }
  8084. }
  8085. break;
  8086. }
  8087. const script1 = document.createElement("script");
  8088. script1.type = "text/javascript";
  8089. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8090. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8091. const script2 = document.createElement("script");
  8092. script2.type = "text/javascript";
  8093. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8094. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8095. const script3 = document.createElement("script");
  8096. script3.type = "text/javascript";
  8097. script3.charset = "UTF-8";
  8098. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8099. const script4 = document.createElement("script");
  8100. script4.type = "text/javascript";
  8101. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8102. script4.src = window.origin + "/js/Common/jietu2E.js";
  8103. if (_iframe) {
  8104. if (str == 'doc') {
  8105. _iframe = _formdiv.querySelector('iframe')
  8106. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8107. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8108. _iframe.contentWindow.document.body.appendChild(script1);
  8109. _iframe.contentWindow.document.body.appendChild(script2);
  8110. // _iframe.contentWindow.document.body.appendChild(script3);
  8111. _iframe.contentWindow.document.body.appendChild(script4);
  8112. })
  8113. if (onloadListener) {
  8114. _iframe.contentDocument.location.reload()
  8115. } else {
  8116. _iframe.contentDocument.location.reload()
  8117. }
  8118. } else if (str == 'courseDesign') {
  8119. U.UF.DL.iframeLoad(_iframe, function () {
  8120. // _iframe.contentWindow.U.MD.O.W.load();
  8121. // _iframe.contentWindow.document.body.appendChild(script1);
  8122. _iframe.contentWindow.document.body.appendChild(script2);
  8123. _iframe.contentWindow.document.body.appendChild(script4);
  8124. })
  8125. } else if (str == 'mind') {
  8126. _iframe = _formdiv.querySelector('iframe')
  8127. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8128. //
  8129. _iframe.contentWindow.document.body.appendChild(script1);
  8130. _iframe.contentWindow.document.body.appendChild(script2);
  8131. _iframe.contentWindow.document.body.appendChild(script4);
  8132. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8133. })
  8134. if (onloadListener) {
  8135. _iframe.contentDocument.location.reload()
  8136. } else {
  8137. _iframe.contentDocument.location.reload()
  8138. }
  8139. } else if (str == 'whiteboard') {
  8140. _iframe = _formdiv.querySelector('iframe')
  8141. let onloadListener = _iframe.onload = () => {
  8142. _iframe.contentWindow.document.body.appendChild(script1);
  8143. _iframe.contentWindow.document.body.appendChild(script2);
  8144. _iframe.contentWindow.document.body.appendChild(script4);
  8145. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8146. };
  8147. // if (onloadListener) {
  8148. // try {
  8149. // _iframe.src += "?cocorobo="+new Date().getTime()
  8150. // _iframe.contentWindow.document.location.reload()
  8151. // } catch (error) {
  8152. // }
  8153. // } else {
  8154. // _iframe.contentDocument.location.reload()
  8155. // }
  8156. } else {
  8157. _iframe.onload = () => {
  8158. _iframe.contentWindow.document.body.appendChild(script1);
  8159. _iframe.contentWindow.document.body.appendChild(script2);
  8160. // _iframe.contentWindow.document.body.appendChild(script3);
  8161. _iframe.contentWindow.document.body.appendChild(script4);
  8162. };
  8163. }
  8164. _jie.onclick = async () => {
  8165. let text = ''
  8166. if (aTool == 1) {
  8167. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8168. } else if (aTool == 6) {
  8169. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8170. } else if (aTool == 3) {
  8171. text = await U.MD.D.I.getEditorContent(_iframe);
  8172. }
  8173. _loading.style.display = 'flex'
  8174. console.log(_loading);
  8175. var _ajs = _iframe.contentWindow.document.createElement("script");
  8176. _ajs.type = "text/javascript";
  8177. _ajs.innerHTML =
  8178. // 'console.log(' + _loading + ');\n' +
  8179. 'var _js = document.createElement("script");\n' +
  8180. '_js.type="text/javascript";\n' +
  8181. '_js.charset="UTF-8";\n' +
  8182. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8183. "_js.onload = function(){\n" +
  8184. ' var a = document.getElementsByTagName("img")\n' +
  8185. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8186. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8187. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8188. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8189. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8190. "beforeUpload_shishi(file," +
  8191. "'" +
  8192. _userid +
  8193. "'" +
  8194. ", " +
  8195. "'" +
  8196. _cid +
  8197. "'" +
  8198. ", " +
  8199. "'" +
  8200. _stage +
  8201. "'" +
  8202. ", " +
  8203. "'" +
  8204. _task +
  8205. "'" +
  8206. ", " +
  8207. "'" +
  8208. _tool +
  8209. "'" +
  8210. ", " +
  8211. "'" +
  8212. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8213. "'" +
  8214. ", " +
  8215. "'" +
  8216. aTool +
  8217. "'" +
  8218. ", " +
  8219. "`" +
  8220. text +
  8221. "`" +
  8222. ")\n" +
  8223. " });\n" +
  8224. "}\n" +
  8225. "document.head.appendChild(_js);\n";
  8226. _iframe.contentWindow.document.head.appendChild(_ajs);
  8227. }
  8228. }
  8229. //U.MD.D.I.openClick(str);
  8230. //如果有任務欄信息
  8231. // if (_taskbar) {
  8232. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8233. // }
  8234. }
  8235. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8236. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8237. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8238. _userid = student.userid, //登錄用戶id
  8239. _username = student.student //用戶名字
  8240. let _iframe;
  8241. let _cid = cid,
  8242. _stage = stage,
  8243. _task = task,
  8244. _tool = tool;
  8245. var _jie = $$("div", {
  8246. "style": {
  8247. "position": "absolute",
  8248. "bottom": "50px",
  8249. "right": "50px",
  8250. "zIndex": "9999",
  8251. "backgroundColor": "#2268bc",
  8252. "color": "#fff",
  8253. "padding": "12px 20px",
  8254. "cursor": "pointer",
  8255. "borderRadius": "4px",
  8256. },
  8257. "innerHTML": "提交作業"
  8258. })
  8259. let aTool = ''
  8260. let _loading = document.createElement('div')
  8261. _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;"
  8262. // _loading.id = "";
  8263. let _lchild = document.createElement('div')
  8264. let _limg = document.createElement('img')
  8265. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8266. _limg.style = "width: 26px;margin-right: 10px;"
  8267. _lchild.appendChild(_limg)
  8268. let _lspan = document.createElement('span')
  8269. _lspan.innerHTML = "上傳中..."
  8270. _lchild.appendChild(_lspan)
  8271. _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%);"
  8272. _loading.appendChild(_lchild)
  8273. var _box = $$('div', {
  8274. "style": {
  8275. "position": "relative",
  8276. "width": "100%",
  8277. "height": "100%",
  8278. },
  8279. })
  8280. _box.appendChild(_loading)
  8281. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8282. switch (str) {
  8283. case "whiteboard":
  8284. aTool = 1;
  8285. _iframe = $$("iframe", {
  8286. "frameborder": "no",
  8287. "border": "0",
  8288. "scrolling ": "no",
  8289. "style": {
  8290. "cssText": "border:0;width:100%;height:100%"
  8291. },
  8292. "src": "https://iwb.cocorobo.hk/"
  8293. })
  8294. _box.appendChild(_iframe);
  8295. _box.appendChild(_jie);
  8296. _formdiv = new U.UF.UI.form(
  8297. "電子白板-" + _username,
  8298. _box, {
  8299. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8300. "style": {
  8301. "width": "90%",
  8302. "height": "90%",
  8303. "overflow": 'hidden'
  8304. },
  8305. "onresize": function () { }
  8306. }, {
  8307. closecallback: function () { }
  8308. }, {
  8309. "style": {
  8310. "height": "36px"
  8311. }
  8312. }).form; //創建窗體
  8313. _taskbar = {
  8314. "id": str + _formdiv.id,
  8315. "style": {
  8316. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8317. },
  8318. "name": "電子白板",
  8319. "forms": _formdiv,
  8320. "click": function () {
  8321. U.MD.D.I.openApplication(str, obj, info);
  8322. }
  8323. }
  8324. break;
  8325. case "mind":
  8326. aTool = 3;
  8327. _iframe = $$("iframe", {
  8328. "frameborder": "no",
  8329. "border": "0",
  8330. "scrolling ": "no",
  8331. "style": {
  8332. "cssText": "border:0;width:100%;height:100%"
  8333. },
  8334. "src": "/kityminder-editor/dist/index.html"
  8335. })
  8336. _box.appendChild(_iframe);
  8337. _box.appendChild(_jie);
  8338. _formdiv = new U.UF.UI.form(
  8339. "思維導圖-" + _username,
  8340. _box, { //"/jsmind/example/demo.html"
  8341. "id": "mind" + cid + stage + task + tool + _userid,
  8342. "style": {
  8343. "width": "90%",
  8344. "height": "90%",
  8345. "overflow": 'hidden'
  8346. },
  8347. "onresize": function () { }
  8348. }, {
  8349. closecallback: function () { }
  8350. }, {
  8351. "style": {
  8352. "height": "36px"
  8353. }
  8354. }).form; //創建窗體
  8355. _taskbar = {
  8356. "id": str + _formdiv.id,
  8357. "style": {
  8358. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8359. },
  8360. "name": "思維導圖",
  8361. "forms": _formdiv,
  8362. "click": function () {
  8363. U.MD.D.I.openApplication(str, obj, info);
  8364. }
  8365. }
  8366. break;
  8367. case "MindMap":
  8368. aTool = 3;
  8369. _iframe = $$("iframe", {
  8370. "frameborder": "no",
  8371. "border": "0",
  8372. "scrolling ": "no",
  8373. "style": {
  8374. "cssText": "border:0;width:100%;height:100%"
  8375. },
  8376. "src": "//cloud.cocorobo.hk/mind/"
  8377. })
  8378. _box.appendChild(_iframe);
  8379. _box.appendChild(_jie);
  8380. _formdiv = new U.UF.UI.form(
  8381. "思維導圖-" + _username,
  8382. _box, { //"/jsmind/example/demo.html"
  8383. "id": "mind" + cid + stage + task + tool + _userid,
  8384. "style": {
  8385. "width": "90%",
  8386. "height": "90%",
  8387. "overflow": 'hidden'
  8388. },
  8389. "onresize": function () { }
  8390. }, {
  8391. closecallback: function () { }
  8392. }, {
  8393. "style": {
  8394. "height": "36px"
  8395. }
  8396. }).form; //創建窗體
  8397. _taskbar = {
  8398. "id": str + _formdiv.id,
  8399. "style": {
  8400. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8401. },
  8402. "name": "思維導圖",
  8403. "forms": _formdiv,
  8404. "click": function () {
  8405. U.MD.D.I.openApplication(str, obj, info);
  8406. }
  8407. }
  8408. break;
  8409. case "doc":
  8410. aTool = 6;
  8411. _iframe = $$("iframe", {
  8412. "frameborder": "no",
  8413. "border": "0",
  8414. "scrolling ": "no",
  8415. "style": {
  8416. "cssText": "border:0;width:100%;height:100%"
  8417. },
  8418. "src": "/Office/Word/WordEditArea.htm"
  8419. })
  8420. _box.appendChild(_iframe);
  8421. _box.appendChild(_jie);
  8422. _formdiv = new U.UF.UI.form(
  8423. "協同文檔-" + _username,
  8424. _box, {
  8425. "id": "doc" + cid + stage + task + tool + _userid,
  8426. "style": {
  8427. "width": "90%",
  8428. "height": "90%",
  8429. "overflow": 'hidden'
  8430. },
  8431. "onresize": function () { }
  8432. }, {
  8433. closecallback: function () { }
  8434. }, {
  8435. "style": {
  8436. "height": "36px"
  8437. }
  8438. }).form; //創建窗體
  8439. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8440. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8441. })
  8442. _taskbar = {
  8443. "id": str + _formdiv.id,
  8444. "style": {
  8445. "backgroundImage": "url(/img/icon/doc.png)"
  8446. },
  8447. "name": "協同文檔",
  8448. "forms": _formdiv,
  8449. "click": function () {
  8450. U.MD.D.I.openApplication(str, obj, info);
  8451. }
  8452. }
  8453. break;
  8454. case "mindNetwork": //好友打開
  8455. aTool = 7;
  8456. _iframe = $$("iframe", {
  8457. "webkitallowfullscreen": "",
  8458. "mozallowfullscreen": "",
  8459. "allowfullscreen": "",
  8460. "frameborder": "no",
  8461. "border": "0",
  8462. "scrolling ": "no",
  8463. "style": {
  8464. "cssText": "border:0; width:100%; height:100%;"
  8465. },
  8466. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8467. })
  8468. _box.appendChild(_iframe);
  8469. _box.appendChild(_jie);
  8470. _formdiv = new U.UF.UI.form(
  8471. "思維網格-" + _username,
  8472. _box, {
  8473. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8474. "style": {
  8475. "width": "90%",
  8476. "height": "90%",
  8477. "overflow": 'hidden'
  8478. },
  8479. "onresize": function () { }
  8480. }, {
  8481. closecallback: function () { }
  8482. }, {
  8483. "style": {
  8484. "height": "36px"
  8485. }
  8486. }).form; //創建窗體
  8487. _taskbar = {
  8488. "id": str + _formdiv.id,
  8489. "style": {
  8490. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8491. },
  8492. "name": "思維網格",
  8493. "forms": _formdiv,
  8494. "click": function () {
  8495. U.MD.D.I.openApplication(str, obj, info);
  8496. }
  8497. }
  8498. break;
  8499. case "courseDesign":
  8500. _iframe = $$("iframe", {
  8501. "webkitallowfullscreen": "",
  8502. "mozallowfullscreen": "",
  8503. "allowfullscreen": "",
  8504. "frameborder": "no",
  8505. "border": "0",
  8506. "scrolling ": "no",
  8507. "style": {
  8508. "cssText": "border:0; width:100%; height:100%;"
  8509. },
  8510. "src": "/course-design-vue"
  8511. })
  8512. _box.appendChild(_iframe);
  8513. _box.appendChild(_jie);
  8514. _formdiv = new U.UF.UI.form(
  8515. "項目設計-" + _username,
  8516. _box, {
  8517. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8518. "style": {
  8519. "width": "90%",
  8520. "height": "90%",
  8521. "overflow": 'hidden'
  8522. },
  8523. "onresize": function () { }
  8524. }, {
  8525. closecallback: function () { }
  8526. }, {
  8527. "style": {
  8528. "height": "36px"
  8529. }
  8530. }).form; //創建窗體
  8531. _taskbar = {
  8532. "id": str + _formdiv.id,
  8533. "style": {
  8534. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8535. },
  8536. "name": "項目設計",
  8537. "forms": _formdiv,
  8538. "click": function () {
  8539. U.MD.D.I.openApplication(str, obj, info);
  8540. }
  8541. }
  8542. break;
  8543. }
  8544. const script1 = document.createElement("script");
  8545. script1.type = "text/javascript";
  8546. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8547. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8548. const script2 = document.createElement("script");
  8549. script2.type = "text/javascript";
  8550. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8551. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8552. const script3 = document.createElement("script");
  8553. script3.type = "text/javascript";
  8554. script3.charset = "UTF-8";
  8555. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8556. const script4 = document.createElement("script");
  8557. script4.type = "text/javascript";
  8558. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8559. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8560. if (_iframe) {
  8561. if (str == 'doc') {
  8562. _iframe = _formdiv.querySelector('iframe')
  8563. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8564. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8565. _iframe.contentWindow.document.body.appendChild(script1);
  8566. _iframe.contentWindow.document.body.appendChild(script2);
  8567. // _iframe.contentWindow.document.body.appendChild(script3);
  8568. _iframe.contentWindow.document.body.appendChild(script4);
  8569. })
  8570. if (onloadListener) {
  8571. _iframe.contentDocument.location.reload()
  8572. } else {
  8573. _iframe.contentDocument.location.reload()
  8574. }
  8575. } else if (str == 'courseDesign') {
  8576. U.UF.DL.iframeLoad(_iframe, function () {
  8577. // _iframe.contentWindow.U.MD.O.W.load();
  8578. // _iframe.contentWindow.document.body.appendChild(script1);
  8579. _iframe.contentWindow.document.body.appendChild(script2);
  8580. _iframe.contentWindow.document.body.appendChild(script4);
  8581. })
  8582. } else if (str == 'mind') {
  8583. _iframe = _formdiv.querySelector('iframe')
  8584. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8585. //
  8586. _iframe.contentWindow.document.body.appendChild(script1);
  8587. _iframe.contentWindow.document.body.appendChild(script2);
  8588. _iframe.contentWindow.document.body.appendChild(script4);
  8589. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8590. })
  8591. if (onloadListener) {
  8592. _iframe.contentDocument.location.reload()
  8593. } else {
  8594. _iframe.contentDocument.location.reload()
  8595. }
  8596. } else if (str == 'whiteboard') {
  8597. _iframe = _formdiv.querySelector('iframe')
  8598. let onloadListener = _iframe.onload = () => {
  8599. _iframe.contentWindow.document.body.appendChild(script1);
  8600. _iframe.contentWindow.document.body.appendChild(script2);
  8601. _iframe.contentWindow.document.body.appendChild(script4);
  8602. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8603. };
  8604. // if (onloadListener) {
  8605. // try {
  8606. // _iframe.src += "?cocorobo="+new Date().getTime()
  8607. // _iframe.contentWindow.document.location.reload()
  8608. // } catch (error) {
  8609. // }
  8610. // } else {
  8611. // _iframe.contentDocument.location.reload()
  8612. // }
  8613. } else {
  8614. _iframe.onload = () => {
  8615. _iframe.contentWindow.document.body.appendChild(script1);
  8616. _iframe.contentWindow.document.body.appendChild(script2);
  8617. // _iframe.contentWindow.document.body.appendChild(script3);
  8618. _iframe.contentWindow.document.body.appendChild(script4);
  8619. };
  8620. }
  8621. _jie.onclick = async () => {
  8622. let text = ''
  8623. if (aTool == 1) {
  8624. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8625. } else if (aTool == 6) {
  8626. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8627. } else if (aTool == 3) {
  8628. text = await U.MD.D.I.getEditorContent(_iframe);
  8629. }
  8630. _loading.style.display = 'flex'
  8631. console.log(_loading);
  8632. var _ajs = _iframe.contentWindow.document.createElement("script");
  8633. _ajs.type = "text/javascript";
  8634. _ajs.innerHTML =
  8635. // 'console.log(' + _loading + ');\n' +
  8636. 'var _js = document.createElement("script");\n' +
  8637. '_js.type="text/javascript";\n' +
  8638. '_js.charset="UTF-8";\n' +
  8639. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8640. "_js.onload = function(){\n" +
  8641. ' var a = document.getElementsByTagName("img")\n' +
  8642. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8643. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8644. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8645. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8646. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8647. "beforeUpload_shishi(file," +
  8648. "'" +
  8649. _userid +
  8650. "'" +
  8651. ", " +
  8652. "'" +
  8653. _cid +
  8654. "'" +
  8655. ", " +
  8656. "'" +
  8657. _stage +
  8658. "'" +
  8659. ", " +
  8660. "'" +
  8661. _task +
  8662. "'" +
  8663. ", " +
  8664. "'" +
  8665. _tool +
  8666. "'" +
  8667. ", " +
  8668. "'" +
  8669. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8670. "'" +
  8671. ", " +
  8672. "'" +
  8673. aTool +
  8674. "'" +
  8675. ", " +
  8676. "`" +
  8677. text +
  8678. "`" +
  8679. ")\n" +
  8680. " });\n" +
  8681. "}\n" +
  8682. "document.head.appendChild(_js);\n";
  8683. _iframe.contentWindow.document.head.appendChild(_ajs);
  8684. }
  8685. }
  8686. }
  8687. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8688. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8689. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8690. _userid = student.userid, //登錄用戶id
  8691. _username = student.student //用戶名字
  8692. let _iframe;
  8693. let _cid = cid,
  8694. _stage = stage,
  8695. _task = task,
  8696. _tool = tool;
  8697. var _jie = $$("div", {
  8698. "style": {
  8699. "position": "absolute",
  8700. "bottom": "50px",
  8701. "right": "50px",
  8702. "zIndex": "9999",
  8703. "backgroundColor": "#2268bc",
  8704. "color": "#fff",
  8705. "padding": "12px 20px",
  8706. "cursor": "pointer",
  8707. "borderRadius": "4px",
  8708. },
  8709. "innerHTML": "提交作業"
  8710. })
  8711. let aTool = ''
  8712. let _loading = document.createElement('div')
  8713. _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;"
  8714. // _loading.id = "";
  8715. let _lchild = document.createElement('div')
  8716. let _limg = document.createElement('img')
  8717. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8718. _limg.style = "width: 26px;margin-right: 10px;"
  8719. _lchild.appendChild(_limg)
  8720. let _lspan = document.createElement('span')
  8721. _lspan.innerHTML = "上傳中..."
  8722. _lchild.appendChild(_lspan)
  8723. _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%);"
  8724. _loading.appendChild(_lchild)
  8725. var _box = $$('div', {
  8726. "style": {
  8727. "position": "relative",
  8728. "width": "100%",
  8729. "height": "100%",
  8730. },
  8731. })
  8732. _box.appendChild(_loading)
  8733. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8734. switch (str) {
  8735. case "whiteboard":
  8736. aTool = 1;
  8737. _iframe = $$("iframe", {
  8738. "frameborder": "no",
  8739. "border": "0",
  8740. "scrolling ": "no",
  8741. "style": {
  8742. "cssText": "border:0;width:100%;height:100%"
  8743. },
  8744. "src": "https://iwb.cocorobo.hk/"
  8745. })
  8746. _box.appendChild(_iframe);
  8747. _box.appendChild(_jie);
  8748. _formdiv = new U.UF.UI.form(
  8749. "電子白板-" + _username,
  8750. _box, {
  8751. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8752. "style": {
  8753. "width": "90%",
  8754. "height": "90%",
  8755. "overflow": 'hidden'
  8756. },
  8757. "onresize": function () { }
  8758. }, {
  8759. closecallback: function () { }
  8760. }, {
  8761. "style": {
  8762. "height": "36px"
  8763. }
  8764. }).form; //創建窗體
  8765. _taskbar = {
  8766. "id": str + _formdiv.id,
  8767. "style": {
  8768. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8769. },
  8770. "name": "電子白板",
  8771. "forms": _formdiv,
  8772. "click": function () {
  8773. U.MD.D.I.openApplication(str, obj, info);
  8774. }
  8775. }
  8776. break;
  8777. case "mind":
  8778. aTool = 3;
  8779. _iframe = $$("iframe", {
  8780. "frameborder": "no",
  8781. "border": "0",
  8782. "scrolling ": "no",
  8783. "style": {
  8784. "cssText": "border:0;width:100%;height:100%"
  8785. },
  8786. "src": "/kityminder-editor/dist/index.html"
  8787. })
  8788. _box.appendChild(_iframe);
  8789. _box.appendChild(_jie);
  8790. _formdiv = new U.UF.UI.form(
  8791. "思維導圖-" + _username,
  8792. _box, { //"/jsmind/example/demo.html"
  8793. "id": "mind" + cid + stage + task + tool + _userid,
  8794. "style": {
  8795. "width": "90%",
  8796. "height": "90%",
  8797. "overflow": 'hidden'
  8798. },
  8799. "onresize": function () { }
  8800. }, {
  8801. closecallback: function () { }
  8802. }, {
  8803. "style": {
  8804. "height": "36px"
  8805. }
  8806. }).form; //創建窗體
  8807. _taskbar = {
  8808. "id": str + _formdiv.id,
  8809. "style": {
  8810. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8811. },
  8812. "name": "思維導圖",
  8813. "forms": _formdiv,
  8814. "click": function () {
  8815. U.MD.D.I.openApplication(str, obj, info);
  8816. }
  8817. }
  8818. break;
  8819. case "MindMap":
  8820. aTool = 3;
  8821. _iframe = $$("iframe", {
  8822. "frameborder": "no",
  8823. "border": "0",
  8824. "scrolling ": "no",
  8825. "style": {
  8826. "cssText": "border:0;width:100%;height:100%"
  8827. },
  8828. "src": "//cloud.cocorobo.hk/mind/"
  8829. })
  8830. _box.appendChild(_iframe);
  8831. _box.appendChild(_jie);
  8832. _formdiv = new U.UF.UI.form(
  8833. "思維導圖-" + _username,
  8834. _box, { //"/jsmind/example/demo.html"
  8835. "id": "mind" + cid + stage + task + tool + _userid,
  8836. "style": {
  8837. "width": "90%",
  8838. "height": "90%",
  8839. "overflow": 'hidden'
  8840. },
  8841. "onresize": function () { }
  8842. }, {
  8843. closecallback: function () { }
  8844. }, {
  8845. "style": {
  8846. "height": "36px"
  8847. }
  8848. }).form; //創建窗體
  8849. _taskbar = {
  8850. "id": str + _formdiv.id,
  8851. "style": {
  8852. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8853. },
  8854. "name": "思維導圖",
  8855. "forms": _formdiv,
  8856. "click": function () {
  8857. U.MD.D.I.openApplication(str, obj, info);
  8858. }
  8859. }
  8860. break;
  8861. case "doc":
  8862. aTool = 6;
  8863. _iframe = $$("iframe", {
  8864. "frameborder": "no",
  8865. "border": "0",
  8866. "scrolling ": "no",
  8867. "style": {
  8868. "cssText": "border:0;width:100%;height:100%"
  8869. },
  8870. "src": "/Office/Word/WordEditArea.htm"
  8871. })
  8872. _box.appendChild(_iframe);
  8873. _box.appendChild(_jie);
  8874. _formdiv = new U.UF.UI.form(
  8875. "協同文檔-" + _username,
  8876. _box, {
  8877. "id": "doc" + cid + stage + task + tool + _userid,
  8878. "style": {
  8879. "width": "90%",
  8880. "height": "90%",
  8881. "overflow": 'hidden'
  8882. },
  8883. "onresize": function () { }
  8884. }, {
  8885. closecallback: function () { }
  8886. }, {
  8887. "style": {
  8888. "height": "36px"
  8889. }
  8890. }).form; //創建窗體
  8891. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8892. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8893. })
  8894. _taskbar = {
  8895. "id": str + _formdiv.id,
  8896. "style": {
  8897. "backgroundImage": "url(/img/icon/doc.png)"
  8898. },
  8899. "name": "協同文檔",
  8900. "forms": _formdiv,
  8901. "click": function () {
  8902. U.MD.D.I.openApplication(str, obj, info);
  8903. }
  8904. }
  8905. break;
  8906. case "mindNetwork": //好友打開
  8907. aTool = 7;
  8908. _iframe = $$("iframe", {
  8909. "webkitallowfullscreen": "",
  8910. "mozallowfullscreen": "",
  8911. "allowfullscreen": "",
  8912. "frameborder": "no",
  8913. "border": "0",
  8914. "scrolling ": "no",
  8915. "style": {
  8916. "cssText": "border:0; width:100%; height:100%;"
  8917. },
  8918. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8919. })
  8920. _box.appendChild(_iframe);
  8921. _box.appendChild(_jie);
  8922. _formdiv = new U.UF.UI.form(
  8923. "思維網格-" + _username,
  8924. _box, {
  8925. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8926. "style": {
  8927. "width": "90%",
  8928. "height": "90%",
  8929. "overflow": 'hidden'
  8930. },
  8931. "onresize": function () { }
  8932. }, {
  8933. closecallback: function () { }
  8934. }, {
  8935. "style": {
  8936. "height": "36px"
  8937. }
  8938. }).form; //創建窗體
  8939. _taskbar = {
  8940. "id": str + _formdiv.id,
  8941. "style": {
  8942. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8943. },
  8944. "name": "思維網格",
  8945. "forms": _formdiv,
  8946. "click": function () {
  8947. U.MD.D.I.openApplication(str, obj, info);
  8948. }
  8949. }
  8950. break;
  8951. case "courseDesign":
  8952. _iframe = $$("iframe", {
  8953. "webkitallowfullscreen": "",
  8954. "mozallowfullscreen": "",
  8955. "allowfullscreen": "",
  8956. "frameborder": "no",
  8957. "border": "0",
  8958. "scrolling ": "no",
  8959. "style": {
  8960. "cssText": "border:0; width:100%; height:100%;"
  8961. },
  8962. "src": "/course-design-vue"
  8963. })
  8964. _box.appendChild(_iframe);
  8965. _box.appendChild(_jie);
  8966. _formdiv = new U.UF.UI.form(
  8967. "項目設計-" + _username,
  8968. _box, {
  8969. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8970. "style": {
  8971. "width": "90%",
  8972. "height": "90%",
  8973. "overflow": 'hidden'
  8974. },
  8975. "onresize": function () { }
  8976. }, {
  8977. closecallback: function () { }
  8978. }, {
  8979. "style": {
  8980. "height": "36px"
  8981. }
  8982. }).form; //創建窗體
  8983. _taskbar = {
  8984. "id": str + _formdiv.id,
  8985. "style": {
  8986. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8987. },
  8988. "name": "項目設計",
  8989. "forms": _formdiv,
  8990. "click": function () {
  8991. U.MD.D.I.openApplication(str, obj, info);
  8992. }
  8993. }
  8994. break;
  8995. }
  8996. const script1 = document.createElement("script");
  8997. script1.type = "text/javascript";
  8998. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8999. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9000. const script2 = document.createElement("script");
  9001. script2.type = "text/javascript";
  9002. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9003. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9004. const script3 = document.createElement("script");
  9005. script3.type = "text/javascript";
  9006. script3.charset = "UTF-8";
  9007. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9008. const script4 = document.createElement("script");
  9009. script4.type = "text/javascript";
  9010. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9011. script4.src = window.origin + "/js/Common/jietu2E.js";
  9012. if (_iframe) {
  9013. if (str == 'doc') {
  9014. _iframe = _formdiv.querySelector('iframe')
  9015. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9016. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9017. _iframe.contentWindow.document.body.appendChild(script1);
  9018. _iframe.contentWindow.document.body.appendChild(script2);
  9019. // _iframe.contentWindow.document.body.appendChild(script3);
  9020. _iframe.contentWindow.document.body.appendChild(script4);
  9021. })
  9022. if (onloadListener) {
  9023. _iframe.contentDocument.location.reload()
  9024. } else {
  9025. _iframe.contentDocument.location.reload()
  9026. }
  9027. } else if (str == 'courseDesign') {
  9028. U.UF.DL.iframeLoad(_iframe, function () {
  9029. // _iframe.contentWindow.U.MD.O.W.load();
  9030. // _iframe.contentWindow.document.body.appendChild(script1);
  9031. _iframe.contentWindow.document.body.appendChild(script2);
  9032. _iframe.contentWindow.document.body.appendChild(script4);
  9033. })
  9034. } else if (str == 'mind') {
  9035. _iframe = _formdiv.querySelector('iframe')
  9036. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9037. //
  9038. _iframe.contentWindow.document.body.appendChild(script1);
  9039. _iframe.contentWindow.document.body.appendChild(script2);
  9040. _iframe.contentWindow.document.body.appendChild(script4);
  9041. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9042. })
  9043. if (onloadListener) {
  9044. _iframe.contentDocument.location.reload()
  9045. } else {
  9046. _iframe.contentDocument.location.reload()
  9047. }
  9048. } else if (str == 'whiteboard') {
  9049. _iframe = _formdiv.querySelector('iframe')
  9050. let onloadListener = _iframe.onload = () => {
  9051. _iframe.contentWindow.document.body.appendChild(script1);
  9052. _iframe.contentWindow.document.body.appendChild(script2);
  9053. _iframe.contentWindow.document.body.appendChild(script4);
  9054. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9055. };
  9056. // if (onloadListener) {
  9057. // try {
  9058. // _iframe.src += "?cocorobo="+new Date().getTime()
  9059. // _iframe.contentWindow.document.location.reload()
  9060. // } catch (error) {
  9061. // }
  9062. // } else {
  9063. // _iframe.contentDocument.location.reload()
  9064. // }
  9065. } else {
  9066. _iframe.onload = () => {
  9067. _iframe.contentWindow.document.body.appendChild(script1);
  9068. _iframe.contentWindow.document.body.appendChild(script2);
  9069. // _iframe.contentWindow.document.body.appendChild(script3);
  9070. _iframe.contentWindow.document.body.appendChild(script4);
  9071. };
  9072. }
  9073. _jie.onclick = async () => {
  9074. let text = ''
  9075. if (aTool == 1) {
  9076. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9077. } else if (aTool == 6) {
  9078. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9079. } else if (aTool == 3) {
  9080. text = await U.MD.D.I.getEditorContent(_iframe);
  9081. }
  9082. _loading.style.display = 'flex'
  9083. console.log(_loading);
  9084. var _ajs = _iframe.contentWindow.document.createElement("script");
  9085. _ajs.type = "text/javascript";
  9086. _ajs.innerHTML =
  9087. // 'console.log(' + _loading + ');\n' +
  9088. 'var _js = document.createElement("script");\n' +
  9089. '_js.type="text/javascript";\n' +
  9090. '_js.charset="UTF-8";\n' +
  9091. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9092. "_js.onload = function(){\n" +
  9093. ' var a = document.getElementsByTagName("img")\n' +
  9094. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9095. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9096. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9097. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9098. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9099. "beforeUpload_shishi(file," +
  9100. "'" +
  9101. _userid +
  9102. "'" +
  9103. ", " +
  9104. "'" +
  9105. _cid +
  9106. "'" +
  9107. ", " +
  9108. "'" +
  9109. _stage +
  9110. "'" +
  9111. ", " +
  9112. "'" +
  9113. _task +
  9114. "'" +
  9115. ", " +
  9116. "'" +
  9117. _tool +
  9118. "'" +
  9119. ", " +
  9120. "'" +
  9121. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9122. "'" +
  9123. ", " +
  9124. "'" +
  9125. aTool +
  9126. "'" +
  9127. ", " +
  9128. "`" +
  9129. text +
  9130. "`" +
  9131. ")\n" +
  9132. " });\n" +
  9133. "}\n" +
  9134. "document.head.appendChild(_js);\n";
  9135. _iframe.contentWindow.document.head.appendChild(_ajs);
  9136. }
  9137. }
  9138. }
  9139. U.MD.D.I.getEditorContent = function (iframe) {
  9140. return new Promise((resolve, reject) => {
  9141. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9142. console.log(content);
  9143. resolve(content)
  9144. });
  9145. });
  9146. }
  9147. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9148. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9149. // if (res.value[0].length > 0) {
  9150. // // resolve(res.value[0][0].text);
  9151. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9152. // $(fileInput).val('');
  9153. // });
  9154. // }
  9155. // }, [], { "type": "GET", "withCredentials": true });
  9156. var xmlhttp;
  9157. var Mac, Sn, DeviceId
  9158. if (window.XMLHttpRequest) {
  9159. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9160. xmlhttp = new XMLHttpRequest();
  9161. }
  9162. else {
  9163. // IE6, IE5 瀏覽器執行代碼
  9164. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9165. }
  9166. xmlhttp.onreadystatechange = function () {
  9167. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9168. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9169. // resolve(res.value[0][0].text);
  9170. if (type == '2') {
  9171. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9172. } else if (type == '3') {
  9173. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9174. }
  9175. } else {
  9176. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9177. }
  9178. }
  9179. }
  9180. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9181. xmlhttp.send();
  9182. }
  9183. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9184. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9185. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9186. _userinfo = US.userInfo, //登錄用戶信息
  9187. _userid = US.userInfo.userid //登錄用戶id
  9188. let _iframe;
  9189. let _cid = cid,
  9190. _stage = stage,
  9191. _task = task,
  9192. _tool = tool;
  9193. var _jie = $$("div", {
  9194. "style": {
  9195. "position": "absolute",
  9196. "bottom": "50px",
  9197. "right": "50px",
  9198. "zIndex": "9999",
  9199. "backgroundColor": "#2268bc",
  9200. "color": "#fff",
  9201. "padding": "12px 20px",
  9202. "cursor": "pointer",
  9203. "borderRadius": "4px",
  9204. },
  9205. "innerHTML": "確認並提交"
  9206. })
  9207. let aTool = ''
  9208. let _loading = document.createElement('div')
  9209. _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;"
  9210. // _loading.id = "";
  9211. let _lchild = document.createElement('div')
  9212. let _limg = document.createElement('img')
  9213. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9214. _limg.style = "width: 26px;margin-right: 10px;"
  9215. _lchild.appendChild(_limg)
  9216. let _lspan = document.createElement('span')
  9217. _lspan.innerHTML = "上傳中..."
  9218. _lchild.appendChild(_lspan)
  9219. _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%);"
  9220. _loading.appendChild(_lchild)
  9221. var _box = $$('div', {
  9222. "style": {
  9223. "position": "relative",
  9224. "width": "100%",
  9225. "height": "100%",
  9226. },
  9227. })
  9228. _box.appendChild(_loading)
  9229. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9230. switch (str) {
  9231. case "whiteboard":
  9232. aTool = 1;
  9233. _iframe = $$("iframe", {
  9234. "frameborder": "no",
  9235. "border": "0",
  9236. "scrolling ": "no",
  9237. "style": {
  9238. "cssText": "border:0;width:100%;height:100%"
  9239. },
  9240. "src": "https://iwb.cocorobo.hk/"
  9241. })
  9242. _box.appendChild(_iframe);
  9243. _box.appendChild(_jie);
  9244. _formdiv = new U.UF.UI.form(
  9245. "電子白板",
  9246. _box, {
  9247. "id": "whiteboards" + cid + stage + task + tool,
  9248. "style": {
  9249. "width": "90%",
  9250. "height": "90%",
  9251. "overflow": 'hidden'
  9252. },
  9253. "onresize": function () { }
  9254. }, {
  9255. closecallback: function () { }
  9256. }, {
  9257. "style": {
  9258. "height": "36px"
  9259. }
  9260. }).form; //創建窗體
  9261. _taskbar = {
  9262. "id": str + _formdiv.id,
  9263. "style": {
  9264. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9265. },
  9266. "name": "電子白板",
  9267. "forms": _formdiv,
  9268. "click": function () {
  9269. U.MD.D.I.openApplication(str, obj, info);
  9270. }
  9271. }
  9272. break;
  9273. case "mind":
  9274. aTool = 3;
  9275. _iframe = $$("iframe", {
  9276. "frameborder": "no",
  9277. "border": "0",
  9278. "scrolling ": "no",
  9279. "style": {
  9280. "cssText": "border:0;width:100%;height:100%"
  9281. },
  9282. "src": "/kityminder-editor/dist/index.html"
  9283. });
  9284. _box.appendChild(_iframe);
  9285. _box.appendChild(_jie);
  9286. _formdiv = new U.UF.UI.form(
  9287. "思維導圖",
  9288. _box, { //"/jsmind/example/demo.html"
  9289. "id": "minds" + cid + stage + task + tool,
  9290. "style": {
  9291. "width": "90%",
  9292. "height": "90%",
  9293. "overflow": 'hidden'
  9294. },
  9295. "onresize": function () { }
  9296. }, {
  9297. closecallback: function () { }
  9298. }, {
  9299. "style": {
  9300. "height": "36px"
  9301. }
  9302. }).form; //創建窗體
  9303. _taskbar = {
  9304. "id": str + _formdiv.id,
  9305. "style": {
  9306. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9307. },
  9308. "name": "思維導圖",
  9309. "forms": _formdiv,
  9310. "click": function () {
  9311. U.MD.D.I.openApplication(str, obj, info);
  9312. }
  9313. }
  9314. break;
  9315. case "doc":
  9316. aTool = 6;
  9317. _iframe = $$("iframe", {
  9318. "frameborder": "no",
  9319. "border": "0",
  9320. "scrolling ": "no",
  9321. "style": {
  9322. "cssText": "border:0;width:100%;height:100%"
  9323. },
  9324. "src": "/Office/Word/WordEditArea.htm"
  9325. })
  9326. _box.appendChild(_iframe);
  9327. _box.appendChild(_jie);
  9328. _formdiv = new U.UF.UI.form(
  9329. "協同文檔",
  9330. _box, {
  9331. "id": "docs" + cid + stage + task + tool,
  9332. "style": {
  9333. "width": "90%",
  9334. "height": "90%",
  9335. "overflow": 'hidden'
  9336. },
  9337. "onresize": function () { }
  9338. }, {
  9339. closecallback: function () { }
  9340. }, {
  9341. "style": {
  9342. "height": "36px"
  9343. }
  9344. }).form; //創建窗體
  9345. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9346. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9347. })
  9348. _taskbar = {
  9349. "id": str + _formdiv.id,
  9350. "style": {
  9351. "backgroundImage": "url(/img/icon/doc.png)"
  9352. },
  9353. "name": "協同文檔",
  9354. "forms": _formdiv,
  9355. "click": function () {
  9356. U.MD.D.I.openApplication(str, obj, info);
  9357. }
  9358. }
  9359. break;
  9360. }
  9361. const script1 = document.createElement("script");
  9362. script1.type = "text/javascript";
  9363. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9364. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9365. const script2 = document.createElement("script");
  9366. script2.type = "text/javascript";
  9367. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9368. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9369. const script3 = document.createElement("script");
  9370. script3.type = "text/javascript";
  9371. script3.charset = "UTF-8";
  9372. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9373. const script4 = document.createElement("script");
  9374. script4.type = "text/javascript";
  9375. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9376. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9377. if (_iframe) {
  9378. if (str == 'doc') {
  9379. _iframe = _formdiv.querySelector('iframe')
  9380. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9381. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9382. _iframe.contentWindow.document.body.appendChild(script1);
  9383. _iframe.contentWindow.document.body.appendChild(script2);
  9384. // _iframe.contentWindow.document.body.appendChild(script3);
  9385. _iframe.contentWindow.document.body.appendChild(script4);
  9386. })
  9387. if (onloadListener) {
  9388. _iframe.contentDocument.location.reload()
  9389. } else {
  9390. _iframe.contentDocument.location.reload()
  9391. }
  9392. } else if (str == 'mind') {
  9393. _iframe = _formdiv.querySelector('iframe')
  9394. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9395. _iframe.contentWindow.document.body.appendChild(script1);
  9396. _iframe.contentWindow.document.body.appendChild(script2);
  9397. _iframe.contentWindow.document.body.appendChild(script4);
  9398. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9399. })
  9400. if (onloadListener) {
  9401. _iframe.contentDocument.location.reload()
  9402. } else {
  9403. _iframe.contentDocument.location.reload()
  9404. }
  9405. } else {
  9406. _iframe.onload = () => {
  9407. _iframe.contentWindow.document.body.appendChild(script1);
  9408. _iframe.contentWindow.document.body.appendChild(script2);
  9409. // _iframe.contentWindow.document.body.appendChild(script3);
  9410. _iframe.contentWindow.document.body.appendChild(script4);
  9411. };
  9412. }
  9413. _jie.onclick = async () => {
  9414. let text = ''
  9415. if (aTool == 6) {
  9416. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9417. } else if (aTool == 3) {
  9418. text = await U.MD.D.I.getEditorContent(_iframe);
  9419. }
  9420. _loading.style.display = 'flex'
  9421. console.log(_loading);
  9422. var _ajs = _iframe.contentWindow.document.createElement("script");
  9423. _ajs.type = "text/javascript";
  9424. _ajs.innerHTML =
  9425. // 'console.log(' + _loading + ');\n' +
  9426. 'var _js = document.createElement("script");\n' +
  9427. '_js.type="text/javascript";\n' +
  9428. '_js.charset="UTF-8";\n' +
  9429. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9430. "_js.onload = function(){\n" +
  9431. ' var a = document.getElementsByTagName("img")\n' +
  9432. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9433. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9434. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9435. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9436. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9437. "beforeUpload_shishi(file," +
  9438. "'" +
  9439. _userid +
  9440. "'" +
  9441. ", " +
  9442. "'" +
  9443. _cid +
  9444. "'" +
  9445. ", " +
  9446. "'" +
  9447. _stage +
  9448. "'" +
  9449. ", " +
  9450. "'" +
  9451. _task +
  9452. "'" +
  9453. ", " +
  9454. "'" +
  9455. _tool +
  9456. "'" +
  9457. ", " +
  9458. "'" +
  9459. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9460. "'" +
  9461. ", " +
  9462. "'" +
  9463. aTool +
  9464. "'" +
  9465. ", " +
  9466. "`" +
  9467. text +
  9468. "`" +
  9469. ")\n" +
  9470. " });\n" +
  9471. "}\n" +
  9472. "document.head.appendChild(_js);\n";
  9473. _iframe.contentWindow.document.head.appendChild(_ajs);
  9474. }
  9475. }
  9476. //U.MD.D.I.openClick(str);
  9477. //如果有任務欄信息
  9478. // if (_taskbar) {
  9479. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9480. // }
  9481. }
  9482. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9483. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9484. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9485. _userinfo = US.userInfo, //登錄用戶信息
  9486. _userid = US.userInfo.userid //登錄用戶id
  9487. let _iframe;
  9488. let _cid = cid,
  9489. _stage = stage,
  9490. _task = task,
  9491. _tool = tool;
  9492. var _jie = $$("div", {
  9493. "style": {
  9494. "position": "absolute",
  9495. "bottom": "50px",
  9496. "right": "50px",
  9497. "zIndex": "9999",
  9498. "backgroundColor": "#2268bc",
  9499. "color": "#fff",
  9500. "padding": "12px 20px",
  9501. "cursor": "pointer",
  9502. "borderRadius": "4px",
  9503. },
  9504. "innerHTML": "確認並提交"
  9505. })
  9506. let aTool = ''
  9507. let _loading = document.createElement('div')
  9508. _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;"
  9509. // _loading.id = "";
  9510. let _lchild = document.createElement('div')
  9511. let _limg = document.createElement('img')
  9512. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9513. _limg.style = "width: 26px;margin-right: 10px;"
  9514. _lchild.appendChild(_limg)
  9515. let _lspan = document.createElement('span')
  9516. _lspan.innerHTML = "上傳中..."
  9517. _lchild.appendChild(_lspan)
  9518. _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%);"
  9519. _loading.appendChild(_lchild)
  9520. var _box = $$('div', {
  9521. "style": {
  9522. "position": "relative",
  9523. "width": "100%",
  9524. "height": "100%",
  9525. },
  9526. })
  9527. _box.appendChild(_loading)
  9528. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9529. switch (str) {
  9530. case "whiteboard":
  9531. aTool = 1;
  9532. _iframe = $$("iframe", {
  9533. "frameborder": "no",
  9534. "border": "0",
  9535. "scrolling ": "no",
  9536. "style": {
  9537. "cssText": "border:0;width:100%;height:100%"
  9538. },
  9539. "src": "https://iwb.cocorobo.hk/"
  9540. })
  9541. _box.appendChild(_iframe);
  9542. _box.appendChild(_jie);
  9543. _formdiv = new U.UF.UI.form(
  9544. "電子白板",
  9545. _box, {
  9546. "id": "whiteboards" + cid + stage + task + tool,
  9547. "style": {
  9548. "width": "90%",
  9549. "height": "90%",
  9550. "overflow": 'hidden'
  9551. },
  9552. "onresize": function () { }
  9553. }, {
  9554. closecallback: function () { }
  9555. }, {
  9556. "style": {
  9557. "height": "36px"
  9558. }
  9559. }).form; //創建窗體
  9560. _taskbar = {
  9561. "id": str + _formdiv.id,
  9562. "style": {
  9563. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9564. },
  9565. "name": "電子白板",
  9566. "forms": _formdiv,
  9567. "click": function () {
  9568. U.MD.D.I.openApplication(str, obj, info);
  9569. }
  9570. }
  9571. break;
  9572. case "mind":
  9573. aTool = 3;
  9574. _iframe = $$("iframe", {
  9575. "frameborder": "no",
  9576. "border": "0",
  9577. "scrolling ": "no",
  9578. "style": {
  9579. "cssText": "border:0;width:100%;height:100%"
  9580. },
  9581. "src": "/kityminder-editor/dist/index.html"
  9582. });
  9583. _box.appendChild(_iframe);
  9584. _box.appendChild(_jie);
  9585. _formdiv = new U.UF.UI.form(
  9586. "思維導圖",
  9587. _box, { //"/jsmind/example/demo.html"
  9588. "id": "minds" + cid + stage + task + tool,
  9589. "style": {
  9590. "width": "90%",
  9591. "height": "90%",
  9592. "overflow": 'hidden'
  9593. },
  9594. "onresize": function () { }
  9595. }, {
  9596. closecallback: function () { }
  9597. }, {
  9598. "style": {
  9599. "height": "36px"
  9600. }
  9601. }).form; //創建窗體
  9602. _taskbar = {
  9603. "id": str + _formdiv.id,
  9604. "style": {
  9605. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9606. },
  9607. "name": "思維導圖",
  9608. "forms": _formdiv,
  9609. "click": function () {
  9610. U.MD.D.I.openApplication(str, obj, info);
  9611. }
  9612. }
  9613. break;
  9614. case "doc":
  9615. aTool = 6;
  9616. _iframe = $$("iframe", {
  9617. "frameborder": "no",
  9618. "border": "0",
  9619. "scrolling ": "no",
  9620. "style": {
  9621. "cssText": "border:0;width:100%;height:100%"
  9622. },
  9623. "src": "/Office/Word/WordEditArea.htm"
  9624. })
  9625. _box.appendChild(_iframe);
  9626. _box.appendChild(_jie);
  9627. _formdiv = new U.UF.UI.form(
  9628. "協同文檔",
  9629. _box, {
  9630. "id": "docs" + cid + stage + task + tool,
  9631. "style": {
  9632. "width": "90%",
  9633. "height": "90%",
  9634. "overflow": 'hidden'
  9635. },
  9636. "onresize": function () { }
  9637. }, {
  9638. closecallback: function () { }
  9639. }, {
  9640. "style": {
  9641. "height": "36px"
  9642. }
  9643. }).form; //創建窗體
  9644. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9645. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9646. })
  9647. _taskbar = {
  9648. "id": str + _formdiv.id,
  9649. "style": {
  9650. "backgroundImage": "url(/img/icon/doc.png)"
  9651. },
  9652. "name": "協同文檔",
  9653. "forms": _formdiv,
  9654. "click": function () {
  9655. U.MD.D.I.openApplication(str, obj, info);
  9656. }
  9657. }
  9658. break;
  9659. }
  9660. const script1 = document.createElement("script");
  9661. script1.type = "text/javascript";
  9662. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9663. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9664. const script2 = document.createElement("script");
  9665. script2.type = "text/javascript";
  9666. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9667. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9668. const script3 = document.createElement("script");
  9669. script3.type = "text/javascript";
  9670. script3.charset = "UTF-8";
  9671. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9672. const script4 = document.createElement("script");
  9673. script4.type = "text/javascript";
  9674. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9675. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  9676. if (_iframe) {
  9677. if (str == 'doc') {
  9678. _iframe = _formdiv.querySelector('iframe')
  9679. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9680. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9681. _iframe.contentWindow.document.body.appendChild(script1);
  9682. _iframe.contentWindow.document.body.appendChild(script2);
  9683. // _iframe.contentWindow.document.body.appendChild(script3);
  9684. _iframe.contentWindow.document.body.appendChild(script4);
  9685. })
  9686. if (onloadListener) {
  9687. _iframe.contentDocument.location.reload()
  9688. } else {
  9689. _iframe.contentDocument.location.reload()
  9690. }
  9691. } else if (str == 'mind') {
  9692. _iframe = _formdiv.querySelector('iframe')
  9693. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9694. _iframe.contentWindow.document.body.appendChild(script1);
  9695. _iframe.contentWindow.document.body.appendChild(script2);
  9696. _iframe.contentWindow.document.body.appendChild(script4);
  9697. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9698. })
  9699. if (onloadListener) {
  9700. _iframe.contentDocument.location.reload()
  9701. } else {
  9702. _iframe.contentDocument.location.reload()
  9703. }
  9704. } else {
  9705. _iframe.onload = () => {
  9706. _iframe.contentWindow.document.body.appendChild(script1);
  9707. _iframe.contentWindow.document.body.appendChild(script2);
  9708. // _iframe.contentWindow.document.body.appendChild(script3);
  9709. _iframe.contentWindow.document.body.appendChild(script4);
  9710. };
  9711. }
  9712. _jie.onclick = async () => {
  9713. let text = ''
  9714. if (aTool == 6) {
  9715. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9716. } else if (aTool == 3) {
  9717. text = await U.MD.D.I.getEditorContent(_iframe);
  9718. }
  9719. _loading.style.display = 'flex'
  9720. console.log(_loading);
  9721. var _ajs = _iframe.contentWindow.document.createElement("script");
  9722. _ajs.type = "text/javascript";
  9723. _ajs.innerHTML =
  9724. // 'console.log(' + _loading + ');\n' +
  9725. 'var _js = document.createElement("script");\n' +
  9726. '_js.type="text/javascript";\n' +
  9727. '_js.charset="UTF-8";\n' +
  9728. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9729. "_js.onload = function(){\n" +
  9730. ' var a = document.getElementsByTagName("img")\n' +
  9731. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9732. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9733. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9734. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9735. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9736. "beforeUpload_shishi(file," +
  9737. "'" +
  9738. _userid +
  9739. "'" +
  9740. ", " +
  9741. "'" +
  9742. _cid +
  9743. "'" +
  9744. ", " +
  9745. "'" +
  9746. _stage +
  9747. "'" +
  9748. ", " +
  9749. "'" +
  9750. _task +
  9751. "'" +
  9752. ", " +
  9753. "'" +
  9754. _tool +
  9755. "'" +
  9756. ", " +
  9757. "'" +
  9758. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9759. "'" +
  9760. ", " +
  9761. "'" +
  9762. aTool +
  9763. "'" +
  9764. ", " +
  9765. "`" +
  9766. text +
  9767. "`" +
  9768. ")\n" +
  9769. " });\n" +
  9770. "}\n" +
  9771. "document.head.appendChild(_js);\n";
  9772. _iframe.contentWindow.document.head.appendChild(_ajs);
  9773. }
  9774. }
  9775. //U.MD.D.I.openClick(str);
  9776. //如果有任務欄信息
  9777. // if (_taskbar) {
  9778. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9779. // }
  9780. }
  9781. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9782. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9783. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9784. _userinfo = US.userInfo, //登錄用戶信息
  9785. _userid = US.userInfo.userid //登錄用戶id
  9786. let _iframe;
  9787. let _cid = cid,
  9788. _stage = stage,
  9789. _task = task,
  9790. _tool = tool;
  9791. var _jie = $$("div", {
  9792. "style": {
  9793. "position": "absolute",
  9794. "bottom": "50px",
  9795. "right": "50px",
  9796. "zIndex": "9999",
  9797. "backgroundColor": "#2268bc",
  9798. "color": "#fff",
  9799. "padding": "12px 20px",
  9800. "cursor": "pointer",
  9801. "borderRadius": "4px",
  9802. },
  9803. "innerHTML": "上傳模板"
  9804. })
  9805. let aTool = ''
  9806. let _loading = document.createElement('div')
  9807. _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;"
  9808. // _loading.id = "";
  9809. let _lchild = document.createElement('div')
  9810. let _limg = document.createElement('img')
  9811. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9812. _limg.style = "width: 26px;margin-right: 10px;"
  9813. _lchild.appendChild(_limg)
  9814. let _lspan = document.createElement('span')
  9815. _lspan.innerHTML = "上傳中..."
  9816. _lchild.appendChild(_lspan)
  9817. _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%);"
  9818. _loading.appendChild(_lchild)
  9819. var _box = $$('div', {
  9820. "style": {
  9821. "position": "relative",
  9822. "width": "100%",
  9823. "height": "100%",
  9824. },
  9825. })
  9826. _box.appendChild(_loading)
  9827. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9828. switch (str) {
  9829. case "whiteboard":
  9830. aTool = 1;
  9831. _iframe = $$("iframe", {
  9832. "frameborder": "no",
  9833. "border": "0",
  9834. "scrolling ": "no",
  9835. "style": {
  9836. "cssText": "border:0;width:100%;height:100%"
  9837. },
  9838. "src": "https://iwb.cocorobo.hk/"
  9839. })
  9840. _box.appendChild(_iframe);
  9841. _box.appendChild(_jie);
  9842. _formdiv = new U.UF.UI.form(
  9843. "電子白板",
  9844. _box, {
  9845. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9846. "style": {
  9847. "width": "90%",
  9848. "height": "90%",
  9849. "overflow": 'hidden'
  9850. },
  9851. "onresize": function () { }
  9852. }, {
  9853. closecallback: function () { }
  9854. }, {
  9855. "style": {
  9856. "height": "36px"
  9857. }
  9858. }).form; //創建窗體
  9859. _taskbar = {
  9860. "id": str + _formdiv.id,
  9861. "style": {
  9862. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9863. },
  9864. "name": "電子白板",
  9865. "forms": _formdiv,
  9866. "click": function () {
  9867. U.MD.D.I.openApplication(str, obj, info);
  9868. }
  9869. }
  9870. break;
  9871. case "mind":
  9872. aTool = 3;
  9873. _iframe = $$("iframe", {
  9874. "frameborder": "no",
  9875. "border": "0",
  9876. "scrolling ": "no",
  9877. "style": {
  9878. "cssText": "border:0;width:100%;height:100%"
  9879. },
  9880. "src": "/kityminder-editor/dist/index.html"
  9881. });
  9882. _box.appendChild(_iframe);
  9883. _box.appendChild(_jie);
  9884. _formdiv = new U.UF.UI.form(
  9885. "思維導圖",
  9886. _box, { //"/jsmind/example/demo.html"
  9887. "id": "minds_Yu" + cid + stage + task + tool,
  9888. "style": {
  9889. "width": "90%",
  9890. "height": "90%",
  9891. "overflow": 'hidden'
  9892. },
  9893. "onresize": function () { }
  9894. }, {
  9895. closecallback: function () { }
  9896. }, {
  9897. "style": {
  9898. "height": "36px"
  9899. }
  9900. }).form; //創建窗體
  9901. _taskbar = {
  9902. "id": str + _formdiv.id,
  9903. "style": {
  9904. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9905. },
  9906. "name": "思維導圖",
  9907. "forms": _formdiv,
  9908. "click": function () {
  9909. U.MD.D.I.openApplication(str, obj, info);
  9910. }
  9911. }
  9912. break;
  9913. case "doc":
  9914. aTool = 6;
  9915. _iframe = $$("iframe", {
  9916. "frameborder": "no",
  9917. "border": "0",
  9918. "scrolling ": "no",
  9919. "style": {
  9920. "cssText": "border:0;width:100%;height:100%"
  9921. },
  9922. "src": "/Office/Word/WordEditArea.htm"
  9923. })
  9924. _box.appendChild(_iframe);
  9925. _box.appendChild(_jie);
  9926. _formdiv = new U.UF.UI.form(
  9927. "協同文檔",
  9928. _box, {
  9929. "id": "docs_Yu" + cid + stage + task + tool,
  9930. "style": {
  9931. "width": "90%",
  9932. "height": "90%",
  9933. "overflow": 'hidden'
  9934. },
  9935. "onresize": function () { }
  9936. }, {
  9937. closecallback: function () { }
  9938. }, {
  9939. "style": {
  9940. "height": "36px"
  9941. }
  9942. }).form; //創建窗體
  9943. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9944. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9945. })
  9946. _taskbar = {
  9947. "id": str + _formdiv.id,
  9948. "style": {
  9949. "backgroundImage": "url(/img/icon/doc.png)"
  9950. },
  9951. "name": "協同文檔",
  9952. "forms": _formdiv,
  9953. "click": function () {
  9954. U.MD.D.I.openApplication(str, obj, info);
  9955. }
  9956. }
  9957. break;
  9958. case "CocoPi":
  9959. aTool = 57;
  9960. _iframe = $$("iframe", {
  9961. "allowpaymentrequest": "allowpaymentrequest",
  9962. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9963. "webkitallowfullscreen": "",
  9964. "mozallowfullscreen": "",
  9965. "frameborder": "no",
  9966. "border": "0",
  9967. "scrolling ": "no",
  9968. "style": {
  9969. "cssText": "border:0;width:100%;height:100%"
  9970. },
  9971. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9972. })
  9973. _box.appendChild(_iframe);
  9974. _box.appendChild(_jie);
  9975. _formdiv = new U.UF.UI.form(
  9976. "CocoPi",
  9977. _box, {
  9978. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9979. "style": {
  9980. "width": "90%",
  9981. "height": "90%",
  9982. "overflow": 'hidden'
  9983. },
  9984. "onresize": function () { }
  9985. }, {
  9986. closecallback: function () { }
  9987. }, {
  9988. "style": {
  9989. "height": "36px"
  9990. }
  9991. }).form; //創建窗體
  9992. _taskbar = {
  9993. "id": str + _formdiv.id,
  9994. "style": {
  9995. "backgroundImage": "url(/img/icon/cocopi.png)"
  9996. },
  9997. "name": "CocoPi",
  9998. "forms": _formdiv,
  9999. "click": function () {
  10000. U.MD.D.I.openApplication(str, obj, info);
  10001. }
  10002. }
  10003. break;
  10004. }
  10005. if (_iframe) {
  10006. if (str == 'doc') {
  10007. _iframe = _formdiv.querySelector('iframe')
  10008. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10009. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10010. })
  10011. if (onloadListener) {
  10012. _iframe.contentDocument.location.reload()
  10013. } else {
  10014. _iframe.contentDocument.location.reload()
  10015. }
  10016. } else if (str == 'mind') {
  10017. _iframe = _formdiv.querySelector('iframe')
  10018. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10019. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10020. })
  10021. if (onloadListener) {
  10022. _iframe.contentDocument.location.reload()
  10023. } else {
  10024. _iframe.contentDocument.location.reload()
  10025. }
  10026. } else if (str == 'whiteboard') {
  10027. _iframe = _formdiv.querySelector('iframe')
  10028. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10029. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10030. })
  10031. // if (onloadListener) {
  10032. // try {
  10033. // _iframe.src += "?cocorobo="+new Date().getTime()
  10034. // _iframe.contentWindow.document.location.reload()
  10035. // } catch (error) {
  10036. // }
  10037. // } else {
  10038. // _iframe.contentDocument.location.reload()
  10039. // }
  10040. } else if (str == 'CocoPi') {
  10041. _iframe = _formdiv.querySelector('iframe')
  10042. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10043. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10044. })
  10045. if (onloadListener) {
  10046. _iframe.contentDocument.location.reload()
  10047. } else {
  10048. _iframe.contentDocument.location.reload()
  10049. }
  10050. } else {
  10051. _iframe.onload = () => { };
  10052. }
  10053. _jie.onclick = async () => {
  10054. let text = ''
  10055. let type = '2'
  10056. if (aTool == 1) {
  10057. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10058. type = '3'
  10059. } else if (aTool == 6) {
  10060. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10061. type = '1'
  10062. } else if (aTool == 3) {
  10063. text = await U.MD.D.I.getEditorContent(_iframe);
  10064. type = '2'
  10065. } else if (aTool == 57) {
  10066. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10067. type = '4'
  10068. }
  10069. _loading.style.display = 'flex'
  10070. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10071. }
  10072. }
  10073. //U.MD.D.I.openClick(str);
  10074. //如果有任務欄信息
  10075. // if (_taskbar) {
  10076. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10077. // }
  10078. }
  10079. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10080. var xmlhttp;
  10081. var Mac, Sn, DeviceId
  10082. if (window.XMLHttpRequest) {
  10083. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10084. xmlhttp = new XMLHttpRequest();
  10085. }
  10086. else {
  10087. // IE6, IE5 瀏覽器執行代碼
  10088. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10089. }
  10090. xmlhttp.onreadystatechange = function () {
  10091. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10092. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10093. // resolve(res.value[0][0].text);
  10094. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10095. }
  10096. }
  10097. }
  10098. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10099. xmlhttp.send();
  10100. }
  10101. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10102. var xmlhttp;
  10103. var Mac, Sn, DeviceId
  10104. if (window.XMLHttpRequest) {
  10105. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10106. xmlhttp = new XMLHttpRequest();
  10107. }
  10108. else {
  10109. // IE6, IE5 瀏覽器執行代碼
  10110. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10111. }
  10112. xmlhttp.onreadystatechange = function () {
  10113. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10114. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10115. // resolve(res.value[0][0].text);
  10116. if (type == '2') {
  10117. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10118. } else if (type == '3') {
  10119. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10120. } else if (type == '4') {
  10121. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10122. }
  10123. } else {
  10124. if (type == '2') {
  10125. iframe.contentWindow.editor.minder.importData('json', '')
  10126. } else if (type == '3') {
  10127. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10128. } else if (type == '4') {
  10129. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10130. }
  10131. }
  10132. }
  10133. }
  10134. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10135. xmlhttp.send();
  10136. }
  10137. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10138. var xmlhttp;
  10139. var Mac, Sn, DeviceId
  10140. if (window.XMLHttpRequest) {
  10141. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10142. xmlhttp = new XMLHttpRequest();
  10143. }
  10144. else {
  10145. // IE6, IE5 瀏覽器執行代碼
  10146. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10147. }
  10148. xmlhttp.onreadystatechange = function () {
  10149. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10150. if (xmlhttp.response) {
  10151. // resolve(res.value[0][0].text);
  10152. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10153. // $(fileInput).val('');
  10154. // });
  10155. span.innerHTML = '上傳成功'
  10156. setTimeout(() => {
  10157. loading.style.display = 'none'
  10158. }, 1000);
  10159. }
  10160. }
  10161. }
  10162. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10163. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10164. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10165. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10166. // 設置請求頭,表示請求體的編碼格式
  10167. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10168. // 設置請求體,使用url-encoded格式的數據
  10169. }
  10170. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10171. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10172. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10173. _userinfo = US.userInfo, //登錄用戶信息
  10174. _userid = US.userInfo.userid //登錄用戶id
  10175. let _iframe;
  10176. let _cid = cid,
  10177. _stage = stage,
  10178. _task = task,
  10179. _tool = tool;
  10180. var _jie = $$("div", {
  10181. "style": {
  10182. "position": "absolute",
  10183. "bottom": "50px",
  10184. "right": "50px",
  10185. "zIndex": "9999",
  10186. "backgroundColor": "#2268bc",
  10187. "color": "#fff",
  10188. "padding": "12px 20px",
  10189. "cursor": "pointer",
  10190. "borderRadius": "4px",
  10191. },
  10192. "innerHTML": "提交作業"
  10193. })
  10194. let aTool = ''
  10195. let _loading = document.createElement('div')
  10196. _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;"
  10197. // _loading.id = "";
  10198. let _lchild = document.createElement('div')
  10199. let _limg = document.createElement('img')
  10200. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10201. _limg.style = "width: 26px;margin-right: 10px;"
  10202. _lchild.appendChild(_limg)
  10203. let _lspan = document.createElement('span')
  10204. _lspan.innerHTML = "上傳中..."
  10205. _lchild.appendChild(_lspan)
  10206. _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%);"
  10207. _loading.appendChild(_lchild)
  10208. var _box = $$('div', {
  10209. "style": {
  10210. "position": "relative",
  10211. "width": "100%",
  10212. "height": "100%",
  10213. },
  10214. })
  10215. _box.appendChild(_loading)
  10216. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10217. switch (str) {
  10218. case "CocoPi":
  10219. aTool = 57;
  10220. _iframe = $$("iframe", {
  10221. "allowpaymentrequest": "allowpaymentrequest",
  10222. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10223. "webkitallowfullscreen": "",
  10224. "mozallowfullscreen": "",
  10225. "frameborder": "no",
  10226. "border": "0",
  10227. "scrolling ": "no",
  10228. "style": {
  10229. "cssText": "border:0;width:100%;height:100%"
  10230. },
  10231. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10232. })
  10233. _box.appendChild(_iframe);
  10234. _box.appendChild(_jie);
  10235. _formdiv = new U.UF.UI.form(
  10236. "CocoPi",
  10237. _box, {
  10238. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10239. "style": {
  10240. "width": "90%",
  10241. "height": "90%",
  10242. "overflow": 'hidden'
  10243. },
  10244. "onresize": function () { }
  10245. }, {
  10246. closecallback: function () { }
  10247. }, {
  10248. "style": {
  10249. "height": "36px"
  10250. }
  10251. }).form; //創建窗體
  10252. _taskbar = {
  10253. "id": str + _formdiv.id,
  10254. "style": {
  10255. "backgroundImage": "url(/img/icon/cocopi.png)"
  10256. },
  10257. "name": "CocoPi",
  10258. "forms": _formdiv,
  10259. "click": function () {
  10260. U.MD.D.I.openApplication(str, obj, info);
  10261. }
  10262. }
  10263. break;
  10264. }
  10265. if (_iframe) {
  10266. if (str == 'CocoPi') {
  10267. _iframe = _formdiv.querySelector('iframe')
  10268. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10269. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10270. })
  10271. if (onloadListener) {
  10272. _iframe.contentDocument.location.reload()
  10273. } else {
  10274. _iframe.contentDocument.location.reload()
  10275. }
  10276. }
  10277. _jie.onclick = async () => {
  10278. let text = ''
  10279. if (aTool == 57) {
  10280. text = _iframe.contentWindow.getLoadXmlStr()
  10281. }
  10282. _loading.style.display = 'flex'
  10283. console.log(_loading);
  10284. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10285. _loading.style.display = 'none'
  10286. let _div = document.createElement('div')
  10287. _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;"
  10288. let _inner = document.createElement('div')
  10289. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10290. _inner.innerHTML = "上傳成功"
  10291. _div.appendChild(_inner)
  10292. _iframe.contentWindow.window.document.body.appendChild(_div)
  10293. _div.onclick = () => {
  10294. _iframe.contentWindow.window.document.body.removeChild(_div)
  10295. }
  10296. setTimeout(() => {
  10297. _iframe.contentWindow.window.document.body.removeChild(_div)
  10298. }, 1000);
  10299. }, [], { "type": "POST", "withCredentials": true });
  10300. }
  10301. }
  10302. }
  10303. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10304. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10305. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10306. _userid = student.userid, //登錄用戶id
  10307. _username = student.student //用戶名字
  10308. let _iframe;
  10309. let _cid = cid,
  10310. _stage = stage,
  10311. _task = task,
  10312. _tool = tool;
  10313. var _jie = $$("div", {
  10314. "style": {
  10315. "position": "absolute",
  10316. "bottom": "50px",
  10317. "right": "50px",
  10318. "zIndex": "9999",
  10319. "backgroundColor": "#2268bc",
  10320. "color": "#fff",
  10321. "padding": "12px 20px",
  10322. "cursor": "pointer",
  10323. "borderRadius": "4px",
  10324. },
  10325. "innerHTML": "提交作業"
  10326. })
  10327. let aTool = ''
  10328. let _loading = document.createElement('div')
  10329. _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;"
  10330. // _loading.id = "";
  10331. let _lchild = document.createElement('div')
  10332. let _limg = document.createElement('img')
  10333. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10334. _limg.style = "width: 26px;margin-right: 10px;"
  10335. _lchild.appendChild(_limg)
  10336. let _lspan = document.createElement('span')
  10337. _lspan.innerHTML = "上傳中..."
  10338. _lchild.appendChild(_lspan)
  10339. _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%);"
  10340. _loading.appendChild(_lchild)
  10341. var _box = $$('div', {
  10342. "style": {
  10343. "position": "relative",
  10344. "width": "100%",
  10345. "height": "100%",
  10346. },
  10347. })
  10348. _box.appendChild(_loading)
  10349. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10350. switch (str) {
  10351. case "CocoPi":
  10352. aTool = 57;
  10353. _iframe = $$("iframe", {
  10354. "allowpaymentrequest": "allowpaymentrequest",
  10355. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10356. "webkitallowfullscreen": "",
  10357. "mozallowfullscreen": "",
  10358. "frameborder": "no",
  10359. "border": "0",
  10360. "scrolling ": "no",
  10361. "style": {
  10362. "cssText": "border:0;width:100%;height:100%"
  10363. },
  10364. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10365. })
  10366. _box.appendChild(_iframe);
  10367. _box.appendChild(_jie);
  10368. _formdiv = new U.UF.UI.form(
  10369. "CocoPi-" + _username,
  10370. _box, {
  10371. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10372. "style": {
  10373. "width": "90%",
  10374. "height": "90%",
  10375. "overflow": 'hidden'
  10376. },
  10377. "onresize": function () { }
  10378. }, {
  10379. closecallback: function () { }
  10380. }, {
  10381. "style": {
  10382. "height": "36px"
  10383. }
  10384. }).form; //創建窗體
  10385. _taskbar = {
  10386. "id": str + _formdiv.id,
  10387. "style": {
  10388. "backgroundImage": "url(/img/icon/cocopi.png)"
  10389. },
  10390. "name": "CocoPi",
  10391. "forms": _formdiv,
  10392. "click": function () {
  10393. U.MD.D.I.openApplication(str, obj, info);
  10394. }
  10395. }
  10396. break;
  10397. }
  10398. if (_iframe) {
  10399. if (str == 'CocoPi') {
  10400. _iframe = _formdiv.querySelector('iframe')
  10401. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10402. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10403. })
  10404. if (onloadListener) {
  10405. _iframe.contentDocument.location.reload()
  10406. } else {
  10407. _iframe.contentDocument.location.reload()
  10408. }
  10409. }
  10410. _jie.onclick = async () => {
  10411. let text = ''
  10412. if (aTool == 57) {
  10413. text = _iframe.contentWindow.getLoadXmlStr()
  10414. }
  10415. _loading.style.display = 'flex'
  10416. console.log(_loading);
  10417. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10418. _loading.style.display = 'none'
  10419. let _div = document.createElement('div')
  10420. _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;"
  10421. let _inner = document.createElement('div')
  10422. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10423. _inner.innerHTML = "上傳成功"
  10424. _div.appendChild(_inner)
  10425. _iframe.contentWindow.window.document.body.appendChild(_div)
  10426. _div.onclick = () => {
  10427. _iframe.contentWindow.window.document.body.removeChild(_div)
  10428. }
  10429. setTimeout(() => {
  10430. _iframe.contentWindow.window.document.body.removeChild(_div)
  10431. }, 1000);
  10432. }, [], { "type": "POST", "withCredentials": true });
  10433. }
  10434. }
  10435. }
  10436. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10437. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10438. if (res.value[0].length > 0) {
  10439. if (atool == 57) {
  10440. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10441. }
  10442. } else {
  10443. if (atool == 57) {
  10444. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10445. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10446. }
  10447. }
  10448. }, [], { "type": "POST", "withCredentials": true });
  10449. }