DeskTop.js 691 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976
  1. /*
  2. 此處為桌面系統啟動應用區域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面應用處理
  5. //判斷圖片是否在拖拽,如果是拖拽圖標的過程是不會打開圖片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教師桌面圖標的全局變量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //極簡模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教師桌面圖標的全局變量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "項目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的項目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量規評分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "實時課堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "學習資料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "國家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  417. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  434. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教師桌面圖標的全局變量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教師桌面圖標的全局變量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龍華中心小學教師桌面圖標的全局變量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院實小教師桌面圖標的全局變量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "評測看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院實小教師桌面圖標的全局變量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小學教師桌面圖標的全局變量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小學學生桌面圖標的全局變量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //ricoh
  694. U.MD.D.I.ricohteacherDeskIcon = [
  695. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  696. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  697. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  698. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  699. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  700. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  701. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  702. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  703. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  704. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  705. ];
  706. //hk
  707. U.MD.D.I.hkStudentDeskIcon = [
  708. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  709. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  710. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  711. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. ];
  715. //hk
  716. U.MD.D.I.hkaceteacherDeskIcon = [
  717. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  718. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  719. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  720. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  721. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  722. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  723. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  724. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  725. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  726. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  727. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  728. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  729. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  730. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  733. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  734. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  735. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  736. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  737. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  738. ];
  739. //hk
  740. U.MD.D.I.hkaceStudentDeskIcon = [
  741. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  743. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  744. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSteacherDeskIcon = [
  750. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  751. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  752. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  753. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  754. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  755. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  756. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  757. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  758. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  759. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  760. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  761. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  762. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  763. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  766. ];
  767. //香海正覺蓮社佛教正覺中學
  768. U.MD.D.I.hkZJLSStudentDeskIcon = [
  769. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  773. ];
  774. //雲海
  775. U.MD.D.I.yunhaiTeacherDeskIcon = [
  776. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  777. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  778. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  779. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  780. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  783. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  784. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  785. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  786. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  787. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  788. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  789. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  790. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  792. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanTeacherDeskIcon = [
  797. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  805. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  806. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  807. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  808. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  809. ];
  810. //福田
  811. U.MD.D.I.heyuanAdminDeskIcon = [
  812. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  813. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  814. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  815. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  816. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  817. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  818. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  820. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  822. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  823. ];
  824. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  825. U.MD.D.I.szherTeacherDeskIcon = [
  826. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  827. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  828. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  829. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  830. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  831. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  832. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  833. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  834. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  836. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  837. ];
  838. //dsei
  839. U.MD.D.I.dseiTeacherDeskIcon = [
  840. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  841. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  842. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  843. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  844. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  845. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  846. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  847. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  848. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  849. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  850. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  851. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  852. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  853. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  854. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  855. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  856. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  857. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  858. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  859. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  860. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  861. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  862. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  863. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  864. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  865. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  866. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  867. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  868. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  869. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  870. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  871. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  872. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  873. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  874. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  875. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  876. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  877. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  878. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  880. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  881. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  882. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  883. ];
  884. //dsei
  885. U.MD.D.I.dseiAdminDeskIcon = [
  886. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  887. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  888. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  889. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  890. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  891. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  892. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  893. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  894. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  895. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  896. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  897. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  898. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  899. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  900. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  901. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  902. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  903. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  904. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  905. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  906. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  907. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  908. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  909. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  910. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  911. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  912. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  913. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  914. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  915. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  916. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  917. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  918. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  919. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  920. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  921. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  922. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  923. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  926. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  927. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  928. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  929. ];
  930. //dsei
  931. U.MD.D.I.dseiStudentDeskIcon = [
  932. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  936. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  938. ];
  939. //未來教育基地
  940. U.MD.D.I.szjkyTeacherDeskIcon = [
  941. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  942. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  943. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  948. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  949. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  950. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  951. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  952. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  953. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  954. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  955. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  957. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  958. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  959. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  960. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  961. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  962. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  963. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  964. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  965. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  966. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  967. ];
  968. //未來教育基地
  969. U.MD.D.I.szjkyAdminDeskIcon = [
  970. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  971. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  972. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  973. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  974. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  975. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  976. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  977. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  978. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  979. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  980. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  981. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  982. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  983. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  984. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  986. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  987. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  988. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  989. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  990. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  991. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  992. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  993. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  994. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  995. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  996. ];
  997. //未來教育基地
  998. U.MD.D.I.szjkyStudentDeskIcon = [
  999. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1004. ];
  1005. //成華教育局
  1006. U.MD.D.I.chjyjTeacherDeskIcon = [
  1007. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1018. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1021. ];
  1022. //成華教育局chjyj
  1023. U.MD.D.I.chjyjAdminDeskIcon = [
  1024. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1025. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1029. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1030. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1031. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1032. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1033. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1034. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1035. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1036. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //成華教育局chjyj
  1041. U.MD.D.I.chjyjStudentDeskIcon = [
  1042. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1043. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1044. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1045. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcStudentDeskIcon = [
  1049. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1050. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1051. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1052. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1053. ];
  1054. //tpc
  1055. U.MD.D.I.tpcTeacherDeskIcon = [
  1056. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1057. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1058. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1061. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1062. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1063. ];
  1064. //tpc
  1065. U.MD.D.I.tpcAdminDeskIcon = [
  1066. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1067. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1068. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1069. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1070. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1071. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1072. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1073. ];
  1074. //THU-IOE
  1075. U.MD.D.I.thuioeTeacherDeskIcon = [
  1076. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1077. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1079. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1080. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1081. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1082. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1083. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1084. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1085. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1086. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1087. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1088. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1089. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1090. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1091. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1092. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1093. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1094. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1095. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1096. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1097. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1098. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1099. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1100. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1101. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1102. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1103. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1104. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1105. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1106. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1107. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1108. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1109. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1110. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1111. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1113. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1114. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1115. ];
  1116. //THU-IOE
  1117. U.MD.D.I.thuioeStudentDeskIcon = [
  1118. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1119. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1120. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1121. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylTeacherDeskIcon = [
  1125. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1126. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1127. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1128. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1129. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1130. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1131. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1132. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1133. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1134. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1135. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1136. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1137. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1138. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1141. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1142. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1143. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1144. ];
  1145. //jccssyl
  1146. U.MD.D.I.jccssylStudentDeskIcon = [
  1147. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1148. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1149. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1150. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleTeacherDeskIcon = [
  1154. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1155. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1156. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1157. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1158. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1159. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1160. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1161. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1162. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1163. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1164. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1165. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1166. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1167. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1168. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1170. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1171. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1172. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1173. ];
  1174. //cale
  1175. U.MD.D.I.caleStudentDeskIcon = [
  1176. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1177. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1178. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1179. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1180. ];
  1181. //lqwmsgzs
  1182. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1183. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1184. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1185. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1186. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1187. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1188. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1189. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1190. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1191. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1192. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1193. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1194. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1195. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1196. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1197. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1198. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1199. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1200. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1201. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1202. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1203. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1204. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1205. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1206. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1207. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1208. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1209. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1210. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1211. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1212. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1213. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1214. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1215. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1216. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1217. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1218. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1220. ];
  1221. //lqwmsgzs
  1222. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1223. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1227. ];
  1228. //鹽田區幼兒園
  1229. U.MD.D.I.ytyTeacherDeskIcon = [
  1230. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1231. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1233. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1234. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1235. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1236. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1237. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1238. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1239. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1240. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1241. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1242. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1243. ];
  1244. //鹽田區幼兒園
  1245. U.MD.D.I.ytyStudentDeskIcon = [
  1246. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1247. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. ];
  1250. //scnuai
  1251. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1252. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1253. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1254. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1255. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1256. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1257. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1258. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1259. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1260. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1261. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1262. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1263. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1264. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1267. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1268. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1269. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1270. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1271. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1274. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1275. ];
  1276. //scnuai
  1277. U.MD.D.I.scnuaiAdminDeskIcon = [
  1278. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1279. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1280. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1281. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1282. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1283. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1284. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1285. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1286. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1287. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1288. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1289. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1290. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1291. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1293. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1294. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1295. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1296. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1297. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1298. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1299. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1300. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1301. ];
  1302. //scnuai
  1303. U.MD.D.I.scnuaiStudentDeskIcon = [
  1304. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1305. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1306. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1307. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizteacherDeskIcon = [
  1311. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1312. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1313. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1314. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1315. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1316. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1317. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1318. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1319. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1320. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1321. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1322. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1323. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1324. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1325. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1327. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1328. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1329. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1330. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1331. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1332. ];
  1333. //cocobiz
  1334. U.MD.D.I.cocobizStudentDeskIcon = [
  1335. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1336. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1337. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1338. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1344. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1345. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1346. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1347. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1348. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1349. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1350. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1351. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1353. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1354. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1355. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1356. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1357. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1358. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1361. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1362. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1363. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1364. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1365. ];
  1366. //xxzjky
  1367. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1368. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1369. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1370. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1371. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //nsfx
  1376. U.MD.D.I.nsfxTeacherDeskIcon = [
  1377. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1385. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1386. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1387. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1388. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1392. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1393. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1394. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1395. ];
  1396. //nsfx
  1397. U.MD.D.I.nsfxStudentDeskIcon = [
  1398. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1399. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1400. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1401. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaTeacherDeskIcon = [
  1405. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. // { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1408. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1409. // { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1412. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1414. // { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1415. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1416. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1417. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1418. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1419. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1420. ];
  1421. //stia
  1422. U.MD.D.I.stiaStudentDeskIcon = [
  1423. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1424. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1425. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //szdjg
  1429. U.MD.D.I.szdjgTeacherDeskIcon = [
  1430. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. ];
  1433. //szdjg
  1434. U.MD.D.I.szdjgStudentDeskIcon = [
  1435. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607TeacherDeskIcon = [
  1442. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1443. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1445. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1446. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1447. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1448. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1449. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1450. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1451. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1452. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1454. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1455. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1456. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1457. ];
  1458. //010607
  1459. U.MD.D.I.x010607StudentDeskIcon = [
  1460. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1461. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1462. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1463. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.x010608TeacherDeskIcon = [
  1467. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1468. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1470. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1471. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1474. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1475. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1476. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1477. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1478. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1481. ];
  1482. //010608
  1483. U.MD.D.I.x010608StudentDeskIcon = [
  1484. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1487. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1488. ];
  1489. //xhly
  1490. U.MD.D.I.xhlyTeacherDeskIcon = [
  1491. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1492. ];
  1493. //010608
  1494. U.MD.D.I.xhlyStudentDeskIcon = [
  1495. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. ];
  1497. //北師大
  1498. U.MD.D.I.BSDNSteacherDeskIcon = [
  1499. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1500. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1501. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1502. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1503. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1504. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1505. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1506. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1507. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1508. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. ];
  1511. //北師大
  1512. U.MD.D.I.BSDNSstudentDeskIcon = [
  1513. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1520. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1535. ];
  1536. //CUHK_EDU
  1537. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1538. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //010503
  1544. U.MD.D.I.x010503TeacherDeskIcon = [
  1545. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1548. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1549. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1553. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1554. ];
  1555. //010503
  1556. U.MD.D.I.x010503StudentDeskIcon = [
  1557. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. ];
  1562. //SPROUT Lab
  1563. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1564. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1565. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1566. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1567. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1568. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1571. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1573. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1574. ];
  1575. //SPROUT Lab
  1576. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1577. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1579. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1580. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1581. ];
  1582. //010204
  1583. U.MD.D.I.x010204TeacherDeskIcon = [
  1584. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1585. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1586. ];
  1587. //010204
  1588. U.MD.D.I.x010204StudentDeskIcon = [
  1589. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //trail
  1595. U.MD.D.I.trailTeacherDeskIcon = [
  1596. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1599. ];
  1600. //trail
  1601. U.MD.D.I.trailStudentDeskIcon = [
  1602. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //010504
  1608. U.MD.D.I.x010504TeacherDeskIcon = [
  1609. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1612. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1613. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1616. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1618. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1619. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1620. ];
  1621. //010504
  1622. U.MD.D.I.x010504StudentDeskIcon = [
  1623. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1624. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1625. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. ];
  1628. //SCNUET
  1629. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1630. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1631. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1635. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1636. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1637. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1638. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1639. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1640. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1641. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1642. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1643. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1644. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1646. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1647. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1648. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1649. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1650. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1651. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1652. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1653. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1654. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1655. ];
  1656. //SCNUET
  1657. U.MD.D.I.SCNUETAdminDeskIcon = [
  1658. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1659. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1660. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1661. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1662. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1663. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1664. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1665. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1666. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1667. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1668. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1669. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1670. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1671. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1672. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1673. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1674. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1675. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1676. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1677. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1678. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1679. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1680. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1681. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1682. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1683. ];
  1684. //SCNUET
  1685. U.MD.D.I.SCNUETStudentDeskIcon = [
  1686. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1688. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1689. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1690. ];
  1691. //x020201
  1692. U.MD.D.I.x020201TeacherDeskIcon = [
  1693. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1694. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1695. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1696. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1697. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1698. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1699. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1700. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1701. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1703. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1704. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1705. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1706. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1707. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1708. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1709. ];
  1710. //x020201
  1711. U.MD.D.I.x020201AdminDeskIcon = [
  1712. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1713. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1714. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1717. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1718. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1719. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1720. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1721. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1722. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1723. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1724. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1725. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1726. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1727. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1728. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1729. ];
  1730. //020201
  1731. U.MD.D.I.x020201StudentDeskIcon = [
  1732. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1734. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1735. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1736. ];
  1737. //010611
  1738. U.MD.D.I.x010611TeacherDeskIcon = [
  1739. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1740. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1744. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1745. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. ];
  1749. //010611
  1750. U.MD.D.I.x010611StudentDeskIcon = [
  1751. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1755. ];
  1756. //010612
  1757. U.MD.D.I.x010612TeacherDeskIcon = [
  1758. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1759. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1761. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1765. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1766. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1767. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1768. ];
  1769. //010612
  1770. U.MD.D.I.x010612StudentDeskIcon = [
  1771. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1773. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1774. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1775. ];
  1776. //tianyuan
  1777. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1778. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1779. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1780. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1781. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1782. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1783. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1784. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1785. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1786. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1788. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1789. ];
  1790. //010611
  1791. U.MD.D.I.tianyuanStudentDeskIcon = [
  1792. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1795. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1796. ];
  1797. //320101
  1798. U.MD.D.I.x320101TeacherDeskIcon = [
  1799. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1800. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1801. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1802. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1803. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1804. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1806. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1807. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1808. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1810. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1811. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1812. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1813. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1814. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1815. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1816. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1817. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1818. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1819. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1820. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1821. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1822. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1823. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1824. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1825. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1826. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1827. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1828. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1829. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1830. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1831. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1832. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1833. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1834. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1835. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1836. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1837. ];
  1838. //320101
  1839. U.MD.D.I.x320101StudentDeskIcon = [
  1840. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1841. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1842. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1843. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1844. ];
  1845. //szsy
  1846. U.MD.D.I.szsyTeacherDeskIcon = [
  1847. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1848. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1849. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1850. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1851. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1852. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1853. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1854. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1855. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1856. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1857. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1858. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1859. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1860. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1861. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1862. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1863. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1864. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1865. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1866. ];
  1867. //szsy
  1868. U.MD.D.I.szsyStudentDeskIcon = [
  1869. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1870. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1871. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1872. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1873. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1874. ];
  1875. //010404
  1876. U.MD.D.I.x010404TeacherDeskIcon = [
  1877. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1878. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1879. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1880. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1881. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1882. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1883. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1884. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1885. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1886. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1887. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1888. ];
  1889. //010404
  1890. U.MD.D.I.x010404StudentDeskIcon = [
  1891. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1892. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1893. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1894. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1895. ];
  1896. //#region 桌面初始化a
  1897. /**
  1898. * 初始化桌面的起始函數
  1899. *
  1900. */
  1901. U.MD.D.I.init = function () {
  1902. if ($("#U_MD_D_K")[0]) {
  1903. //初始化桌面圖標
  1904. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1905. // var clickUrl = ':12588/requestIp.php';
  1906. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1907. // U.MD.D.I.Ip = data;
  1908. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1909. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1910. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1911. // })
  1912. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1913. // })
  1914. }
  1915. }
  1916. /**
  1917. * 模式切換
  1918. *
  1919. */
  1920. U.MD.D.I.ModeCheck = function (type) {
  1921. if (US.Config.type == type) {
  1922. return
  1923. }
  1924. US.Config.type = type
  1925. $('.U_PBL_Check .active')[0].className = ''
  1926. if (type == 1) {
  1927. $('.U_PBL_Check div')[0].className = 'active'
  1928. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1929. } else {
  1930. $('.U_PBL_Check div')[1].className = 'active'
  1931. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1932. }
  1933. //初始化桌面圖標
  1934. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1935. if (type == 2) {
  1936. U.MD.D.I.openApplication("project")
  1937. }
  1938. }
  1939. /**
  1940. * 隱藏任務欄
  1941. *
  1942. * @param {element} 桌面元素
  1943. */
  1944. U.MD.D.I.hiddenTaskbar = function (el) {
  1945. //任務欄位置變小
  1946. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1947. //桌面的位置變大
  1948. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1949. }
  1950. /**
  1951. * 隱藏任務欄
  1952. *
  1953. * @param {element} 桌面元素
  1954. */
  1955. U.MD.D.I.hiddenTaskbarout = function (el) {
  1956. //任務欄位置變小
  1957. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1958. //任務欄位置變化
  1959. U.selectEl(el).css({ "bottom": "-60px" });
  1960. //桌面的位置變大
  1961. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1962. }
  1963. }
  1964. /**
  1965. * 初始化打印桌面圖標
  1966. *
  1967. * @param {element} 桌面元素
  1968. */
  1969. U.MD.D.I.initDesktopIcons = function (el, type) {
  1970. var i, //用於循環
  1971. _content, //桌面圖標元素
  1972. _iconcontent, //桌面圖標元素
  1973. _frag = $$("frag"), //定義一個碎片元素
  1974. _type = US.userInfo.type,
  1975. _org = US.userInfo.org,
  1976. _oid = US.userInfo.organizeid,
  1977. _role = US.userInfo.role,
  1978. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  1979. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  1980. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  1981. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  1982. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  1983. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  1984. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  1985. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1986. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1987. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1988. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  1989. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  1990. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  1991. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  1992. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  1993. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  1994. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  1995. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  1996. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  1997. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  1998. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  1999. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  2000. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  2001. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  2002. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2003. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2004. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  2005. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  2006. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  2007. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  2008. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  2009. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  2010. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2011. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2012. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2013. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2014. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2015. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2016. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2017. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2018. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2019. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  2020. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2021. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2022. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2023. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2024. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  2025. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2026. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2027. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2028. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2029. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2030. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2031. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2032. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2033. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2034. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2035. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2036. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  2037. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2038. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2039. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2040. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2041. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2042. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2043. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2044. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2045. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2046. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2047. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2048. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  2049. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  2050. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  2051. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  2052. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2053. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2054. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2055. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2056. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2057. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2058. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2059. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2060. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2061. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2062. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2063. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2064. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2065. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2066. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2067. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2068. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2069. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2070. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2071. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2072. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2073. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2074. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2075. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2076. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2077. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2078. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2079. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2080. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2081. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2082. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2083. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2084. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2085. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2086. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2087. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2088. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2089. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2090. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2091. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2092. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2093. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2094. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2095. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2096. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2097. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2098. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926'];
  2099. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2100. //清楚桌面圖標
  2101. el.innerHTML = "";
  2102. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2103. _teacherDesktopIconInfo.push(
  2104. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2105. { "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)" } },
  2106. )
  2107. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2108. }
  2109. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926') {
  2110. _teacherDesktopIconInfo.push(
  2111. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2112. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2113. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2114. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2115. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2116. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2117. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2118. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2119. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2120. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2121. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2122. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2123. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2124. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2125. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2126. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2127. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2128. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2129. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2130. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2131. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2132. )
  2133. }
  2134. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  2135. _teacherDesktopIconInfo.push(
  2136. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2137. )
  2138. }
  2139. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2140. _nsfxTeacherDeskIconInfo.push(
  2141. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2142. )
  2143. }
  2144. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2145. // _teacherDesktopIconInfo.push(
  2146. // )
  2147. // }
  2148. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2149. _teacherDesktopIconInfo.push(
  2150. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2151. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2152. )
  2153. }
  2154. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2155. _teacherDesktopIconInfo.push(
  2156. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2157. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2158. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2159. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2160. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2161. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2162. )
  2163. _studentDesktopIconInfo.push(
  2164. )
  2165. }
  2166. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2167. _teacherDesktopIconInfo.push(
  2168. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2169. )
  2170. _studentDesktopIconInfo.push(
  2171. )
  2172. }
  2173. //010606 組織
  2174. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2175. _teacherDesktopIconInfo.push(
  2176. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2177. )
  2178. _studentDesktopIconInfo.push(
  2179. )
  2180. }
  2181. //麒麟二中 和 民新小學
  2182. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2183. _teacherDesktopIconInfo.push(
  2184. )
  2185. }
  2186. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2187. _teacherDesktopIconInfo.push(
  2188. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2189. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2190. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2191. )
  2192. }
  2193. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2194. _hkTeacherDeskIconInfo.push(
  2195. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2196. )
  2197. }
  2198. //北師大附中(010601)
  2199. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2200. // _teacherDesktopIconInfo.push(
  2201. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2202. // )
  2203. // _studentDesktopIconInfo.push(
  2204. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2205. // )
  2206. // }
  2207. //樂善堂余近卿中學
  2208. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2209. _teacherDesktopIconInfo.push(
  2210. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2211. )
  2212. }
  2213. // Education Artificial Intelligence
  2214. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2215. _teacherDesktopIconInfo.push(
  2216. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2217. )
  2218. }
  2219. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2220. _teacherDesktopIconInfo.push(
  2221. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2222. )
  2223. }
  2224. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2225. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2226. _teacherDesktopIconInfo.push(
  2227. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2228. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2229. )
  2230. }
  2231. //麒麟二中
  2232. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2233. _studentDesktopIconInfo.push(
  2234. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2235. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2236. )
  2237. }
  2238. //萬科雙語
  2239. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2240. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2241. if (el.Name == '項目管理') {
  2242. el.Name = 'PBL項目'
  2243. }
  2244. return el
  2245. })
  2246. _studentDesktopIconInfo3.push(
  2247. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2248. )
  2249. }
  2250. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2251. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2252. return el.Name != '魔盒識字' && el.Name != '24點'
  2253. })
  2254. }
  2255. 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) {
  2256. _studentDesktopIconInfo.push(
  2257. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2258. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2259. )
  2260. }
  2261. //循環創建桌面圖標
  2262. if (type == 1) {
  2263. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2264. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2265. _content = $$("div", {
  2266. className: "U_MD_D_KO",
  2267. "onmousedown": U.UF.C.closure(function (obj) {
  2268. //防止拖動圖標即打開了桌面應用
  2269. U.MD.D.click(this, obj);
  2270. }, [_studentDesktopIconInfo[i]]),
  2271. "onclick": U.UF.C.closure(function (obj) {
  2272. //防止拖動圖標即打開了桌面應用
  2273. U.MD.D.click(this, obj);
  2274. }, [_studentDesktopIconInfo[i]])
  2275. }, _frag); //
  2276. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2279. }
  2280. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2281. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2282. _content = $$("div", {
  2283. className: "U_MD_D_KO",
  2284. "onmousedown": U.UF.C.closure(function (obj) {
  2285. //防止拖動圖標即打開了桌面應用
  2286. U.MD.D.click(this, obj);
  2287. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2288. "onclick": U.UF.C.closure(function (obj) {
  2289. //防止拖動圖標即打開了桌面應用
  2290. U.MD.D.click(this, obj);
  2291. }, [_hkZJLSStudentDeskIconInfo[i]])
  2292. }, _frag); //
  2293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2296. } //
  2297. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2298. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2299. _content = $$("div", {
  2300. className: "U_MD_D_KO",
  2301. "onmousedown": U.UF.C.closure(function (obj) {
  2302. //防止拖動圖標即打開了桌面應用
  2303. U.MD.D.click(this, obj);
  2304. }, [_ytyStudentDeskIconInfo[i]]),
  2305. "onclick": U.UF.C.closure(function (obj) {
  2306. //防止拖動圖標即打開了桌面應用
  2307. U.MD.D.click(this, obj);
  2308. }, [_ytyStudentDeskIconInfo[i]])
  2309. }, _frag); //
  2310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2313. } //
  2314. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2315. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2316. _content = $$("div", {
  2317. className: "U_MD_D_KO",
  2318. "onmousedown": U.UF.C.closure(function (obj) {
  2319. //防止拖動圖標即打開了桌面應用
  2320. U.MD.D.click(this, obj);
  2321. }, [_jccssylStudentDeskIconInfo[i]]),
  2322. "onclick": U.UF.C.closure(function (obj) {
  2323. //防止拖動圖標即打開了桌面應用
  2324. U.MD.D.click(this, obj);
  2325. }, [_jccssylStudentDeskIconInfo[i]])
  2326. }, _frag); //
  2327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2330. }
  2331. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2332. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2333. _content = $$("div", {
  2334. className: "U_MD_D_KO",
  2335. "onmousedown": U.UF.C.closure(function (obj) {
  2336. //防止拖動圖標即打開了桌面應用
  2337. U.MD.D.click(this, obj);
  2338. }, [_scnuaiStudentDeskIconInfo[i]]),
  2339. "onclick": U.UF.C.closure(function (obj) {
  2340. //防止拖動圖標即打開了桌面應用
  2341. U.MD.D.click(this, obj);
  2342. }, [_scnuaiStudentDeskIconInfo[i]])
  2343. }, _frag); //
  2344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2347. }
  2348. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2349. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2350. _content = $$("div", {
  2351. className: "U_MD_D_KO",
  2352. "onmousedown": U.UF.C.closure(function (obj) {
  2353. //防止拖動圖標即打開了桌面應用
  2354. U.MD.D.click(this, obj);
  2355. }, [_caleStudentDeskIconInfo[i]]),
  2356. "onclick": U.UF.C.closure(function (obj) {
  2357. //防止拖動圖標即打開了桌面應用
  2358. U.MD.D.click(this, obj);
  2359. }, [_caleStudentDeskIconInfo[i]])
  2360. }, _frag); //
  2361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2364. }
  2365. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2366. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2367. _content = $$("div", {
  2368. className: "U_MD_D_KO",
  2369. "onmousedown": U.UF.C.closure(function (obj) {
  2370. //防止拖動圖標即打開了桌面應用
  2371. U.MD.D.click(this, obj);
  2372. }, [_thuioeStudentDeskIconInfo[i]]),
  2373. "onclick": U.UF.C.closure(function (obj) {
  2374. //防止拖動圖標即打開了桌面應用
  2375. U.MD.D.click(this, obj);
  2376. }, [_thuioeStudentDeskIconInfo[i]])
  2377. }, _frag); //
  2378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2381. }
  2382. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2383. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2384. _content = $$("div", {
  2385. className: "U_MD_D_KO",
  2386. "onmousedown": U.UF.C.closure(function (obj) {
  2387. //防止拖動圖標即打開了桌面應用
  2388. U.MD.D.click(this, obj);
  2389. }, [_tpcStudentDeskIconInfo[i]]),
  2390. "onclick": U.UF.C.closure(function (obj) {
  2391. //防止拖動圖標即打開了桌面應用
  2392. U.MD.D.click(this, obj);
  2393. }, [_tpcStudentDeskIconInfo[i]])
  2394. }, _frag); //
  2395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2398. } //
  2399. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2400. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2401. _content = $$("div", {
  2402. className: "U_MD_D_KO",
  2403. "onmousedown": U.UF.C.closure(function (obj) {
  2404. //防止拖動圖標即打開了桌面應用
  2405. U.MD.D.click(this, obj);
  2406. }, [_chjyjStudentDeskIconInfo[i]]),
  2407. "onclick": U.UF.C.closure(function (obj) {
  2408. //防止拖動圖標即打開了桌面應用
  2409. U.MD.D.click(this, obj);
  2410. }, [_chjyjStudentDeskIconInfo[i]])
  2411. }, _frag); //
  2412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2415. }
  2416. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2417. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2418. _content = $$("div", {
  2419. className: "U_MD_D_KO",
  2420. "onmousedown": U.UF.C.closure(function (obj) {
  2421. //防止拖動圖標即打開了桌面應用
  2422. U.MD.D.click(this, obj);
  2423. }, [_szjkyStudentDeskIconInfo[i]]),
  2424. "onclick": U.UF.C.closure(function (obj) {
  2425. //防止拖動圖標即打開了桌面應用
  2426. U.MD.D.click(this, obj);
  2427. }, [_szjkyStudentDeskIconInfo[i]])
  2428. }, _frag); //
  2429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2432. }
  2433. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2434. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2435. _content = $$("div", {
  2436. className: "U_MD_D_KO",
  2437. "onmousedown": U.UF.C.closure(function (obj) {
  2438. //防止拖動圖標即打開了桌面應用
  2439. U.MD.D.click(this, obj);
  2440. }, [_x020201StudentDeskIconInfo[i]]),
  2441. "onclick": U.UF.C.closure(function (obj) {
  2442. //防止拖動圖標即打開了桌面應用
  2443. U.MD.D.click(this, obj);
  2444. }, [_x020201StudentDeskIconInfo[i]])
  2445. }, _frag); //
  2446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2449. }
  2450. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2451. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2452. _content = $$("div", {
  2453. className: "U_MD_D_KO",
  2454. "onmousedown": U.UF.C.closure(function (obj) {
  2455. //防止拖動圖標即打開了桌面應用
  2456. U.MD.D.click(this, obj);
  2457. }, [_SCNUETStudentDeskIconInfo[i]]),
  2458. "onclick": U.UF.C.closure(function (obj) {
  2459. //防止拖動圖標即打開了桌面應用
  2460. U.MD.D.click(this, obj);
  2461. }, [_SCNUETStudentDeskIconInfo[i]])
  2462. }, _frag); //
  2463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2466. }
  2467. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2468. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2469. _content = $$("div", {
  2470. className: "U_MD_D_KO",
  2471. "onmousedown": U.UF.C.closure(function (obj) {
  2472. //防止拖動圖標即打開了桌面應用
  2473. U.MD.D.click(this, obj);
  2474. }, [_dseiStudentDeskIconInfo[i]]),
  2475. "onclick": U.UF.C.closure(function (obj) {
  2476. //防止拖動圖標即打開了桌面應用
  2477. U.MD.D.click(this, obj);
  2478. }, [_dseiStudentDeskIconInfo[i]])
  2479. }, _frag); //
  2480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2483. }
  2484. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2485. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2486. _content = $$("div", {
  2487. className: "U_MD_D_KO",
  2488. "onmousedown": U.UF.C.closure(function (obj) {
  2489. //防止拖動圖標即打開了桌面應用
  2490. U.MD.D.click(this, obj);
  2491. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2492. "onclick": U.UF.C.closure(function (obj) {
  2493. //防止拖動圖標即打開了桌面應用
  2494. U.MD.D.click(this, obj);
  2495. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2496. }, _frag); //
  2497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2500. }
  2501. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2502. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2503. _content = $$("div", {
  2504. className: "U_MD_D_KO",
  2505. "onmousedown": U.UF.C.closure(function (obj) {
  2506. //防止拖動圖標即打開了桌面應用
  2507. U.MD.D.click(this, obj);
  2508. }, [_nsfxStudentDeskIconInfo[i]]),
  2509. "onclick": U.UF.C.closure(function (obj) {
  2510. //防止拖動圖標即打開了桌面應用
  2511. U.MD.D.click(this, obj);
  2512. }, [_nsfxStudentDeskIconInfo[i]])
  2513. }, _frag); //
  2514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2517. }
  2518. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2519. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2520. _content = $$("div", {
  2521. className: "U_MD_D_KO",
  2522. "onmousedown": U.UF.C.closure(function (obj) {
  2523. //防止拖動圖標即打開了桌面應用
  2524. U.MD.D.click(this, obj);
  2525. }, [_stiaStudentDeskIconInfo[i]]),
  2526. "onclick": U.UF.C.closure(function (obj) {
  2527. //防止拖動圖標即打開了桌面應用
  2528. U.MD.D.click(this, obj);
  2529. }, [_stiaStudentDeskIconInfo[i]])
  2530. }, _frag); //
  2531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2534. }
  2535. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2536. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2537. _content = $$("div", {
  2538. className: "U_MD_D_KO",
  2539. "onmousedown": U.UF.C.closure(function (obj) {
  2540. //防止拖動圖標即打開了桌面應用
  2541. U.MD.D.click(this, obj);
  2542. }, [_szdjgStudentDeskIconInfo[i]]),
  2543. "onclick": U.UF.C.closure(function (obj) {
  2544. //防止拖動圖標即打開了桌面應用
  2545. U.MD.D.click(this, obj);
  2546. }, [_szdjgStudentDeskIconInfo[i]])
  2547. }, _frag); //
  2548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2551. }
  2552. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2553. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2554. _content = $$("div", {
  2555. className: "U_MD_D_KO",
  2556. "onmousedown": U.UF.C.closure(function (obj) {
  2557. //防止拖動圖標即打開了桌面應用
  2558. U.MD.D.click(this, obj);
  2559. }, [_x010607StudentDeskIconInfo[i]]),
  2560. "onclick": U.UF.C.closure(function (obj) {
  2561. //防止拖動圖標即打開了桌面應用
  2562. U.MD.D.click(this, obj);
  2563. }, [_x010607StudentDeskIconInfo[i]])
  2564. }, _frag); //
  2565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2568. }
  2569. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2570. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2571. _content = $$("div", {
  2572. className: "U_MD_D_KO",
  2573. "onmousedown": U.UF.C.closure(function (obj) {
  2574. //防止拖動圖標即打開了桌面應用
  2575. U.MD.D.click(this, obj);
  2576. }, [_xhlyStudentDeskIconInfo[i]]),
  2577. "onclick": U.UF.C.closure(function (obj) {
  2578. //防止拖動圖標即打開了桌面應用
  2579. U.MD.D.click(this, obj);
  2580. }, [_xhlyStudentDeskIconInfo[i]])
  2581. }, _frag); //
  2582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2585. }
  2586. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2587. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2588. _content = $$("div", {
  2589. className: "U_MD_D_KO",
  2590. "onmousedown": U.UF.C.closure(function (obj) {
  2591. //防止拖動圖標即打開了桌面應用
  2592. U.MD.D.click(this, obj);
  2593. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2594. "onclick": U.UF.C.closure(function (obj) {
  2595. //防止拖動圖標即打開了桌面應用
  2596. U.MD.D.click(this, obj);
  2597. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2598. }, _frag); //
  2599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2602. }
  2603. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2604. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2605. _content = $$("div", {
  2606. className: "U_MD_D_KO",
  2607. "onmousedown": U.UF.C.closure(function (obj) {
  2608. //防止拖動圖標即打開了桌面應用
  2609. U.MD.D.click(this, obj);
  2610. }, [_x010503StudentDeskIconInfo[i]]),
  2611. "onclick": U.UF.C.closure(function (obj) {
  2612. //防止拖動圖標即打開了桌面應用
  2613. U.MD.D.click(this, obj);
  2614. }, [_x010503StudentDeskIconInfo[i]])
  2615. }, _frag); //
  2616. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2617. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2618. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2619. }
  2620. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2621. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2622. _content = $$("div", {
  2623. className: "U_MD_D_KO",
  2624. "onmousedown": U.UF.C.closure(function (obj) {
  2625. //防止拖動圖標即打開了桌面應用
  2626. U.MD.D.click(this, obj);
  2627. }, [_x010504StudentDeskIconInfo[i]]),
  2628. "onclick": U.UF.C.closure(function (obj) {
  2629. //防止拖動圖標即打開了桌面應用
  2630. U.MD.D.click(this, obj);
  2631. }, [_x010504StudentDeskIconInfo[i]])
  2632. }, _frag); //
  2633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2636. }
  2637. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2638. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2639. _content = $$("div", {
  2640. className: "U_MD_D_KO",
  2641. "onmousedown": U.UF.C.closure(function (obj) {
  2642. //防止拖動圖標即打開了桌面應用
  2643. U.MD.D.click(this, obj);
  2644. }, [_x010404StudentDeskIconInfo[i]]),
  2645. "onclick": U.UF.C.closure(function (obj) {
  2646. //防止拖動圖標即打開了桌面應用
  2647. U.MD.D.click(this, obj);
  2648. }, [_x010404StudentDeskIconInfo[i]])
  2649. }, _frag); //
  2650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2653. }
  2654. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2655. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2656. _content = $$("div", {
  2657. className: "U_MD_D_KO",
  2658. "onmousedown": U.UF.C.closure(function (obj) {
  2659. //防止拖動圖標即打開了桌面應用
  2660. U.MD.D.click(this, obj);
  2661. }, [_x010204StudentDeskIconInfo[i]]),
  2662. "onclick": U.UF.C.closure(function (obj) {
  2663. //防止拖動圖標即打開了桌面應用
  2664. U.MD.D.click(this, obj);
  2665. }, [_x010204StudentDeskIconInfo[i]])
  2666. }, _frag); //
  2667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2670. }
  2671. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2672. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2673. _content = $$("div", {
  2674. className: "U_MD_D_KO",
  2675. "onmousedown": U.UF.C.closure(function (obj) {
  2676. //防止拖動圖標即打開了桌面應用
  2677. U.MD.D.click(this, obj);
  2678. }, [_x320101StudentDeskIconInfo[i]]),
  2679. "onclick": U.UF.C.closure(function (obj) {
  2680. //防止拖動圖標即打開了桌面應用
  2681. U.MD.D.click(this, obj);
  2682. }, [_x320101StudentDeskIconInfo[i]])
  2683. }, _frag); //
  2684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2687. }
  2688. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2689. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2690. _content = $$("div", {
  2691. className: "U_MD_D_KO",
  2692. "onmousedown": U.UF.C.closure(function (obj) {
  2693. //防止拖動圖標即打開了桌面應用
  2694. U.MD.D.click(this, obj);
  2695. }, [_trailStudentDeskIconInfo[i]]),
  2696. "onclick": U.UF.C.closure(function (obj) {
  2697. //防止拖動圖標即打開了桌面應用
  2698. U.MD.D.click(this, obj);
  2699. }, [_trailStudentDeskIconInfo[i]])
  2700. }, _frag); //
  2701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2704. }
  2705. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2706. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2707. _content = $$("div", {
  2708. className: "U_MD_D_KO",
  2709. "onmousedown": U.UF.C.closure(function (obj) {
  2710. //防止拖動圖標即打開了桌面應用
  2711. U.MD.D.click(this, obj);
  2712. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2713. "onclick": U.UF.C.closure(function (obj) {
  2714. //防止拖動圖標即打開了桌面應用
  2715. U.MD.D.click(this, obj);
  2716. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2717. }, _frag); //
  2718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2721. }
  2722. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2723. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2724. _content = $$("div", {
  2725. className: "U_MD_D_KO",
  2726. "onmousedown": U.UF.C.closure(function (obj) {
  2727. //防止拖動圖標即打開了桌面應用
  2728. U.MD.D.click(this, obj);
  2729. }, [_szsyStudentDeskIconInfo[i]]),
  2730. "onclick": U.UF.C.closure(function (obj) {
  2731. //防止拖動圖標即打開了桌面應用
  2732. U.MD.D.click(this, obj);
  2733. }, [_szsyStudentDeskIconInfo[i]])
  2734. }, _frag); //
  2735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2738. }
  2739. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2740. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2741. _content = $$("div", {
  2742. className: "U_MD_D_KO",
  2743. "onmousedown": U.UF.C.closure(function (obj) {
  2744. //防止拖動圖標即打開了桌面應用
  2745. U.MD.D.click(this, obj);
  2746. }, [_x010608StudentDeskIconInfo[i]]),
  2747. "onclick": U.UF.C.closure(function (obj) {
  2748. //防止拖動圖標即打開了桌面應用
  2749. U.MD.D.click(this, obj);
  2750. }, [_x010608StudentDeskIconInfo[i]])
  2751. }, _frag); //
  2752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2755. }
  2756. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2757. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2758. _content = $$("div", {
  2759. className: "U_MD_D_KO",
  2760. "onmousedown": U.UF.C.closure(function (obj) {
  2761. //防止拖動圖標即打開了桌面應用
  2762. U.MD.D.click(this, obj);
  2763. }, [_x010611StudentDeskIconInfo[i]]),
  2764. "onclick": U.UF.C.closure(function (obj) {
  2765. //防止拖動圖標即打開了桌面應用
  2766. U.MD.D.click(this, obj);
  2767. }, [_x010611StudentDeskIconInfo[i]])
  2768. }, _frag); //
  2769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2772. }
  2773. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2774. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2775. _content = $$("div", {
  2776. className: "U_MD_D_KO",
  2777. "onmousedown": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_x010612StudentDeskIconInfo[i]]),
  2781. "onclick": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_x010612StudentDeskIconInfo[i]])
  2785. }, _frag); //
  2786. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2787. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2788. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2789. }
  2790. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2791. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2792. _content = $$("div", {
  2793. className: "U_MD_D_KO",
  2794. "onmousedown": U.UF.C.closure(function (obj) {
  2795. //防止拖動圖標即打開了桌面應用
  2796. U.MD.D.click(this, obj);
  2797. }, [_tianyuantudentDeskIconInfo[i]]),
  2798. "onclick": U.UF.C.closure(function (obj) {
  2799. //防止拖動圖標即打開了桌面應用
  2800. U.MD.D.click(this, obj);
  2801. }, [_tianyuantudentDeskIconInfo[i]])
  2802. }, _frag); //
  2803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2806. }
  2807. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2808. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2809. _content = $$("div", {
  2810. className: "U_MD_D_KO",
  2811. "onmousedown": U.UF.C.closure(function (obj) {
  2812. //防止拖動圖標即打開了桌面應用
  2813. U.MD.D.click(this, obj);
  2814. }, [_siesStudentDeskIconInfo[i]]),
  2815. "onclick": U.UF.C.closure(function (obj) {
  2816. //防止拖動圖標即打開了桌面應用
  2817. U.MD.D.click(this, obj);
  2818. }, [_siesStudentDeskIconInfo[i]])
  2819. }, _frag); //
  2820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2823. }
  2824. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2825. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2826. _content = $$("div", {
  2827. className: "U_MD_D_KO",
  2828. "onmousedown": U.UF.C.closure(function (obj) {
  2829. //防止拖動圖標即打開了桌面應用
  2830. U.MD.D.click(this, obj);
  2831. }, [_guzmsStudentDeskIconInfo[i]]),
  2832. "onclick": U.UF.C.closure(function (obj) {
  2833. //防止拖動圖標即打開了桌面應用
  2834. U.MD.D.click(this, obj);
  2835. }, [_guzmsStudentDeskIconInfo[i]])
  2836. }, _frag); //
  2837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2840. }
  2841. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2842. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2843. _content = $$("div", {
  2844. className: "U_MD_D_KO",
  2845. "onmousedown": U.UF.C.closure(function (obj) {
  2846. //防止拖動圖標即打開了桌面應用
  2847. U.MD.D.click(this, obj);
  2848. }, [_hkStudentDeskIconInfo[i]]),
  2849. "onclick": U.UF.C.closure(function (obj) {
  2850. //防止拖動圖標即打開了桌面應用
  2851. U.MD.D.click(this, obj);
  2852. }, [_hkStudentDeskIconInfo[i]])
  2853. }, _frag); //
  2854. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2855. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2856. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2857. }
  2858. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2859. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2860. _content = $$("div", {
  2861. className: "U_MD_D_KO",
  2862. "onmousedown": U.UF.C.closure(function (obj) {
  2863. //防止拖動圖標即打開了桌面應用
  2864. U.MD.D.click(this, obj);
  2865. }, [_hkaceStudentDeskIconInfo[i]]),
  2866. "onclick": U.UF.C.closure(function (obj) {
  2867. //防止拖動圖標即打開了桌面應用
  2868. U.MD.D.click(this, obj);
  2869. }, [_hkaceStudentDeskIconInfo[i]])
  2870. }, _frag); //
  2871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2874. }
  2875. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2876. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2877. _content = $$("div", {
  2878. className: "U_MD_D_KO",
  2879. "onmousedown": U.UF.C.closure(function (obj) {
  2880. //防止拖動圖標即打開了桌面應用
  2881. U.MD.D.click(this, obj);
  2882. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2883. "onclick": U.UF.C.closure(function (obj) {
  2884. //防止拖動圖標即打開了桌面應用
  2885. U.MD.D.click(this, obj);
  2886. }, [_BSDNSstudentDesktopIconInfo[i]])
  2887. }, _frag); //
  2888. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2889. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2890. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2891. }
  2892. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2893. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2894. _content = $$("div", {
  2895. className: "U_MD_D_KO",
  2896. "onmousedown": U.UF.C.closure(function (obj) {
  2897. //防止拖動圖標即打開了桌面應用
  2898. U.MD.D.click(this, obj);
  2899. }, [_cocobizStudentDeskIconInfo[i]]),
  2900. "onclick": U.UF.C.closure(function (obj) {
  2901. //防止拖動圖標即打開了桌面應用
  2902. U.MD.D.click(this, obj);
  2903. }, [_cocobizStudentDeskIconInfo[i]])
  2904. }, _frag); //
  2905. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2906. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2907. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2908. }
  2909. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2910. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2911. _content = $$("div", {
  2912. className: "U_MD_D_KO",
  2913. "onmousedown": U.UF.C.closure(function (obj) {
  2914. //防止拖動圖標即打開了桌面應用
  2915. U.MD.D.click(this, obj);
  2916. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2917. "onclick": U.UF.C.closure(function (obj) {
  2918. //防止拖動圖標即打開了桌面應用
  2919. U.MD.D.click(this, obj);
  2920. }, [_xxzjkyStudentDeskIconInfo[i]])
  2921. }, _frag); //
  2922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2925. }
  2926. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2927. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2928. _content = $$("div", {
  2929. className: "U_MD_D_KO",
  2930. "onmousedown": U.UF.C.closure(function (obj) {
  2931. //防止拖動圖標即打開了桌面應用
  2932. U.MD.D.click(this, obj);
  2933. }, [_studentDesktopIconInfo[i]]),
  2934. "onclick": U.UF.C.closure(function (obj) {
  2935. //防止拖動圖標即打開了桌面應用
  2936. U.MD.D.click(this, obj);
  2937. }, [_studentDesktopIconInfo[i]])
  2938. }, _frag); //
  2939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2942. }
  2943. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2944. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2945. _content = $$("div", {
  2946. className: "U_MD_D_KO",
  2947. "onmousedown": U.UF.C.closure(function (obj) {
  2948. //防止拖動圖標即打開了桌面應用
  2949. U.MD.D.click(this, obj);
  2950. }, [_tcStudentDeskIconInfo[i]]),
  2951. "onclick": U.UF.C.closure(function (obj) {
  2952. //防止拖動圖標即打開了桌面應用
  2953. U.MD.D.click(this, obj);
  2954. }, [_tcStudentDeskIconInfo[i]])
  2955. }, _frag); //
  2956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2959. }
  2960. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2961. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2962. _content = $$("div", {
  2963. className: "U_MD_D_KO",
  2964. "onmousedown": U.UF.C.closure(function (obj) {
  2965. //防止拖動圖標即打開了桌面應用
  2966. U.MD.D.click(this, obj);
  2967. }, [_szscStudentDeskIconInfo[i]]),
  2968. "onclick": U.UF.C.closure(function (obj) {
  2969. //防止拖動圖標即打開了桌面應用
  2970. U.MD.D.click(this, obj);
  2971. }, [_szscStudentDeskIconInfo[i]])
  2972. }, _frag); //
  2973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2976. }
  2977. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2978. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2979. _content = $$("div", {
  2980. className: "U_MD_D_KO",
  2981. "onmousedown": U.UF.C.closure(function (obj) {
  2982. //防止拖動圖標即打開了桌面應用
  2983. U.MD.D.click(this, obj);
  2984. }, [_studentDesktopIconInfo3[i]]),
  2985. "onclick": U.UF.C.closure(function (obj) {
  2986. //防止拖動圖標即打開了桌面應用
  2987. U.MD.D.click(this, obj);
  2988. }, [_studentDesktopIconInfo3[i]])
  2989. }, _frag); //
  2990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2993. }
  2994. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2995. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2996. _content = $$("div", {
  2997. className: "U_MD_D_KO",
  2998. "onmousedown": U.UF.C.closure(function (obj) {
  2999. //防止拖動圖標即打開了桌面應用
  3000. U.MD.D.click(this, obj);
  3001. }, [_studentDesktopIconInfo2[i]]),
  3002. "onclick": U.UF.C.closure(function (obj) {
  3003. //防止拖動圖標即打開了桌面應用
  3004. U.MD.D.click(this, obj);
  3005. }, [_studentDesktopIconInfo2[i]])
  3006. }, _frag); //
  3007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3010. }
  3011. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3012. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3013. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3014. continue
  3015. }
  3016. _content = $$("div", {
  3017. className: "U_MD_D_KO",
  3018. "onmousedown": U.UF.C.closure(function (obj) {
  3019. //防止拖動圖標即打開了桌面應用
  3020. U.MD.D.click(this, obj);
  3021. }, [_wanketeacherDesktopIconInfo[i]]),
  3022. "onclick": U.UF.C.closure(function (obj) {
  3023. //防止拖動圖標即打開了桌面應用
  3024. U.MD.D.click(this, obj);
  3025. }, [_wanketeacherDesktopIconInfo[i]])
  3026. }, _frag); //
  3027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3030. }
  3031. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3032. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3033. _content = $$("div", {
  3034. className: "U_MD_D_KO",
  3035. "onmousedown": U.UF.C.closure(function (obj) {
  3036. //防止拖動圖標即打開了桌面應用
  3037. U.MD.D.click(this, obj);
  3038. }, [_wankeAdminDesktopIconInfo[i]]),
  3039. "onclick": U.UF.C.closure(function (obj) {
  3040. //防止拖動圖標即打開了桌面應用
  3041. U.MD.D.click(this, obj);
  3042. }, [_wankeAdminDesktopIconInfo[i]])
  3043. }, _frag); //
  3044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3047. }
  3048. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3049. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3050. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3051. continue
  3052. }
  3053. _content = $$("div", {
  3054. className: "U_MD_D_KO",
  3055. "onmousedown": U.UF.C.closure(function (obj) {
  3056. //防止拖動圖標即打開了桌面應用
  3057. U.MD.D.click(this, obj);
  3058. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖動圖標即打開了桌面應用
  3061. U.MD.D.click(this, obj);
  3062. }, [_scnuaiTeacherDeskIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3069. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3070. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3071. continue
  3072. }
  3073. _content = $$("div", {
  3074. className: "U_MD_D_KO",
  3075. "onmousedown": U.UF.C.closure(function (obj) {
  3076. //防止拖動圖標即打開了桌面應用
  3077. U.MD.D.click(this, obj);
  3078. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3079. "onclick": U.UF.C.closure(function (obj) {
  3080. //防止拖動圖標即打開了桌面應用
  3081. U.MD.D.click(this, obj);
  3082. }, [_BSDNSteacherDesktopIconInfo[i]])
  3083. }, _frag); //
  3084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3087. }
  3088. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3089. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3090. _content = $$("div", {
  3091. className: "U_MD_D_KO",
  3092. "onmousedown": U.UF.C.closure(function (obj) {
  3093. //防止拖動圖標即打開了桌面應用
  3094. U.MD.D.click(this, obj);
  3095. }, [_scnuaiAdminDeskIconInfo[i]]),
  3096. "onclick": U.UF.C.closure(function (obj) {
  3097. //防止拖動圖標即打開了桌面應用
  3098. U.MD.D.click(this, obj);
  3099. }, [_scnuaiAdminDeskIconInfo[i]])
  3100. }, _frag); //
  3101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3104. }
  3105. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3106. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3107. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3108. continue
  3109. }
  3110. _content = $$("div", {
  3111. className: "U_MD_D_KO",
  3112. "onmousedown": U.UF.C.closure(function (obj) {
  3113. //防止拖動圖標即打開了桌面應用
  3114. U.MD.D.click(this, obj);
  3115. }, [_jccssylTeacherDeskIconInfo[i]]),
  3116. "onclick": U.UF.C.closure(function (obj) {
  3117. //防止拖動圖標即打開了桌面應用
  3118. U.MD.D.click(this, obj);
  3119. }, [_jccssylTeacherDeskIconInfo[i]])
  3120. }, _frag); //
  3121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3124. }
  3125. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3126. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3127. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3128. continue
  3129. }
  3130. _content = $$("div", {
  3131. className: "U_MD_D_KO",
  3132. "onmousedown": U.UF.C.closure(function (obj) {
  3133. //防止拖動圖標即打開了桌面應用
  3134. U.MD.D.click(this, obj);
  3135. }, [_caleTeacherDeskIconInfo[i]]),
  3136. "onclick": U.UF.C.closure(function (obj) {
  3137. //防止拖動圖標即打開了桌面應用
  3138. U.MD.D.click(this, obj);
  3139. }, [_caleTeacherDeskIconInfo[i]])
  3140. }, _frag); //
  3141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3144. }
  3145. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3146. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3147. _content = $$("div", {
  3148. className: "U_MD_D_KO",
  3149. "onmousedown": U.UF.C.closure(function (obj) {
  3150. //防止拖動圖標即打開了桌面應用
  3151. U.MD.D.click(this, obj);
  3152. }, [_tpcOrganizerDeskIconInfo[i]]),
  3153. "onclick": U.UF.C.closure(function (obj) {
  3154. //防止拖動圖標即打開了桌面應用
  3155. U.MD.D.click(this, obj);
  3156. }, [_tpcOrganizerDeskIconInfo[i]])
  3157. }, _frag); //
  3158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3161. }
  3162. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3163. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3164. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3165. continue
  3166. }
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖動圖標即打開了桌面應用
  3171. U.MD.D.click(this, obj);
  3172. }, [_tpcTeacherDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖動圖標即打開了桌面應用
  3175. U.MD.D.click(this, obj);
  3176. }, [_tpcTeacherDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3183. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3184. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3185. continue
  3186. }
  3187. _content = $$("div", {
  3188. className: "U_MD_D_KO",
  3189. "onmousedown": U.UF.C.closure(function (obj) {
  3190. //防止拖動圖標即打開了桌面應用
  3191. U.MD.D.click(this, obj);
  3192. }, [_teacherDesktopIconInfo2[i]]),
  3193. "onclick": U.UF.C.closure(function (obj) {
  3194. //防止拖動圖標即打開了桌面應用
  3195. U.MD.D.click(this, obj);
  3196. }, [_teacherDesktopIconInfo2[i]])
  3197. }, _frag); //
  3198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3201. }
  3202. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3203. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3204. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3205. continue
  3206. }
  3207. _content = $$("div", {
  3208. className: "U_MD_D_KO",
  3209. "onmousedown": U.UF.C.closure(function (obj) {
  3210. //防止拖動圖標即打開了桌面應用
  3211. U.MD.D.click(this, obj);
  3212. }, [_thuioeTeacherDeskIconInfo[i]]),
  3213. "onclick": U.UF.C.closure(function (obj) {
  3214. //防止拖動圖標即打開了桌面應用
  3215. U.MD.D.click(this, obj);
  3216. }, [_thuioeTeacherDeskIconInfo[i]])
  3217. }, _frag); //
  3218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3221. }
  3222. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3223. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3224. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3225. continue
  3226. }
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖動圖標即打開了桌面應用
  3231. U.MD.D.click(this, obj);
  3232. }, [_lotechTeacherDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖動圖標即打開了桌面應用
  3235. U.MD.D.click(this, obj);
  3236. }, [_lotechTeacherDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3241. }//
  3242. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3243. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3244. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3245. continue
  3246. }
  3247. _content = $$("div", {
  3248. className: "U_MD_D_KO",
  3249. "onmousedown": U.UF.C.closure(function (obj) {
  3250. //防止拖動圖標即打開了桌面應用
  3251. U.MD.D.click(this, obj);
  3252. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3253. "onclick": U.UF.C.closure(function (obj) {
  3254. //防止拖動圖標即打開了桌面應用
  3255. U.MD.D.click(this, obj);
  3256. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3257. }, _frag); //
  3258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3261. }
  3262. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3263. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3264. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3265. continue
  3266. }
  3267. _content = $$("div", {
  3268. className: "U_MD_D_KO",
  3269. "onmousedown": U.UF.C.closure(function (obj) {
  3270. //防止拖動圖標即打開了桌面應用
  3271. U.MD.D.click(this, obj);
  3272. }, [_siesTeacherDeskIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖動圖標即打開了桌面應用
  3275. U.MD.D.click(this, obj);
  3276. }, [_siesTeacherDeskIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3283. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3284. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3285. continue
  3286. }
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖動圖標即打開了桌面應用
  3291. U.MD.D.click(this, obj);
  3292. }, [_guzmsTeacherDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖動圖標即打開了桌面應用
  3295. U.MD.D.click(this, obj);
  3296. }, [_guzmsTeacherDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3303. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3304. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖動圖標即打開了桌面應用
  3311. U.MD.D.click(this, obj);
  3312. }, [_longhuaTeacherDeskIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖動圖標即打開了桌面應用
  3315. U.MD.D.click(this, obj);
  3316. }, [_longhuaTeacherDeskIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3321. }
  3322. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3323. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3324. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3325. continue
  3326. }
  3327. _content = $$("div", {
  3328. className: "U_MD_D_KO",
  3329. "onmousedown": U.UF.C.closure(function (obj) {
  3330. //防止拖動圖標即打開了桌面應用
  3331. U.MD.D.click(this, obj);
  3332. }, [_ytyTeacherDeskIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖動圖標即打開了桌面應用
  3335. U.MD.D.click(this, obj);
  3336. }, [_ytyTeacherDeskIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3343. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3344. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3345. continue
  3346. }
  3347. _content = $$("div", {
  3348. className: "U_MD_D_KO",
  3349. "onmousedown": U.UF.C.closure(function (obj) {
  3350. //防止拖動圖標即打開了桌面應用
  3351. U.MD.D.click(this, obj);
  3352. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3353. "onclick": U.UF.C.closure(function (obj) {
  3354. //防止拖動圖標即打開了桌面應用
  3355. U.MD.D.click(this, obj);
  3356. }, [_yunhaiTeacherDeskIconInfo[i]])
  3357. }, _frag); //
  3358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3361. } //_hkStudentDeskIconInfo
  3362. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3363. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3364. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3365. continue
  3366. }
  3367. _content = $$("div", {
  3368. className: "U_MD_D_KO",
  3369. "onmousedown": U.UF.C.closure(function (obj) {
  3370. //防止拖動圖標即打開了桌面應用
  3371. U.MD.D.click(this, obj);
  3372. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3373. "onclick": U.UF.C.closure(function (obj) {
  3374. //防止拖動圖標即打開了桌面應用
  3375. U.MD.D.click(this, obj);
  3376. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3377. }, _frag); //
  3378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3381. }
  3382. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3383. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3384. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3385. continue
  3386. }
  3387. _content = $$("div", {
  3388. className: "U_MD_D_KO",
  3389. "onmousedown": U.UF.C.closure(function (obj) {
  3390. //防止拖動圖標即打開了桌面應用
  3391. U.MD.D.click(this, obj);
  3392. }, [_ricohTeacherDeskIconInfo[i]]),
  3393. "onclick": U.UF.C.closure(function (obj) {
  3394. //防止拖動圖標即打開了桌面應用
  3395. U.MD.D.click(this, obj);
  3396. }, [_ricohTeacherDeskIconInfo[i]])
  3397. }, _frag); //
  3398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3401. }
  3402. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3403. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3404. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3405. continue
  3406. }
  3407. _content = $$("div", {
  3408. className: "U_MD_D_KO",
  3409. "onmousedown": U.UF.C.closure(function (obj) {
  3410. //防止拖動圖標即打開了桌面應用
  3411. U.MD.D.click(this, obj);
  3412. }, [_hkTeacherDeskIconInfo[i]]),
  3413. "onclick": U.UF.C.closure(function (obj) {
  3414. //防止拖動圖標即打開了桌面應用
  3415. U.MD.D.click(this, obj);
  3416. }, [_hkTeacherDeskIconInfo[i]])
  3417. }, _frag); //
  3418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3421. }
  3422. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3423. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3424. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3425. continue
  3426. }
  3427. _content = $$("div", {
  3428. className: "U_MD_D_KO",
  3429. "onmousedown": U.UF.C.closure(function (obj) {
  3430. //防止拖動圖標即打開了桌面應用
  3431. U.MD.D.click(this, obj);
  3432. }, [_hkaceTeacherDeskIconInfo[i]]),
  3433. "onclick": U.UF.C.closure(function (obj) {
  3434. //防止拖動圖標即打開了桌面應用
  3435. U.MD.D.click(this, obj);
  3436. }, [_hkaceTeacherDeskIconInfo[i]])
  3437. }, _frag); //
  3438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3441. }
  3442. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3443. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3444. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3445. continue
  3446. }
  3447. _content = $$("div", {
  3448. className: "U_MD_D_KO",
  3449. "onmousedown": U.UF.C.closure(function (obj) {
  3450. //防止拖動圖標即打開了桌面應用
  3451. U.MD.D.click(this, obj);
  3452. }, [_cocobizTeacherDeskIconInfo[i]]),
  3453. "onclick": U.UF.C.closure(function (obj) {
  3454. //防止拖動圖標即打開了桌面應用
  3455. U.MD.D.click(this, obj);
  3456. }, [_cocobizTeacherDeskIconInfo[i]])
  3457. }, _frag); //
  3458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3461. }
  3462. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3463. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3464. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3465. continue
  3466. }
  3467. _content = $$("div", {
  3468. className: "U_MD_D_KO",
  3469. "onmousedown": U.UF.C.closure(function (obj) {
  3470. //防止拖動圖標即打開了桌面應用
  3471. U.MD.D.click(this, obj);
  3472. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3473. "onclick": U.UF.C.closure(function (obj) {
  3474. //防止拖動圖標即打開了桌面應用
  3475. U.MD.D.click(this, obj);
  3476. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3477. }, _frag); //
  3478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3481. }
  3482. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3483. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3484. _content = $$("div", {
  3485. className: "U_MD_D_KO",
  3486. "onmousedown": U.UF.C.closure(function (obj) {
  3487. //防止拖動圖標即打開了桌面應用
  3488. U.MD.D.click(this, obj);
  3489. }, [_gdjgAdminDeskIconInfo[i]]),
  3490. "onclick": U.UF.C.closure(function (obj) {
  3491. //防止拖動圖標即打開了桌面應用
  3492. U.MD.D.click(this, obj);
  3493. }, [_gdjgAdminDeskIconInfo[i]])
  3494. }, _frag); //
  3495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3498. }
  3499. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3500. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3501. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3502. continue
  3503. }
  3504. _content = $$("div", {
  3505. className: "U_MD_D_KO",
  3506. "onmousedown": U.UF.C.closure(function (obj) {
  3507. //防止拖動圖標即打開了桌面應用
  3508. U.MD.D.click(this, obj);
  3509. }, [_gdjgTeacherDeskIconInfo[i]]),
  3510. "onclick": U.UF.C.closure(function (obj) {
  3511. //防止拖動圖標即打開了桌面應用
  3512. U.MD.D.click(this, obj);
  3513. }, [_gdjgTeacherDeskIconInfo[i]])
  3514. }, _frag); //
  3515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3518. }
  3519. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3520. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3521. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3522. continue
  3523. }
  3524. _content = $$("div", {
  3525. className: "U_MD_D_KO",
  3526. "onmousedown": U.UF.C.closure(function (obj) {
  3527. //防止拖動圖標即打開了桌面應用
  3528. U.MD.D.click(this, obj);
  3529. }, [_szherTeacherDeskIconInfo[i]]),
  3530. "onclick": U.UF.C.closure(function (obj) {
  3531. //防止拖動圖標即打開了桌面應用
  3532. U.MD.D.click(this, obj);
  3533. }, [_szherTeacherDeskIconInfo[i]])
  3534. }, _frag); //
  3535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3538. }
  3539. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3540. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3541. _content = $$("div", {
  3542. className: "U_MD_D_KO",
  3543. "onmousedown": U.UF.C.closure(function (obj) {
  3544. //防止拖動圖標即打開了桌面應用
  3545. U.MD.D.click(this, obj);
  3546. }, [_heyuannAdminDeskIconInfo[i]]),
  3547. "onclick": U.UF.C.closure(function (obj) {
  3548. //防止拖動圖標即打開了桌面應用
  3549. U.MD.D.click(this, obj);
  3550. }, [_heyuannAdminDeskIconInfo[i]])
  3551. }, _frag); //
  3552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3555. }
  3556. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3557. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3558. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3559. continue
  3560. }
  3561. _content = $$("div", {
  3562. className: "U_MD_D_KO",
  3563. "onmousedown": U.UF.C.closure(function (obj) {
  3564. //防止拖動圖標即打開了桌面應用
  3565. U.MD.D.click(this, obj);
  3566. }, [_heyuanTeacherDeskIconInfo[i]]),
  3567. "onclick": U.UF.C.closure(function (obj) {
  3568. //防止拖動圖標即打開了桌面應用
  3569. U.MD.D.click(this, obj);
  3570. }, [_heyuanTeacherDeskIconInfo[i]])
  3571. }, _frag); //
  3572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3575. } //
  3576. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3577. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3578. _content = $$("div", {
  3579. className: "U_MD_D_KO",
  3580. "onmousedown": U.UF.C.closure(function (obj) {
  3581. //防止拖動圖標即打開了桌面應用
  3582. U.MD.D.click(this, obj);
  3583. }, [_dseiAdminDeskIconInfo[i]]),
  3584. "onclick": U.UF.C.closure(function (obj) {
  3585. //防止拖動圖標即打開了桌面應用
  3586. U.MD.D.click(this, obj);
  3587. }, [_dseiAdminDeskIconInfo[i]])
  3588. }, _frag); //
  3589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3592. }
  3593. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3594. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3595. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3596. continue
  3597. }
  3598. _content = $$("div", {
  3599. className: "U_MD_D_KO",
  3600. "onmousedown": U.UF.C.closure(function (obj) {
  3601. //防止拖動圖標即打開了桌面應用
  3602. U.MD.D.click(this, obj);
  3603. }, [_dseiTeacherDeskIconInfo[i]]),
  3604. "onclick": U.UF.C.closure(function (obj) {
  3605. //防止拖動圖標即打開了桌面應用
  3606. U.MD.D.click(this, obj);
  3607. }, [_dseiTeacherDeskIconInfo[i]])
  3608. }, _frag); //
  3609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3612. } //
  3613. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3614. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3615. _content = $$("div", {
  3616. className: "U_MD_D_KO",
  3617. "onmousedown": U.UF.C.closure(function (obj) {
  3618. //防止拖動圖標即打開了桌面應用
  3619. U.MD.D.click(this, obj);
  3620. }, [_chjyjAdminDeskIconInfo[i]]),
  3621. "onclick": U.UF.C.closure(function (obj) {
  3622. //防止拖動圖標即打開了桌面應用
  3623. U.MD.D.click(this, obj);
  3624. }, [_chjyjAdminDeskIconInfo[i]])
  3625. }, _frag); //
  3626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3629. }//
  3630. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3631. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3632. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3633. continue
  3634. }
  3635. _content = $$("div", {
  3636. className: "U_MD_D_KO",
  3637. "onmousedown": U.UF.C.closure(function (obj) {
  3638. //防止拖動圖標即打開了桌面應用
  3639. U.MD.D.click(this, obj);
  3640. }, [_chjyjTeacherDeskIconInfo[i]]),
  3641. "onclick": U.UF.C.closure(function (obj) {
  3642. //防止拖動圖標即打開了桌面應用
  3643. U.MD.D.click(this, obj);
  3644. }, [_chjyjTeacherDeskIconInfo[i]])
  3645. }, _frag); //
  3646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3649. }
  3650. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3651. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3652. _content = $$("div", {
  3653. className: "U_MD_D_KO",
  3654. "onmousedown": U.UF.C.closure(function (obj) {
  3655. //防止拖動圖標即打開了桌面應用
  3656. U.MD.D.click(this, obj);
  3657. }, [_szjkyAdminDeskIconInfo[i]]),
  3658. "onclick": U.UF.C.closure(function (obj) {
  3659. //防止拖動圖標即打開了桌面應用
  3660. U.MD.D.click(this, obj);
  3661. }, [_szjkyAdminDeskIconInfo[i]])
  3662. }, _frag); //
  3663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3666. }//
  3667. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3668. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3669. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3670. continue
  3671. }
  3672. _content = $$("div", {
  3673. className: "U_MD_D_KO",
  3674. "onmousedown": U.UF.C.closure(function (obj) {
  3675. //防止拖動圖標即打開了桌面應用
  3676. U.MD.D.click(this, obj);
  3677. }, [_szjkyTeacherDeskIconInfo[i]]),
  3678. "onclick": U.UF.C.closure(function (obj) {
  3679. //防止拖動圖標即打開了桌面應用
  3680. U.MD.D.click(this, obj);
  3681. }, [_szjkyTeacherDeskIconInfo[i]])
  3682. }, _frag); //
  3683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3686. }
  3687. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3688. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3689. _content = $$("div", {
  3690. className: "U_MD_D_KO",
  3691. "onmousedown": U.UF.C.closure(function (obj) {
  3692. //防止拖動圖標即打開了桌面應用
  3693. U.MD.D.click(this, obj);
  3694. }, [_x020201AdminDeskIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖動圖標即打開了桌面應用
  3697. U.MD.D.click(this, obj);
  3698. }, [_x020201AdminDeskIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3703. }//
  3704. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3705. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3706. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3707. continue
  3708. }
  3709. _content = $$("div", {
  3710. className: "U_MD_D_KO",
  3711. "onmousedown": U.UF.C.closure(function (obj) {
  3712. //防止拖動圖標即打開了桌面應用
  3713. U.MD.D.click(this, obj);
  3714. }, [_x020201TeacherDeskIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖動圖標即打開了桌面應用
  3717. U.MD.D.click(this, obj);
  3718. }, [_x020201TeacherDeskIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3725. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3726. _content = $$("div", {
  3727. className: "U_MD_D_KO",
  3728. "onmousedown": U.UF.C.closure(function (obj) {
  3729. //防止拖動圖標即打開了桌面應用
  3730. U.MD.D.click(this, obj);
  3731. }, [_SCNUETAdminDeskIconInfo[i]]),
  3732. "onclick": U.UF.C.closure(function (obj) {
  3733. //防止拖動圖標即打開了桌面應用
  3734. U.MD.D.click(this, obj);
  3735. }, [_SCNUETAdminDeskIconInfo[i]])
  3736. }, _frag); //
  3737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3740. }//
  3741. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3742. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3743. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3744. continue
  3745. }
  3746. _content = $$("div", {
  3747. className: "U_MD_D_KO",
  3748. "onmousedown": U.UF.C.closure(function (obj) {
  3749. //防止拖動圖標即打開了桌面應用
  3750. U.MD.D.click(this, obj);
  3751. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3752. "onclick": U.UF.C.closure(function (obj) {
  3753. //防止拖動圖標即打開了桌面應用
  3754. U.MD.D.click(this, obj);
  3755. }, [_SCNUETTeacherDeskIconInfo[i]])
  3756. }, _frag); //
  3757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3760. }
  3761. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3762. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3763. _content = $$("div", {
  3764. className: "U_MD_D_KO",
  3765. "onmousedown": U.UF.C.closure(function (obj) {
  3766. //防止拖動圖標即打開了桌面應用
  3767. U.MD.D.click(this, obj);
  3768. }, [_futianAdminDeskIconInfo[i]]),
  3769. "onclick": U.UF.C.closure(function (obj) {
  3770. //防止拖動圖標即打開了桌面應用
  3771. U.MD.D.click(this, obj);
  3772. }, [_futianAdminDeskIconInfo[i]])
  3773. }, _frag); //
  3774. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3775. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3776. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3777. }
  3778. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3779. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3780. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3781. continue
  3782. }
  3783. _content = $$("div", {
  3784. className: "U_MD_D_KO",
  3785. "onmousedown": U.UF.C.closure(function (obj) {
  3786. //防止拖動圖標即打開了桌面應用
  3787. U.MD.D.click(this, obj);
  3788. }, [_futianTeacherDeskIconInfo[i]]),
  3789. "onclick": U.UF.C.closure(function (obj) {
  3790. //防止拖動圖標即打開了桌面應用
  3791. U.MD.D.click(this, obj);
  3792. }, [_futianTeacherDeskIconInfo[i]])
  3793. }, _frag); //
  3794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3797. }
  3798. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3799. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3800. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3801. continue
  3802. }
  3803. _content = $$("div", {
  3804. className: "U_MD_D_KO",
  3805. "onmousedown": U.UF.C.closure(function (obj) {
  3806. //防止拖動圖標即打開了桌面應用
  3807. U.MD.D.click(this, obj);
  3808. }, [_MingdeTeacherDeskIcon[i]]),
  3809. "onclick": U.UF.C.closure(function (obj) {
  3810. //防止拖動圖標即打開了桌面應用
  3811. U.MD.D.click(this, obj);
  3812. }, [_MingdeTeacherDeskIcon[i]])
  3813. }, _frag); //
  3814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3817. }
  3818. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3819. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3820. _content = $$("div", {
  3821. className: "U_MD_D_KO",
  3822. "onmousedown": U.UF.C.closure(function (obj) {
  3823. //防止拖動圖標即打開了桌面應用
  3824. U.MD.D.click(this, obj);
  3825. }, [_lhsAdminDesktopIconInfo[i]]),
  3826. "onclick": U.UF.C.closure(function (obj) {
  3827. //防止拖動圖標即打開了桌面應用
  3828. U.MD.D.click(this, obj);
  3829. }, [_lhsAdminDesktopIconInfo[i]])
  3830. }, _frag); //
  3831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3834. }
  3835. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3836. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3837. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3838. continue
  3839. }
  3840. _content = $$("div", {
  3841. className: "U_MD_D_KO",
  3842. "onmousedown": U.UF.C.closure(function (obj) {
  3843. //防止拖動圖標即打開了桌面應用
  3844. U.MD.D.click(this, obj);
  3845. }, [_lhsteacherDesktopIconInfo[i]]),
  3846. "onclick": U.UF.C.closure(function (obj) {
  3847. //防止拖動圖標即打開了桌面應用
  3848. U.MD.D.click(this, obj);
  3849. }, [_lhsteacherDesktopIconInfo[i]])
  3850. }, _frag); //
  3851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3854. }
  3855. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3856. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3857. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3858. continue
  3859. }
  3860. _content = $$("div", {
  3861. className: "U_MD_D_KO",
  3862. "onmousedown": U.UF.C.closure(function (obj) {
  3863. //防止拖動圖標即打開了桌面應用
  3864. U.MD.D.click(this, obj);
  3865. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3866. "onclick": U.UF.C.closure(function (obj) {
  3867. //防止拖動圖標即打開了桌面應用
  3868. U.MD.D.click(this, obj);
  3869. }, [_zhoujiateacherDesktopIconInfo[i]])
  3870. }, _frag); //
  3871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3874. }
  3875. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3876. for (i = 0; i < _hanDeskIcon.length; i++) {
  3877. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3878. continue
  3879. }
  3880. _content = $$("div", {
  3881. className: "U_MD_D_KO",
  3882. "onmousedown": U.UF.C.closure(function (obj) {
  3883. //防止拖動圖標即打開了桌面應用
  3884. U.MD.D.click(this, obj);
  3885. }, [_hanDeskIcon[i]]),
  3886. "onclick": U.UF.C.closure(function (obj) {
  3887. //防止拖動圖標即打開了桌面應用
  3888. U.MD.D.click(this, obj);
  3889. }, [_hanDeskIcon[i]])
  3890. }, _frag); //
  3891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3894. }
  3895. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3896. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3897. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3898. continue
  3899. }
  3900. _content = $$("div", {
  3901. className: "U_MD_D_KO",
  3902. "onmousedown": U.UF.C.closure(function (obj) {
  3903. //防止拖動圖標即打開了桌面應用
  3904. U.MD.D.click(this, obj);
  3905. }, [_orgStemDeskIcon[i]]),
  3906. "onclick": U.UF.C.closure(function (obj) {
  3907. //防止拖動圖標即打開了桌面應用
  3908. U.MD.D.click(this, obj);
  3909. }, [_orgStemDeskIcon[i]])
  3910. }, _frag); //
  3911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3914. }
  3915. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3916. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3917. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3918. continue
  3919. }
  3920. _content = $$("div", {
  3921. className: "U_MD_D_KO",
  3922. "onmousedown": U.UF.C.closure(function (obj) {
  3923. //防止拖動圖標即打開了桌面應用
  3924. U.MD.D.click(this, obj);
  3925. }, [_szulsDeskIcon[i]]),
  3926. "onclick": U.UF.C.closure(function (obj) {
  3927. //防止拖動圖標即打開了桌面應用
  3928. U.MD.D.click(this, obj);
  3929. }, [_szulsDeskIcon[i]])
  3930. }, _frag); //
  3931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3934. }
  3935. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3936. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3937. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3938. continue
  3939. }
  3940. _content = $$("div", {
  3941. className: "U_MD_D_KO",
  3942. "onmousedown": U.UF.C.closure(function (obj) {
  3943. //防止拖動圖標即打開了桌面應用
  3944. U.MD.D.click(this, obj);
  3945. }, [_orgDesktopIconInfo[i]]),
  3946. "onclick": U.UF.C.closure(function (obj) {
  3947. //防止拖動圖標即打開了桌面應用
  3948. U.MD.D.click(this, obj);
  3949. }, [_orgDesktopIconInfo[i]])
  3950. }, _frag); //
  3951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3954. }
  3955. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3956. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3957. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3958. continue
  3959. }
  3960. _content = $$("div", {
  3961. className: "U_MD_D_KO",
  3962. "onmousedown": U.UF.C.closure(function (obj) {
  3963. //防止拖動圖標即打開了桌面應用
  3964. U.MD.D.click(this, obj);
  3965. }, [_schoolDesktopIconInfo[i]]),
  3966. "onclick": U.UF.C.closure(function (obj) {
  3967. //防止拖動圖標即打開了桌面應用
  3968. U.MD.D.click(this, obj);
  3969. }, [_schoolDesktopIconInfo[i]])
  3970. }, _frag); //
  3971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3974. }
  3975. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3976. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3977. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3978. continue
  3979. }
  3980. _content = $$("div", {
  3981. className: "U_MD_D_KO",
  3982. "onmousedown": U.UF.C.closure(function (obj) {
  3983. //防止拖動圖標即打開了桌面應用
  3984. U.MD.D.click(this, obj);
  3985. }, [_GMteacherDesktopIconInfo[i]]),
  3986. "onclick": U.UF.C.closure(function (obj) {
  3987. //防止拖動圖標即打開了桌面應用
  3988. U.MD.D.click(this, obj);
  3989. }, [_GMteacherDesktopIconInfo[i]])
  3990. }, _frag); //
  3991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3994. }
  3995. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3996. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3997. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3998. continue
  3999. }
  4000. _content = $$("div", {
  4001. className: "U_MD_D_KO",
  4002. "onmousedown": U.UF.C.closure(function (obj) {
  4003. //防止拖動圖標即打開了桌面應用
  4004. U.MD.D.click(this, obj);
  4005. }, [_SONGteacherDesktopIconInfo[i]]),
  4006. "onclick": U.UF.C.closure(function (obj) {
  4007. //防止拖動圖標即打開了桌面應用
  4008. U.MD.D.click(this, obj);
  4009. }, [_SONGteacherDesktopIconInfo[i]])
  4010. }, _frag); //
  4011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4014. }
  4015. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4016. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4017. _content = $$("div", {
  4018. className: "U_MD_D_KO",
  4019. "onmousedown": U.UF.C.closure(function (obj) {
  4020. //防止拖動圖標即打開了桌面應用
  4021. U.MD.D.click(this, obj);
  4022. }, [_GMstudentDesktopIconInfo[i]]),
  4023. "onclick": U.UF.C.closure(function (obj) {
  4024. //防止拖動圖標即打開了桌面應用
  4025. U.MD.D.click(this, obj);
  4026. }, [_GMstudentDesktopIconInfo[i]])
  4027. }, _frag); //
  4028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4031. }
  4032. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4033. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4034. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4035. continue
  4036. }
  4037. _content = $$("div", {
  4038. className: "U_MD_D_KO",
  4039. "onmousedown": U.UF.C.closure(function (obj) {
  4040. //防止拖動圖標即打開了桌面應用
  4041. U.MD.D.click(this, obj);
  4042. }, [_tcTeacherDeskIconInfo[i]]),
  4043. "onclick": U.UF.C.closure(function (obj) {
  4044. //防止拖動圖標即打開了桌面應用
  4045. U.MD.D.click(this, obj);
  4046. }, [_tcTeacherDeskIconInfo[i]])
  4047. }, _frag); //
  4048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4051. }
  4052. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4053. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4054. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4055. continue
  4056. }
  4057. _content = $$("div", {
  4058. className: "U_MD_D_KO",
  4059. "onmousedown": U.UF.C.closure(function (obj) {
  4060. //防止拖動圖標即打開了桌面應用
  4061. U.MD.D.click(this, obj);
  4062. }, [_tcOrganizerDeskIconInfo[i]]),
  4063. "onclick": U.UF.C.closure(function (obj) {
  4064. //防止拖動圖標即打開了桌面應用
  4065. U.MD.D.click(this, obj);
  4066. }, [_tcOrganizerDeskIconInfo[i]])
  4067. }, _frag); //
  4068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4071. }
  4072. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4073. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4074. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4075. continue
  4076. }
  4077. _content = $$("div", {
  4078. className: "U_MD_D_KO",
  4079. "onmousedown": U.UF.C.closure(function (obj) {
  4080. //防止拖動圖標即打開了桌面應用
  4081. U.MD.D.click(this, obj);
  4082. }, [_szscTeacherDeskIconInfo[i]]),
  4083. "onclick": U.UF.C.closure(function (obj) {
  4084. //防止拖動圖標即打開了桌面應用
  4085. U.MD.D.click(this, obj);
  4086. }, [_szscTeacherDeskIconInfo[i]])
  4087. }, _frag); //
  4088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4091. }
  4092. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4093. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4094. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4095. continue
  4096. }
  4097. _content = $$("div", {
  4098. className: "U_MD_D_KO",
  4099. "onmousedown": U.UF.C.closure(function (obj) {
  4100. //防止拖動圖標即打開了桌面應用
  4101. U.MD.D.click(this, obj);
  4102. }, [_szscOrganizerDeskIconInfo[i]]),
  4103. "onclick": U.UF.C.closure(function (obj) {
  4104. //防止拖動圖標即打開了桌面應用
  4105. U.MD.D.click(this, obj);
  4106. }, [_szscOrganizerDeskIconInfo[i]])
  4107. }, _frag); //
  4108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4111. }
  4112. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4113. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4114. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4115. continue
  4116. }
  4117. _content = $$("div", {
  4118. className: "U_MD_D_KO",
  4119. "onmousedown": U.UF.C.closure(function (obj) {
  4120. //防止拖動圖標即打開了桌面應用
  4121. U.MD.D.click(this, obj);
  4122. }, [_nsfxTeacherDeskIconInfo[i]]),
  4123. "onclick": U.UF.C.closure(function (obj) {
  4124. //防止拖動圖標即打開了桌面應用
  4125. U.MD.D.click(this, obj);
  4126. }, [_nsfxTeacherDeskIconInfo[i]])
  4127. }, _frag); //
  4128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4131. }
  4132. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4133. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4134. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4135. continue
  4136. }
  4137. _content = $$("div", {
  4138. className: "U_MD_D_KO",
  4139. "onmousedown": U.UF.C.closure(function (obj) {
  4140. //防止拖動圖標即打開了桌面應用
  4141. U.MD.D.click(this, obj);
  4142. }, [_stiaTeacherDeskIconInfo[i]]),
  4143. "onclick": U.UF.C.closure(function (obj) {
  4144. //防止拖動圖標即打開了桌面應用
  4145. U.MD.D.click(this, obj);
  4146. }, [_stiaTeacherDeskIconInfo[i]])
  4147. }, _frag); //
  4148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4151. }
  4152. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4153. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4154. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4155. continue
  4156. }
  4157. _content = $$("div", {
  4158. className: "U_MD_D_KO",
  4159. "onmousedown": U.UF.C.closure(function (obj) {
  4160. //防止拖動圖標即打開了桌面應用
  4161. U.MD.D.click(this, obj);
  4162. }, [_szdjgTeacherDeskIconInfo[i]]),
  4163. "onclick": U.UF.C.closure(function (obj) {
  4164. //防止拖動圖標即打開了桌面應用
  4165. U.MD.D.click(this, obj);
  4166. }, [_szdjgTeacherDeskIconInfo[i]])
  4167. }, _frag); //
  4168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4171. }
  4172. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4173. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4174. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4175. continue
  4176. }
  4177. _content = $$("div", {
  4178. className: "U_MD_D_KO",
  4179. "onmousedown": U.UF.C.closure(function (obj) {
  4180. //防止拖動圖標即打開了桌面應用
  4181. U.MD.D.click(this, obj);
  4182. }, [_x010607TeacherDeskIconInfo[i]]),
  4183. "onclick": U.UF.C.closure(function (obj) {
  4184. //防止拖動圖標即打開了桌面應用
  4185. U.MD.D.click(this, obj);
  4186. }, [_x010607TeacherDeskIconInfo[i]])
  4187. }, _frag); //
  4188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4191. }
  4192. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4193. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4194. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4195. continue
  4196. }
  4197. _content = $$("div", {
  4198. className: "U_MD_D_KO",
  4199. "onmousedown": U.UF.C.closure(function (obj) {
  4200. //防止拖動圖標即打開了桌面應用
  4201. U.MD.D.click(this, obj);
  4202. }, [_xhlyTeacherDeskIconInfo[i]]),
  4203. "onclick": U.UF.C.closure(function (obj) {
  4204. //防止拖動圖標即打開了桌面應用
  4205. U.MD.D.click(this, obj);
  4206. }, [_xhlyTeacherDeskIconInfo[i]])
  4207. }, _frag); //
  4208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4211. }
  4212. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4213. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4214. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4215. continue
  4216. }
  4217. _content = $$("div", {
  4218. className: "U_MD_D_KO",
  4219. "onmousedown": U.UF.C.closure(function (obj) {
  4220. //防止拖動圖標即打開了桌面應用
  4221. U.MD.D.click(this, obj);
  4222. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4223. "onclick": U.UF.C.closure(function (obj) {
  4224. //防止拖動圖標即打開了桌面應用
  4225. U.MD.D.click(this, obj);
  4226. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4227. }, _frag); //
  4228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4231. }
  4232. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4233. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4234. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4235. continue
  4236. }
  4237. _content = $$("div", {
  4238. className: "U_MD_D_KO",
  4239. "onmousedown": U.UF.C.closure(function (obj) {
  4240. //防止拖動圖標即打開了桌面應用
  4241. U.MD.D.click(this, obj);
  4242. }, [_x010503TeacherDeskIconInfo[i]]),
  4243. "onclick": U.UF.C.closure(function (obj) {
  4244. //防止拖動圖標即打開了桌面應用
  4245. U.MD.D.click(this, obj);
  4246. }, [_x010503TeacherDeskIconInfo[i]])
  4247. }, _frag); //
  4248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4251. }
  4252. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4253. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4254. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4255. continue
  4256. }
  4257. _content = $$("div", {
  4258. className: "U_MD_D_KO",
  4259. "onmousedown": U.UF.C.closure(function (obj) {
  4260. //防止拖動圖標即打開了桌面應用
  4261. U.MD.D.click(this, obj);
  4262. }, [_x010504TeacherDeskIconInfo[i]]),
  4263. "onclick": U.UF.C.closure(function (obj) {
  4264. //防止拖動圖標即打開了桌面應用
  4265. U.MD.D.click(this, obj);
  4266. }, [_x010504TeacherDeskIconInfo[i]])
  4267. }, _frag); //
  4268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4271. }
  4272. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4273. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4274. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4275. continue
  4276. }
  4277. _content = $$("div", {
  4278. className: "U_MD_D_KO",
  4279. "onmousedown": U.UF.C.closure(function (obj) {
  4280. //防止拖動圖標即打開了桌面應用
  4281. U.MD.D.click(this, obj);
  4282. }, [_x010404TeacherDeskIconInfo[i]]),
  4283. "onclick": U.UF.C.closure(function (obj) {
  4284. //防止拖動圖標即打開了桌面應用
  4285. U.MD.D.click(this, obj);
  4286. }, [_x010404TeacherDeskIconInfo[i]])
  4287. }, _frag); //
  4288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4291. }
  4292. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4293. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4294. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4295. continue
  4296. }
  4297. _content = $$("div", {
  4298. className: "U_MD_D_KO",
  4299. "onmousedown": U.UF.C.closure(function (obj) {
  4300. //防止拖動圖標即打開了桌面應用
  4301. U.MD.D.click(this, obj);
  4302. }, [_x010204TeacherDeskIconInfo[i]]),
  4303. "onclick": U.UF.C.closure(function (obj) {
  4304. //防止拖動圖標即打開了桌面應用
  4305. U.MD.D.click(this, obj);
  4306. }, [_x010204TeacherDeskIconInfo[i]])
  4307. }, _frag); //
  4308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4311. }
  4312. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4313. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4314. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4315. continue
  4316. }
  4317. _content = $$("div", {
  4318. className: "U_MD_D_KO",
  4319. "onmousedown": U.UF.C.closure(function (obj) {
  4320. //防止拖動圖標即打開了桌面應用
  4321. U.MD.D.click(this, obj);
  4322. }, [_x320101TeacherDeskIconInfo[i]]),
  4323. "onclick": U.UF.C.closure(function (obj) {
  4324. //防止拖動圖標即打開了桌面應用
  4325. U.MD.D.click(this, obj);
  4326. }, [_x320101TeacherDeskIconInfo[i]])
  4327. }, _frag); //
  4328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4331. }
  4332. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4333. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4334. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4335. continue
  4336. }
  4337. _content = $$("div", {
  4338. className: "U_MD_D_KO",
  4339. "onmousedown": U.UF.C.closure(function (obj) {
  4340. //防止拖動圖標即打開了桌面應用
  4341. U.MD.D.click(this, obj);
  4342. }, [_trailTeacherDeskIconInfo[i]]),
  4343. "onclick": U.UF.C.closure(function (obj) {
  4344. //防止拖動圖標即打開了桌面應用
  4345. U.MD.D.click(this, obj);
  4346. }, [_trailTeacherDeskIconInfo[i]])
  4347. }, _frag); //
  4348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4351. }
  4352. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4353. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4354. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4355. continue
  4356. }
  4357. _content = $$("div", {
  4358. className: "U_MD_D_KO",
  4359. "onmousedown": U.UF.C.closure(function (obj) {
  4360. //防止拖動圖標即打開了桌面應用
  4361. U.MD.D.click(this, obj);
  4362. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4363. "onclick": U.UF.C.closure(function (obj) {
  4364. //防止拖動圖標即打開了桌面應用
  4365. U.MD.D.click(this, obj);
  4366. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4367. }, _frag); //
  4368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4371. }
  4372. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4373. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4374. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4375. continue
  4376. }
  4377. _content = $$("div", {
  4378. className: "U_MD_D_KO",
  4379. "onmousedown": U.UF.C.closure(function (obj) {
  4380. //防止拖動圖標即打開了桌面應用
  4381. U.MD.D.click(this, obj);
  4382. }, [_szsyTeacherDeskIconInfo[i]]),
  4383. "onclick": U.UF.C.closure(function (obj) {
  4384. //防止拖動圖標即打開了桌面應用
  4385. U.MD.D.click(this, obj);
  4386. }, [_szsyTeacherDeskIconInfo[i]])
  4387. }, _frag); //
  4388. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4389. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4390. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4391. }
  4392. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4393. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4394. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4395. continue
  4396. }
  4397. _content = $$("div", {
  4398. className: "U_MD_D_KO",
  4399. "onmousedown": U.UF.C.closure(function (obj) {
  4400. //防止拖動圖標即打開了桌面應用
  4401. U.MD.D.click(this, obj);
  4402. }, [_x010608TeacherDeskIconInfo[i]]),
  4403. "onclick": U.UF.C.closure(function (obj) {
  4404. //防止拖動圖標即打開了桌面應用
  4405. U.MD.D.click(this, obj);
  4406. }, [_x010608TeacherDeskIconInfo[i]])
  4407. }, _frag); //
  4408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4411. }
  4412. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4413. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4414. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4415. continue
  4416. }
  4417. _content = $$("div", {
  4418. className: "U_MD_D_KO",
  4419. "onmousedown": U.UF.C.closure(function (obj) {
  4420. //防止拖動圖標即打開了桌面應用
  4421. U.MD.D.click(this, obj);
  4422. }, [_x010611TeacherDeskIconInfo[i]]),
  4423. "onclick": U.UF.C.closure(function (obj) {
  4424. //防止拖動圖標即打開了桌面應用
  4425. U.MD.D.click(this, obj);
  4426. }, [_x010611TeacherDeskIconInfo[i]])
  4427. }, _frag); //
  4428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4431. }
  4432. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4433. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4434. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4435. continue
  4436. }
  4437. _content = $$("div", {
  4438. className: "U_MD_D_KO",
  4439. "onmousedown": U.UF.C.closure(function (obj) {
  4440. //防止拖动图标即打开了桌面应用
  4441. U.MD.D.click(this, obj);
  4442. }, [_x010612TeacherDeskIconInfo[i]]),
  4443. "onclick": U.UF.C.closure(function (obj) {
  4444. //防止拖动图标即打开了桌面应用
  4445. U.MD.D.click(this, obj);
  4446. }, [_x010612TeacherDeskIconInfo[i]])
  4447. }, _frag); //
  4448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4451. }
  4452. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4453. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4454. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4455. continue
  4456. }
  4457. _content = $$("div", {
  4458. className: "U_MD_D_KO",
  4459. "onmousedown": U.UF.C.closure(function (obj) {
  4460. //防止拖動圖標即打開了桌面應用
  4461. U.MD.D.click(this, obj);
  4462. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4463. "onclick": U.UF.C.closure(function (obj) {
  4464. //防止拖動圖標即打開了桌面應用
  4465. U.MD.D.click(this, obj);
  4466. }, [_tianyuanTeacherDeskIconInfo[i]])
  4467. }, _frag); //
  4468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4471. }
  4472. } else {
  4473. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4474. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4475. continue
  4476. }
  4477. _content = $$("div", {
  4478. className: "U_MD_D_KO",
  4479. "onmousedown": U.UF.C.closure(function (obj) {
  4480. //防止拖動圖標即打開了桌面應用
  4481. U.MD.D.click(this, obj);
  4482. }, [_teacherDesktopIconInfo[i]]),
  4483. "onclick": U.UF.C.closure(function (obj) {
  4484. //防止拖動圖標即打開了桌面應用
  4485. U.MD.D.click(this, obj);
  4486. }, [_teacherDesktopIconInfo[i]])
  4487. }, _frag); //
  4488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4491. }
  4492. }
  4493. } else {
  4494. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4495. _content = $$("div", {
  4496. className: "U_MD_D_KO",
  4497. style: { 'width': '124px', 'height': '145px' },
  4498. "onmousedown": U.UF.C.closure(function (obj) {
  4499. //防止拖動圖標即打開了桌面應用
  4500. U.MD.D.click(this, obj);
  4501. }, [_easyDesktopIconInfo[i]]),
  4502. "onclick": U.UF.C.closure(function (obj) {
  4503. //防止拖動圖標即打開了桌面應用
  4504. U.MD.D.click(this, obj);
  4505. }, [_easyDesktopIconInfo[i]])
  4506. }, _frag); //
  4507. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4510. }
  4511. }
  4512. if (type == 1) {
  4513. //加載好後給圖標定位
  4514. U.MD.D.iconPostion($(_frag).Child());
  4515. } else {
  4516. //加載好後給圖標定位
  4517. U.MD.D.iconPostion2($(_frag).Child());
  4518. }
  4519. //把圖標加載到頁面
  4520. el.appendChild(_frag);
  4521. }
  4522. /**
  4523. * 顯示任務欄
  4524. *
  4525. * @param {element} 桌面元素
  4526. */
  4527. U.MD.D.I.displayTaskbar = function (el) {
  4528. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4529. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4530. //任務欄位置變化
  4531. U.selectEl(el).css({ "bottom": "0px" });
  4532. //桌面位置變話
  4533. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4534. }
  4535. }
  4536. //#region 桌面圖標拖動邏輯
  4537. /**
  4538. * 桌面排列圖標
  4539. *
  4540. * @param {element} 桌面元素
  4541. * @param {object} 上下相距的距離
  4542. * @param {object} 左右相距的距離
  4543. * @return {object} 命名空間
  4544. */
  4545. U.MD.D.iconPostion = function (childs, top, left) {
  4546. var i; //用於循環處理
  4547. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4548. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4549. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4550. for (i = 0; i < childs.length; i++) {
  4551. //如果豎排top超過了範圍處理
  4552. if (top + 95 > US.height - 10) {
  4553. //left超過了頁面範圍處理,則向上重疊打印處理
  4554. if ((left + 180) > US.width) {
  4555. top -= 110;
  4556. left -= 90;
  4557. }
  4558. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4559. else {
  4560. left += 90;
  4561. top = 15;
  4562. };
  4563. }
  4564. //給圖標的位置賦值
  4565. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4566. if (i < childs.length - 1) {
  4567. //頁面圖標每次向下加95
  4568. top += 95;
  4569. }
  4570. }
  4571. //返回最後調用的圖標的位置
  4572. return [top, left];
  4573. }
  4574. /**
  4575. * 桌面排列圖標
  4576. *
  4577. * @param {element} 桌面元素
  4578. * @param {object} 上下相距的距離
  4579. * @param {object} 左右相距的距離
  4580. * @return {object} 命名空間
  4581. */
  4582. U.MD.D.iconPostion2 = function (childs, top, left) {
  4583. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4584. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4585. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4586. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4587. for (i = 0; i < childs.length; i++) {
  4588. //如果豎排top超過了範圍處理
  4589. if (left + 150 > US.width - 10) {
  4590. //left超過了頁面範圍處理,則向上重疊打印處理
  4591. if ((top + 180) > US.Height) {
  4592. top -= 150;
  4593. left -= 150;
  4594. }
  4595. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4596. else {
  4597. top += 150;
  4598. left = ol;
  4599. };
  4600. }
  4601. //給圖標的位置賦值
  4602. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4603. if (i < childs.length - 1) {
  4604. //頁面圖標每次向下加95
  4605. left += 150;
  4606. }
  4607. }
  4608. //返回最後調用的圖標的位置
  4609. return [top, left];
  4610. }
  4611. /**
  4612. * 桌面點擊事件邏輯
  4613. *
  4614. * @param {element} 桌面元素
  4615. * @param {object} 上下相距的距離
  4616. * @param {object} 左右相距的距離
  4617. * @return {object} 命名空間
  4618. */
  4619. U.MD.D.click = function (el, obj) {
  4620. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4621. var _userinfo = US.userInfo;
  4622. U.UF.EV.stopBubble(); //阻止向上冒泡
  4623. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4624. if (_buttonnumber < 2) {
  4625. //如果是click事件的處理
  4626. if (event.type == "click") {
  4627. //如果元素在mousemove事件中沒有移動則出發click事件
  4628. if (!U.MD.D.I.IsDrag) {
  4629. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4630. U.alert("請先登錄您的賬號!");
  4631. setTimeout(() => {
  4632. U.MD.U.L.login();
  4633. }, 2000);
  4634. } else {
  4635. //打開應用處理
  4636. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4637. }
  4638. }
  4639. }
  4640. //如果是mouse事件的處理
  4641. else {
  4642. if (US.Config.type == '1') {
  4643. //拖動處理,添加拖動和拖動結束事件
  4644. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4645. }
  4646. }
  4647. U.MD.D.I.IsDrag = false;
  4648. }
  4649. }
  4650. /**
  4651. * 拖動的處理
  4652. *
  4653. */
  4654. U.MD.D.iconMove = function () {
  4655. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4656. U.MD.D.I.IsDrag = true;
  4657. }
  4658. /**
  4659. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4660. *
  4661. * @param {element} 拖動的元素
  4662. * @return {object} 命名空間
  4663. */
  4664. U.MD.D.iconUp = function (el) {
  4665. var _top = 15,
  4666. _left = 20,
  4667. _margin,
  4668. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4669. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4670. if (_positioninfo["OT"] > 15) {
  4671. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4672. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4673. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4674. }
  4675. if (_positioninfo["OL"] > 20) {
  4676. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4677. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4678. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4679. }
  4680. //while循環判斷麼一個重疊的元素
  4681. do {
  4682. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4683. _top = _positioninfo[0] + 95; //得到定位後的top
  4684. _left = _positioninfo[1]; //得到定位後的left
  4685. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4686. }
  4687. /**
  4688. * 判斷拖動後圖標是否重疊
  4689. *
  4690. * @param {element} 拖動的元素
  4691. * @param {element} 桌面所有的元素
  4692. * @param {array} 拖動元素的位置
  4693. ----------[0] 上 top
  4694. ----------[1] 左 left
  4695. * @return {object} 命名空間
  4696. */
  4697. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4698. //循環所有的圖標
  4699. for (var i = 0; i < childs.length; i++) {
  4700. //判斷有沒有和該圖標誒子重疊的元素
  4701. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4702. return childs[i]; //如果有返回
  4703. }
  4704. }
  4705. }
  4706. //#endregion
  4707. //#endregion
  4708. //#region 桌面應用
  4709. /**
  4710. * 打開應用
  4711. *
  4712. * @param {string} 類型
  4713. -----------------Disk 網盤系統
  4714. -----------------PDisk 學習系統網盤
  4715. -----------------Poto 圖片
  4716. -----------------Video 視頻
  4717. -----------------Music 音樂
  4718. -----------------Word word
  4719. -----------------Excel excel
  4720. -----------------Txt 記事本
  4721. -----------------PB 學習系統
  4722. -----------------Blog 朋友圈系統
  4723. -----------------FTP ftp系統
  4724. -----------------Group 好友群
  4725. -----------------SY 首頁系統
  4726. -----------------Set 個人設置
  4727. -----------------XSet 系統設置
  4728. -----------------App 我們所有的app
  4729. -----------------BC c.1473.cn 平臺
  4730. -----------------CWeb d.1473.cn 變成平臺
  4731. -----------------其他的外聯系統 我們統一用iframe打開
  4732. * @param {array} 類型
  4733. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4734. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4735. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4736. 如果第一個參數為其他,則無第二個參數
  4737. * @returns {array}
  4738. */
  4739. window.addEventListener('message', function (e) { // 監聽 message 事件
  4740. // alert(e.data.type);
  4741. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4742. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4743. //3是展示全部階段 2學生 1老師 4專家
  4744. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4745. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4746. //3是展示全部階段 2學生 1老師 4專家
  4747. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4748. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4749. //3是展示全部階段 2學生 1老師 4專家
  4750. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4751. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4752. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4753. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4754. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4755. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4756. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4757. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4758. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4759. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4760. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4761. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4762. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4763. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4764. //3是展示全部階段 2學生 1老師 4專家
  4765. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4766. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4767. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4768. U.MD.D.I.selectUser();
  4769. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4770. var _formel = document.getElementById("study");
  4771. U.UF.F.windowZooming(_formel);
  4772. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4773. var _formel = document.getElementById("studyDetail");
  4774. U.UF.F.windowZooming(_formel);
  4775. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4776. var _formel = document.getElementById("studyDetail");
  4777. U.UF.F.windowZooming(_formel);
  4778. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4779. var _formel = document.getElementById("studentStudy");
  4780. U.UF.F.windowZooming(_formel);
  4781. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4782. // var _formel = document.getElementById("study");
  4783. //如果最大化了,那麼就把他縮小
  4784. // if (_formel.ismaximize) {
  4785. // return;
  4786. // }
  4787. // U.UF.F.windowZooming(_formel);
  4788. // U.UF.F.topWindow(_formel);
  4789. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4790. // var _formel = document.getElementById("studyDetail");
  4791. //如果最大化了,那麼就把他縮小
  4792. // if (_formel.ismaximize) {
  4793. // return;
  4794. // }
  4795. // U.UF.F.windowZooming(_formel);
  4796. // U.UF.F.topWindow(_formel);
  4797. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4798. // var _formel = document.getElementById("studentStudy");
  4799. // if (_formel.ismaximize) {
  4800. // return;
  4801. // }
  4802. // U.UF.F.windowZooming(_formel);
  4803. // U.UF.F.topWindow(_formel);
  4804. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4805. var _formel = document.getElementById("study");
  4806. // if (_formel.ismaximize) {
  4807. // return;
  4808. // }
  4809. // U.UF.F.windowZooming(_formel);
  4810. U.UF.F.topWindow(_formel);
  4811. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4812. var _formel = document.getElementById("studentIndex");
  4813. U.UF.F.windowZooming(_formel);
  4814. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4815. var _formel = document.getElementById("studyDetailS");
  4816. U.UF.F.windowZooming(_formel);
  4817. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4818. var _formel = document.getElementById("studioIndex");
  4819. U.UF.F.windowZooming(_formel);
  4820. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4821. var _formel = document.getElementById("studyDetailStudio");
  4822. U.UF.F.windowZooming(_formel);
  4823. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4824. var _formel = document.getElementById("studyDetailStudio");
  4825. U.UF.F.windowZooming(_formel);
  4826. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4827. var _formel = document.getElementById("studyDetailNT");
  4828. U.UF.F.windowZooming(_formel);
  4829. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4830. var _formel = document.getElementById("studyDetailS");
  4831. U.UF.F.windowZooming(_formel);
  4832. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4833. var _formel = document.getElementById("studyDetailS");
  4834. U.UF.F.topWindow(_formel);
  4835. } else if (e.data.tools && e.data.tools == "1") {
  4836. // U.MD.D.I.openApplication("whiteboard")
  4837. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4838. } else if (e.data.tools && e.data.tools == "2") {
  4839. U.MD.D.I.openApplication("note")
  4840. } else if (e.data.tools && e.data.tools == "3") {
  4841. // U.MD.D.I.openApplication("mind")
  4842. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4843. } else if (e.data.tools && e.data.tools == "4") {
  4844. U.MD.D.I.openApplication("investigation")
  4845. } else if (e.data.tools && e.data.tools == "6") {
  4846. // U.MD.D.I.openApplication("doc")
  4847. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4848. } else if (e.data.tools && e.data.tools == "7") {
  4849. // U.MD.D.I.openApplication("mindNetwork")
  4850. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4851. } else if (e.data.tools && e.data.tools == "8") {
  4852. U.MD.D.I.openApplication("library")
  4853. } else if (e.data.tools && e.data.tools == "17") {
  4854. U.MD.D.I.openApplication("stuLibrary")
  4855. } else if (e.data.tools && e.data.tools == "18") {
  4856. U.MD.D.I.openApplication("train")
  4857. } else if (e.data.tools && e.data.tools == "21") {
  4858. U.MD.D.I.openApplication("program")
  4859. } else if (e.data.tools && e.data.tools == "22") {
  4860. U.MD.D.I.openApplication("AIprogram2")
  4861. } else if (e.data.tools && e.data.tools == "23") {
  4862. U.MD.D.I.openApplication("Pythonprogram")
  4863. } else if (e.data.tools && e.data.tools == "24") {
  4864. U.MD.D.I.openApplication("AIprogram")
  4865. } else if (e.data.tools && e.data.tools == "25") {
  4866. U.MD.D.I.openApplication("sys")
  4867. } else if (e.data.tools && e.data.tools == "26") {
  4868. // U.MD.D.I.openApplication("courseDesign")
  4869. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4870. } else if (e.data.tools && e.data.tools == "31") {
  4871. U.MD.D.I.openApplication("netWorkPanel")
  4872. } else if (e.data.tools && e.data.tools == "32") {
  4873. U.MD.D.I.openApplication("codeEdit")
  4874. } else if (e.data.tools && e.data.tools == "57") {
  4875. U.MD.D.I.openApplication("CocoPi")
  4876. } else if (e.data.tools && e.data.tools == "63") {
  4877. U.MD.D.I.openApplication("Wood")
  4878. } else if (e.data.tools && e.data.tools == "58") {
  4879. U.MD.D.I.openApplication("car")
  4880. } else if (e.data.tools && e.data.tools == "59") {
  4881. U.MD.D.I.openApplication("lineSearch")
  4882. } else if (e.data.tools && e.data.tools == "60") {
  4883. U.MD.D.I.openApplication("deepLearning")
  4884. } else if (e.data.tools && e.data.tools == "61") {
  4885. U.MD.D.I.openApplication("allHistory")
  4886. } else if (e.data.tools && e.data.tools == "28") {
  4887. U.MD.D.I.openApplication("translation")
  4888. } else if (e.data.tools && e.data.tools == "37") {
  4889. U.MD.D.I.openApplication("mohe")
  4890. } else if (e.data.tools && e.data.tools == "38") {
  4891. U.MD.D.I.openApplication("24game")
  4892. } else if (e.data.tools && e.data.tools == "39") {
  4893. U.MD.D.I.openApplication("GeoGebra")
  4894. } else if (e.data.tools && e.data.tools == "43") {
  4895. U.MD.D.I.openApplication("studentEvaluate")
  4896. } else if (e.data.tools && e.data.tools == "44") {
  4897. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4898. } else if (e.data.tools && e.data.tools == "46") {
  4899. U.MD.D.I.openApplication("project")
  4900. } else if (e.data.tools && e.data.tools == "71") {
  4901. U.MD.D.I.openApplication("aigptCourse")
  4902. } else if (e.data.tools && e.data.tools == "1s") {
  4903. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4904. } else if (e.data.tools && e.data.tools == "3s") {
  4905. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4906. } else if (e.data.tools && e.data.tools == "6s") {
  4907. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4908. } else if (e.data.tools && e.data.tools == "1studio") {
  4909. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4910. } else if (e.data.tools && e.data.tools == "3studio") {
  4911. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4912. } else if (e.data.tools && e.data.tools == "6studio") {
  4913. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4914. } else if (e.data.tools && e.data.tools == "3y") {
  4915. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4916. } else if (e.data.tools && e.data.tools == "1y") {
  4917. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4918. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4919. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4920. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4921. U.MD.D.I.openApplication("AIAnalyse")
  4922. } else if (e.data.tools && e.data.tools == "1teacher") {
  4923. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4924. } else if (e.data.tools && e.data.tools == "3teacher") {
  4925. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4926. } else if (e.data.tools && e.data.tools == "7teacher") {
  4927. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4928. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4929. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4930. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4931. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4932. } else if (e.data.tools && e.data.tools == "1E") {
  4933. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4934. } else if (e.data.tools && e.data.tools == "3E") {
  4935. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4936. } else if (e.data.tools && e.data.tools == "57y") {
  4937. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4938. } else if (e.data.tools && e.data.tools == "57u") {
  4939. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4940. } else if (e.data.tools && e.data.tools == "57teacher") {
  4941. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4942. } else if (e.data.tools && e.data.tools == "64") {
  4943. U.MD.D.I.openApplication("AIChat")
  4944. } else if (e.data.tools && e.data.tools == "66") {
  4945. U.MD.D.I.openApplication("formulaEdi")
  4946. } else if (e.data.tools && e.data.tools == "67") {
  4947. U.MD.D.I.openApplication("molStr")
  4948. } else if (e.data.tools && e.data.tools == "68") {
  4949. U.MD.D.I.openApplication("timeAxis")
  4950. } else if (e.data.tools && e.data.tools == "openCourse") {
  4951. let _data = {
  4952. typea: e.data.typea || '',
  4953. typeb: e.data.typeb || '',
  4954. typed: e.data.typed || '',
  4955. }
  4956. U.MD.D.I.openInApplication("index", _data)
  4957. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4958. let _data = {
  4959. classid: e.data.classid || '',
  4960. }
  4961. U.MD.D.I.openInApplication("dataClass", _data)
  4962. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4963. let _data = {
  4964. cid: e.data.cid || '',
  4965. gid: e.data.gid || '',
  4966. }
  4967. U.MD.D.I.openInApplication("opencCscl", _data)
  4968. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4969. U.MD.D.I.openApplication("dataBoardTest")
  4970. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4971. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4972. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4973. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4974. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4975. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4976. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4977. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4978. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4979. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4980. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4981. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4982. }else if (e.data.tools && e.data.tools == "loginSz") {
  4983. U.MD.D.I.openInApplication("loginSz")
  4984. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4985. if($('#classroom_observation_board')[0]){
  4986. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4987. }
  4988. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4989. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4990. if($('#classroom_observation_ob_comment')[0]){
  4991. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4992. }
  4993. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4994. }else if (e.data.tools && e.data.tools == "logout"){
  4995. U.MD.U.LO.logoutSystem()
  4996. }else if (e.data.tools && e.data.tools == "getLogin"){
  4997. let _iframe = $('#UI_Login')[0];
  4998. if (_iframe) {
  4999. var userInfo = US.userInfo;
  5000. var type = 2
  5001. if(userInfo && userInfo.userid){
  5002. type = 1
  5003. }
  5004. _contentWindow = _iframe.contentWindow;
  5005. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5006. }
  5007. }
  5008. });
  5009. U.MD.D.I.selectUser = function () {
  5010. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5011. if (res.value[0].length > 0) {
  5012. US.userInfo = res.value[0][0];
  5013. $(".userName")[0].innerHTML = US.userInfo.username;
  5014. }
  5015. }, [], { "type": "GET", "withCredentials": true });
  5016. }
  5017. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5018. var _userinfo = US.userInfo, //登錄用戶信息
  5019. _userid = US.userInfo.userid, //登錄用戶id
  5020. _oid = _userinfo.organizeid,
  5021. _type = US.userInfo.type,
  5022. _org = US.userInfo.org,
  5023. _role = US.userInfo.role,
  5024. _classId = US.userInfo.classid;
  5025. if (_type == 4) {
  5026. tType = 4
  5027. }
  5028. switch (str) {
  5029. case "studyDetailNT": //無終端模式
  5030. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5031. setTimeout(() => {
  5032. U.MD.U.L.login();
  5033. }, 2000);
  5034. } else {
  5035. _formdiv = new U.UF.UI.form(
  5036. "課程詳情",
  5037. $$("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 }), {
  5038. "id": "studyDetailNT",
  5039. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5040. "onresize": function () { }
  5041. }, {
  5042. closecallback: function () { }
  5043. }, { "style": { "height": "36px" } }).form; //創建窗體
  5044. _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); } }
  5045. break;
  5046. }
  5047. case "studyDetail":
  5048. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5049. setTimeout(() => {
  5050. U.MD.U.L.login();
  5051. }, 2000);
  5052. } else {
  5053. _formdiv = new U.UF.UI.form(
  5054. "課程詳情",
  5055. $$("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 }), {
  5056. "id": "studyDetail",
  5057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5058. "onresize": function () { }
  5059. }, {
  5060. closecallback: function () { }
  5061. }, { "style": { "height": "36px" } }).form; //創建窗體
  5062. _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); } }
  5063. break;
  5064. }
  5065. case "studyDetailTrain":
  5066. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5067. setTimeout(() => {
  5068. U.MD.U.L.login();
  5069. }, 2000);
  5070. } else {
  5071. _formdiv = new U.UF.UI.form(
  5072. "培訓詳情",
  5073. $$("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 }), {
  5074. "id": "studyDetailTrain",
  5075. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5076. "onresize": function () { }
  5077. }, {
  5078. closecallback: function () { }
  5079. }, { "style": { "height": "36px" } }).form; //創建窗體
  5080. _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); } }
  5081. break;
  5082. }
  5083. case "studyDetailS":
  5084. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5085. setTimeout(() => {
  5086. U.MD.U.L.login();
  5087. }, 2000);
  5088. } else {
  5089. _formdiv = new U.UF.UI.form(
  5090. "項目詳情",
  5091. $$("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 }), {
  5092. "id": "studyDetailS",
  5093. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5094. "onresize": function () { }
  5095. }, {
  5096. closecallback: function () { }
  5097. }, { "style": { "height": "36px" } }).form; //創建窗體
  5098. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5099. break;
  5100. }
  5101. case "studyDetailStudio":
  5102. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5103. setTimeout(() => {
  5104. U.MD.U.L.login();
  5105. }, 2000);
  5106. } else {
  5107. _formdiv = new U.UF.UI.form(
  5108. "工作詳情",
  5109. $$("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 }), {
  5110. "id": "studyDetailStudio",
  5111. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //創建窗體
  5116. _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); } }
  5117. break;
  5118. }
  5119. case "studyDetailS5":
  5120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5121. setTimeout(() => {
  5122. U.MD.U.L.login();
  5123. }, 2000);
  5124. } else {
  5125. _formdiv = new U.UF.UI.form(
  5126. "項目詳情",
  5127. $$("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 }), {
  5128. "id": "studyDetailS",
  5129. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5130. "onresize": function () { }
  5131. }, {
  5132. closecallback: function () { }
  5133. }, { "style": { "height": "36px" } }).form; //創建窗體
  5134. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5135. break;
  5136. }
  5137. case "studyDetailGM":
  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-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5146. "id": "studyDetail",
  5147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5148. "onresize": function () { }
  5149. }, {
  5150. closecallback: function () { }
  5151. }, { "style": { "height": "36px" } }).form; //創建窗體
  5152. _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); } }
  5153. break;
  5154. }
  5155. case "hanUrl":
  5156. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5157. setTimeout(() => {
  5158. U.MD.U.L.login();
  5159. }, 2000);
  5160. } else {
  5161. _formdiv = new U.UF.UI.form(
  5162. "漢字宮",
  5163. $$("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" }), {
  5164. "id": "hanUrl",
  5165. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5166. "onresize": function () { }
  5167. }, {
  5168. closecallback: function () { }
  5169. }, { "style": { "height": "36px" } }).form; //創建窗體
  5170. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "漢字宮", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5171. break;
  5172. }
  5173. case "index":
  5174. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5175. setTimeout(() => {
  5176. U.MD.U.L.login();
  5177. }, 2000);
  5178. } else {
  5179. _formdiv = new U.UF.UI.form(
  5180. "課程中心",
  5181. $$("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 }), {
  5182. "id": "study",
  5183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5184. "onresize": function () { }
  5185. }, {
  5186. closecallback: function () { }
  5187. }, { "style": { "height": "36px" } }).form; //創建窗體
  5188. _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); } }
  5189. break;
  5190. }
  5191. case "dataClass":
  5192. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5193. setTimeout(() => {
  5194. U.MD.U.L.login();
  5195. }, 2000);
  5196. } else {
  5197. _formdiv = new U.UF.UI.form(
  5198. "數據報告",
  5199. $$("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 }), {
  5200. "id": "dataClass",
  5201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //創建窗體
  5206. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "數據報告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5207. break;
  5208. }
  5209. case "opencCscl":
  5210. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5211. setTimeout(() => {
  5212. U.MD.U.L.login();
  5213. }, 2000);
  5214. } else {
  5215. _formdiv = new U.UF.UI.form(
  5216. "協同建構",
  5217. $$("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 }), {
  5218. "id": "futureClass",
  5219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5223. }, { "style": { "height": "36px" } }).form; //創建窗體
  5224. _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); } }
  5225. break;
  5226. }
  5227. case "openCourseUpdate":
  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/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5236. "id": "openCourseUpdate",
  5237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //創建窗體
  5242. break;
  5243. }
  5244. case "openNewCourseUpdate":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5253. "id": "openCourseUpdate",
  5254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //創建窗體
  5259. break;
  5260. }
  5261. case "openCourseEUpdate":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5270. "id": "openCourseUpdate",
  5271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //創建窗體
  5276. break;
  5277. }
  5278. case "openCourseAiUpdate":
  5279. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5280. setTimeout(() => {
  5281. U.MD.U.L.login();
  5282. }, 2000);
  5283. } else {
  5284. _formdiv = new U.UF.UI.form(
  5285. "課程管理",
  5286. $$("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 }), {
  5287. "id": "openCourseUpdate",
  5288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5289. "onresize": function () { }
  5290. }, {
  5291. closecallback: function () { }
  5292. }, { "style": { "height": "36px" } }).form; //創建窗體
  5293. break;
  5294. }
  5295. case "openCourseAiUpdate2":
  5296. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5297. setTimeout(() => {
  5298. U.MD.U.L.login();
  5299. }, 2000);
  5300. } else {
  5301. _formdiv = new U.UF.UI.form(
  5302. "課程管理",
  5303. $$("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 }), {
  5304. "id": "openCourseUpdate",
  5305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //創建窗體
  5310. break;
  5311. }
  5312. case "openCourseNewUpdate":
  5313. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5314. setTimeout(() => {
  5315. U.MD.U.L.login();
  5316. }, 2000);
  5317. } else {
  5318. _formdiv = new U.UF.UI.form(
  5319. "課程管理",
  5320. $$("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 }), {
  5321. "id": "openCourseUpdate",
  5322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5323. "onresize": function () { }
  5324. }, {
  5325. closecallback: function () { }
  5326. }, { "style": { "height": "36px" } }).form; //創建窗體
  5327. break;
  5328. }
  5329. case "inviteLoginSz":
  5330. _formdiv = new U.UF.UI.form(
  5331. "隨機碼登錄",
  5332. $$("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 }), {
  5333. "id": "loginSz",
  5334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5335. "onresize": function () { }
  5336. }, {
  5337. closecallback: function () { }
  5338. }, { "style": { "height": "36px" } }).form; //創建窗體
  5339. break;
  5340. case "loginSz":
  5341. _formdiv = new U.UF.UI.form(
  5342. "教師登錄",
  5343. $$("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" }), {
  5344. "id": "loginSz",
  5345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //創建窗體
  5350. break;
  5351. case "teacher":
  5352. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5353. setTimeout(() => {
  5354. U.MD.U.L.login();
  5355. }, 2000);
  5356. } else {
  5357. _formdiv = new U.UF.UI.form(
  5358. "教師管理",
  5359. $$("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 }), {
  5360. "id": "teacher",
  5361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5362. "onresize": function () { }
  5363. }, {
  5364. closecallback: function () { }
  5365. }, { "style": { "height": "36px" } }).form; //創建窗體
  5366. break;
  5367. }
  5368. case "dataBoardSZArea":
  5369. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5370. setTimeout(() => {
  5371. U.MD.U.L.login();
  5372. }, 2000);
  5373. } else {
  5374. _formdiv = new U.UF.UI.form(
  5375. "綜合數據看板",
  5376. $$("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 }), {
  5377. "id": "dataBoardSZArea",
  5378. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //創建窗體
  5383. break;
  5384. }
  5385. case "dataBoardSZCity":
  5386. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5387. setTimeout(() => {
  5388. U.MD.U.L.login();
  5389. }, 2000);
  5390. } else {
  5391. _formdiv = new U.UF.UI.form(
  5392. "綜合數據看板",
  5393. $$("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 }), {
  5394. "id": "dataBoardSZCity",
  5395. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5396. "onresize": function () { }
  5397. }, {
  5398. closecallback: function () { }
  5399. }, { "style": { "height": "36px" } }).form; //創建窗體
  5400. break;
  5401. }
  5402. case "classroom_observation_board":
  5403. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5404. setTimeout(() => {
  5405. U.MD.U.L.login();
  5406. }, 2000);
  5407. } else {
  5408. _formdiv = new U.UF.UI.form(
  5409. "課堂觀察",
  5410. $$("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 }), {
  5411. "id": "classroom_observation_board",
  5412. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5413. "onresize": function () { }
  5414. }, {
  5415. closecallback: function () { }
  5416. }, { "style": { "height": "36px" } }).form; //創建窗體
  5417. break;
  5418. }
  5419. case "classroom_observation_ob_comment":
  5420. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5421. setTimeout(() => {
  5422. U.MD.U.L.login();
  5423. }, 2000);
  5424. } else {
  5425. _formdiv = new U.UF.UI.form(
  5426. "課堂審核",
  5427. $$("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 }), {
  5428. "id": "classroom_observation_ob_comment",
  5429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //創建窗體
  5434. break;
  5435. }
  5436. }
  5437. }
  5438. U.MD.D.I.openApplication = function (str, obj, info) {
  5439. obj = obj || {};
  5440. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5441. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5442. _userinfo = US.userInfo, //登錄用戶信息
  5443. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5444. _oid = obj.organizeid || _userinfo.organizeid,
  5445. _type = US.userInfo.type,
  5446. _org = US.userInfo.org,
  5447. _role = US.userInfo.role,
  5448. _classId = US.userInfo.classid,
  5449. _TscreenType = 1
  5450. _screenType = 2,
  5451. _SscreenType = 3;
  5452. let iframeBool = true
  5453. if(U.UF.UI.form.allForm[str]){
  5454. iframeBool = false
  5455. }
  5456. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5457. return;
  5458. }
  5459. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5460. switch (str) {
  5461. case "studnetProject": //好友打開
  5462. _formdiv = new U.UF.UI.form(
  5463. "我的項目",
  5464. $$("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 }), {
  5465. "id": "studnetProject",
  5466. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5467. "onresize": function () { }
  5468. }, {
  5469. closecallback: function () { }
  5470. }, { "style": { "height": "36px" } }).form; //創建窗體
  5471. _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); } }
  5472. break;
  5473. case "studentEvaluate": //好友打開
  5474. _formdiv = new U.UF.UI.form(
  5475. "我的評價",
  5476. $$("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 }), {
  5477. "id": "studentEvaluate",
  5478. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5479. "onresize": function () { }
  5480. }, {
  5481. closecallback: function () { }
  5482. }, { "style": { "height": "36px" } }).form; //創建窗體
  5483. _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); } }
  5484. break;
  5485. case "my":
  5486. _formdiv = new U.UF.UI.form(
  5487. "我的資料",
  5488. $$("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 }), {
  5489. "id": "my",
  5490. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5491. "onresize": function () { }
  5492. }, {
  5493. closecallback: function () { }
  5494. }, { "style": { "height": "36px" } }).form; //創建窗體
  5495. _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); } }
  5496. break;
  5497. case "program":
  5498. _formdiv = new U.UF.UI.form(
  5499. "編程平臺",
  5500. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5501. "id": "program",
  5502. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5503. "onresize": function () { }
  5504. }, {
  5505. closecallback: function () { }
  5506. }, { "style": { "height": "36px" } }).form; //創建窗體
  5507. _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); } }
  5508. break;
  5509. case "library":
  5510. _formdiv = new U.UF.UI.form(
  5511. "素材庫",
  5512. $$("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 }), {
  5513. "id": "library",
  5514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5515. "onresize": function () { }
  5516. }, {
  5517. closecallback: function () { }
  5518. }, { "style": { "height": "36px" } }).form; //創建窗體
  5519. _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); } }
  5520. break;
  5521. case "whiteboard":
  5522. _formdiv = new U.UF.UI.form(
  5523. "電子白板",
  5524. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5525. "id": "whiteboard",
  5526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5527. "onresize": function () { }
  5528. }, {
  5529. closecallback: function () { }
  5530. }, { "style": { "height": "36px" } }).form; //創建窗體
  5531. _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); } }
  5532. break;
  5533. case "investigation":
  5534. _formdiv = new U.UF.UI.form(
  5535. "問卷調查",
  5536. $$("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 }), {
  5537. "id": "investigation",
  5538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //創建窗體
  5543. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5544. break;
  5545. case "note":
  5546. _formdiv = new U.UF.UI.form(
  5547. "便簽分類",
  5548. $$("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 }), {
  5549. "id": "note",
  5550. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //創建窗體
  5555. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便簽分類", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5556. break;
  5557. // case "score":
  5558. // _formdiv = new U.UF.UI.form(
  5559. // "量規評分",
  5560. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5561. // "id": "score",
  5562. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. // "onresize": function() {}
  5564. // }, {
  5565. // closecallback: function() {}
  5566. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5567. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量規評分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5568. // break;
  5569. case "mind":
  5570. _formdiv = new U.UF.UI.form(
  5571. "思維導圖",
  5572. $$("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"
  5573. "id": "mind",
  5574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5575. "onresize": function () { }
  5576. }, {
  5577. closecallback: function () { }
  5578. }, { "style": { "height": "36px" } }).form; //創建窗體
  5579. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5580. break;
  5581. case "doc":
  5582. // U.MD.D.I.isRoom();
  5583. _formdiv = new U.UF.UI.form(
  5584. "協同文檔",
  5585. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5586. "id": "doc",
  5587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5588. "onresize": function () { }
  5589. }, {
  5590. closecallback: function () { }
  5591. }, { "style": { "height": "36px" } }).form; //創建窗體
  5592. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5593. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5594. // })
  5595. _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); } }
  5596. break;
  5597. case "studentStudy":
  5598. _formdiv = new U.UF.UI.form(
  5599. "課程中心",
  5600. $$("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
  5601. "id": "studentStudy",
  5602. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5603. "onresize": function () { }
  5604. }, {
  5605. closecallback: function () { }
  5606. }, { "style": { "height": "36px" } }).form; //創建窗體
  5607. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5608. break;
  5609. case "train": //好友打開
  5610. _formdiv = new U.UF.UI.form(
  5611. "訓練平臺",
  5612. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5613. "id": "train",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //創建窗體
  5619. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5620. break;
  5621. case "mindNetwork": //好友打開
  5622. _formdiv = new U.UF.UI.form(
  5623. "思維網格",
  5624. $$("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 }), {
  5625. "id": "mindNetwork",
  5626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5627. "onresize": function () { }
  5628. }, {
  5629. closecallback: function () { }
  5630. }, { "style": { "height": "36px" } }).form; //創建窗體
  5631. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5632. break;
  5633. case "studentClassRoom": //好友打開
  5634. _formdiv = new U.UF.UI.form(
  5635. "實時課堂",
  5636. $$("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 }), {
  5637. "id": "studentClassRoom",
  5638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5639. "onresize": function () { }
  5640. }, {
  5641. closecallback: function () { }
  5642. }, { "style": { "height": "36px" } }).form; //創建窗體
  5643. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5644. setTimeout(() => {
  5645. U.UF.F.windowZooming(_formdiv)
  5646. }, 0);
  5647. break;
  5648. }
  5649. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5650. switch (str) {
  5651. case "studnetProject": //好友打開
  5652. _formdiv = new U.UF.UI.form(
  5653. "我的項目",
  5654. $$("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 }), {
  5655. "id": "studnetProject",
  5656. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //創建窗體
  5661. _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); } }
  5662. break;
  5663. case "studentEvaluate": //好友打開
  5664. _formdiv = new U.UF.UI.form(
  5665. "我的評價",
  5666. $$("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 }), {
  5667. "id": "studentEvaluate",
  5668. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //創建窗體
  5673. _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); } }
  5674. break;
  5675. case "my":
  5676. _formdiv = new U.UF.UI.form(
  5677. "我的資料",
  5678. $$("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 }), {
  5679. "id": "my",
  5680. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //創建窗體
  5685. _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); } }
  5686. break;
  5687. case "program":
  5688. _formdiv = new U.UF.UI.form(
  5689. "編程平臺",
  5690. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5691. "id": "program",
  5692. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5693. "onresize": function () { }
  5694. }, {
  5695. closecallback: function () { }
  5696. }, { "style": { "height": "36px" } }).form; //創建窗體
  5697. _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); } }
  5698. break;
  5699. case "library":
  5700. _formdiv = new U.UF.UI.form(
  5701. "素材庫",
  5702. $$("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 }), {
  5703. "id": "library",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //創建窗體
  5709. _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); } }
  5710. break;
  5711. case "whiteboard":
  5712. _formdiv = new U.UF.UI.form(
  5713. "電子白板",
  5714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5715. "id": "whiteboard",
  5716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //創建窗體
  5721. _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); } }
  5722. break;
  5723. case "investigation":
  5724. _formdiv = new U.UF.UI.form(
  5725. "問卷調查",
  5726. $$("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 }), {
  5727. "id": "investigation",
  5728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //創建窗體
  5733. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5734. break;
  5735. case "note":
  5736. _formdiv = new U.UF.UI.form(
  5737. "便簽分類",
  5738. $$("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 }), {
  5739. "id": "note",
  5740. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //創建窗體
  5745. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便簽分類", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5746. break;
  5747. // case "score":
  5748. // _formdiv = new U.UF.UI.form(
  5749. // "量規評分",
  5750. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5751. // "id": "score",
  5752. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5753. // "onresize": function() {}
  5754. // }, {
  5755. // closecallback: function() {}
  5756. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5757. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量規評分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5758. // break;
  5759. case "mind":
  5760. _formdiv = new U.UF.UI.form(
  5761. "思維導圖",
  5762. $$("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"
  5763. "id": "mind",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //創建窗體
  5769. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5770. break;
  5771. case "doc":
  5772. // U.MD.D.I.isRoom();
  5773. _formdiv = new U.UF.UI.form(
  5774. "協同文檔",
  5775. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5776. "id": "doc",
  5777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5778. "onresize": function () { }
  5779. }, {
  5780. closecallback: function () { }
  5781. }, { "style": { "height": "36px" } }).form; //創建窗體
  5782. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5783. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5784. })
  5785. _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); } }
  5786. break;
  5787. case "train": //好友打開
  5788. _formdiv = new U.UF.UI.form(
  5789. "訓練平臺",
  5790. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5791. "id": "train",
  5792. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //創建窗體
  5797. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5798. break;
  5799. case "studentStudy":
  5800. _formdiv = new U.UF.UI.form(
  5801. "課程中心",
  5802. $$("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
  5803. "id": "studentStudy",
  5804. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //創建窗體
  5809. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5810. break;
  5811. case "mindNetwork": //好友打開
  5812. _formdiv = new U.UF.UI.form(
  5813. "思維網格",
  5814. $$("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 }), {
  5815. "id": "mindNetwork",
  5816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //創建窗體
  5821. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5822. break;
  5823. case "studentClassRoom": //好友打開
  5824. _formdiv = new U.UF.UI.form(
  5825. "實時課堂",
  5826. $$("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 }), {
  5827. "id": "studentClassRoom",
  5828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //創建窗體
  5833. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5834. setTimeout(() => {
  5835. U.UF.F.windowZooming(_formdiv)
  5836. }, 0);
  5837. break;
  5838. }
  5839. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5840. //選擇應用處理
  5841. switch (str) {
  5842. case "project": //好友打開
  5843. _formdiv = new U.UF.UI.form(
  5844. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5845. $$("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 }), {
  5846. "id": "project",
  5847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //創建窗體
  5852. _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); } }
  5853. break;
  5854. case "student":
  5855. _formdiv = new U.UF.UI.form(
  5856. "學生管理",
  5857. $$("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 }), {
  5858. "id": "student",
  5859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5860. "onresize": function () { }
  5861. }, {
  5862. closecallback: function () { }
  5863. }, { "style": { "height": "36px" } }).form; //創建窗體
  5864. _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); } }
  5865. break;
  5866. case "evaluate":
  5867. _formdiv = new U.UF.UI.form(
  5868. "學生評價",
  5869. $$("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 }), {
  5870. "id": "evaluate",
  5871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5872. "onresize": function () { }
  5873. }, {
  5874. closecallback: function () { }
  5875. }, { "style": { "height": "36px" } }).form; //創建窗體
  5876. _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); } }
  5877. break;
  5878. case "sys":
  5879. _formdiv = new U.UF.UI.form(
  5880. "目標管理",
  5881. $$("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 }), {
  5882. "id": "sys",
  5883. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5884. "onresize": function () { }
  5885. }, {
  5886. closecallback: function () { }
  5887. }, { "style": { "height": "36px" } }).form; //創建窗體
  5888. _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); } }
  5889. break;
  5890. case "courseDesign":
  5891. _formdiv = new U.UF.UI.form(
  5892. "項目設計",
  5893. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5894. "id": "courseDesign",
  5895. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5896. "onresize": function () { }
  5897. }, {
  5898. closecallback: function () { }
  5899. }, { "style": { "height": "36px" } }).form; //創建窗體
  5900. _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); } }
  5901. break;
  5902. case "program":
  5903. _formdiv = new U.UF.UI.form(
  5904. "編程平臺",
  5905. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5906. "id": "program",
  5907. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5908. "onresize": function () { }
  5909. }, {
  5910. closecallback: function () { }
  5911. }, { "style": { "height": "36px" } }).form; //創建窗體
  5912. _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); } }
  5913. break;
  5914. case "class":
  5915. _formdiv = new U.UF.UI.form(
  5916. "班級管理",
  5917. $$("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 }), {
  5918. "id": "class",
  5919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5920. "onresize": function () { }
  5921. }, {
  5922. closecallback: function () { }
  5923. }, { "style": { "height": "36px" } }).form; //創建窗體
  5924. _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); } }
  5925. break;
  5926. case "Grade":
  5927. _formdiv = new U.UF.UI.form(
  5928. "年級管理",
  5929. $$("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 }), {
  5930. "id": "Grade",
  5931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5932. "onresize": function () { }
  5933. }, {
  5934. closecallback: function () { }
  5935. }, { "style": { "height": "36px" } }).form; //創建窗體
  5936. _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); } }
  5937. break;
  5938. case "teacherOffice":
  5939. _formdiv = new U.UF.UI.form(
  5940. "教研室",
  5941. $$("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 }), {
  5942. "id": "teacherOffice",
  5943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, { "style": { "height": "36px" } }).form; //創建窗體
  5948. _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); } }
  5949. break;
  5950. case "my":
  5951. _formdiv = new U.UF.UI.form(
  5952. "我的資料",
  5953. $$("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 }), {
  5954. "id": "my",
  5955. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5956. "onresize": function () { }
  5957. }, {
  5958. closecallback: function () { }
  5959. }, { "style": { "height": "36px" } }).form; //創建窗體
  5960. _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); } }
  5961. break;
  5962. case "notice":
  5963. _formdiv = new U.UF.UI.form(
  5964. "通知公告",
  5965. $$("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 }), {
  5966. "id": "notice",
  5967. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5968. "onresize": function () { }
  5969. }, {
  5970. closecallback: function () { }
  5971. }, { "style": { "height": "36px" } }).form; //創建窗體
  5972. _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); } }
  5973. break;
  5974. case "library":
  5975. _formdiv = new U.UF.UI.form(
  5976. "素材庫",
  5977. $$("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 }), {
  5978. "id": "library",
  5979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //創建窗體
  5984. _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); } }
  5985. break;
  5986. case "whiteboard":
  5987. _formdiv = new U.UF.UI.form(
  5988. "電子白板",
  5989. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5990. "id": "whiteboard",
  5991. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5992. "onresize": function () { }
  5993. }, {
  5994. closecallback: function () { }
  5995. }, { "style": { "height": "36px" } }).form; //創建窗體
  5996. _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); } }
  5997. break;
  5998. case "investigation":
  5999. _formdiv = new U.UF.UI.form(
  6000. "問卷調查",
  6001. $$("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 }), {
  6002. "id": "investigation",
  6003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //創建窗體
  6008. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6009. break;
  6010. case "note":
  6011. _formdiv = new U.UF.UI.form(
  6012. "便簽分類",
  6013. $$("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 }), {
  6014. "id": "note",
  6015. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //創建窗體
  6020. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便簽分類", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6021. break;
  6022. // case "score":
  6023. // _formdiv = new U.UF.UI.form(
  6024. // "量規評分",
  6025. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6026. // "id": "score",
  6027. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6028. // "onresize": function() {}
  6029. // }, {
  6030. // closecallback: function() {}
  6031. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6032. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量規評分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6033. // break;
  6034. case "mind":
  6035. _formdiv = new U.UF.UI.form(
  6036. "思維導圖",
  6037. $$("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"
  6038. "id": "mind",
  6039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //創建窗體
  6044. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6045. break;
  6046. case "doc":
  6047. // U.MD.D.I.isRoom();
  6048. _formdiv = new U.UF.UI.form(
  6049. "協同文檔",
  6050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6051. "id": "doc",
  6052. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //創建窗體
  6057. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6058. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6059. })
  6060. _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); } }
  6061. break;
  6062. case "study":
  6063. _formdiv = new U.UF.UI.form(
  6064. "課程中心",
  6065. $$("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
  6066. "id": "study",
  6067. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //創建窗體
  6072. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6073. break;
  6074. case "mindNetwork": //好友打開
  6075. _formdiv = new U.UF.UI.form(
  6076. "思維網格",
  6077. $$("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 }), {
  6078. "id": "mindNetwork",
  6079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, { "style": { "height": "36px" } }).form; //創建窗體
  6084. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6085. break;
  6086. case "train": //好友打開
  6087. _formdiv = new U.UF.UI.form(
  6088. "訓練平臺",
  6089. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6090. "id": "mindNetwork",
  6091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, { "style": { "height": "36px" } }).form; //創建窗體
  6096. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6097. break;
  6098. case "teacherClassRoom": //好友打開
  6099. _formdiv = new U.UF.UI.form(
  6100. "實時課堂",
  6101. $$("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 }), {
  6102. "id": "teacherClassRoom",
  6103. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, { "style": { "height": "36px" } }).form; //創建窗體
  6108. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6109. setTimeout(() => {
  6110. U.UF.F.windowZooming(_formdiv)
  6111. }, 0);
  6112. break;
  6113. }
  6114. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6115. switch (str) {
  6116. case "project": //好友打開
  6117. _formdiv = new U.UF.UI.form(
  6118. "課程管理",
  6119. $$("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 }), {
  6120. "id": "project",
  6121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //創建窗體
  6126. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "課程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6127. break;
  6128. case "evaluate":
  6129. _formdiv = new U.UF.UI.form(
  6130. "學生評價",
  6131. $$("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 }), {
  6132. "id": "evaluate",
  6133. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6134. "onresize": function () { }
  6135. }, {
  6136. closecallback: function () { }
  6137. }, { "style": { "height": "36px" } }).form; //創建窗體
  6138. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "學生評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6139. break;
  6140. case "notice":
  6141. _formdiv = new U.UF.UI.form(
  6142. "通知公告",
  6143. $$("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 }), {
  6144. "id": "notice",
  6145. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //創建窗體
  6150. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6151. break;
  6152. case "stuLibrary":
  6153. _formdiv = new U.UF.UI.form(
  6154. "學習資料",
  6155. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6156. "id": "stuLibrary",
  6157. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //創建窗體
  6162. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "學習資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6163. break;
  6164. case "program":
  6165. _formdiv = new U.UF.UI.form(
  6166. "編程平臺",
  6167. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6168. "id": "program",
  6169. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, { "style": { "height": "36px" } }).form; //創建窗體
  6174. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6175. break;
  6176. case "whiteboard":
  6177. _formdiv = new U.UF.UI.form(
  6178. "電子白板",
  6179. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6180. "id": "whiteboard",
  6181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6182. "onresize": function () { }
  6183. }, {
  6184. closecallback: function () { }
  6185. }, { "style": { "height": "36px" } }).form; //創建窗體
  6186. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "電子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6187. break;
  6188. case "investigation":
  6189. _formdiv = new U.UF.UI.form(
  6190. "問卷調查",
  6191. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6192. "id": "investigation",
  6193. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6194. "onresize": function () { }
  6195. }, {
  6196. closecallback: function () { }
  6197. }, { "style": { "height": "36px" } }).form; //創建窗體
  6198. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6199. break;
  6200. case "mind":
  6201. _formdiv = new U.UF.UI.form(
  6202. "思維導圖",
  6203. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6204. "id": "mind",
  6205. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6206. "onresize": function () { }
  6207. }, {
  6208. closecallback: function () { }
  6209. }, { "style": { "height": "36px" } }).form; //創建窗體
  6210. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6211. break;
  6212. case "doc":
  6213. // U.MD.D.I.isRoom();
  6214. _formdiv = new U.UF.UI.form(
  6215. "協同文檔",
  6216. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6217. "id": "doc",
  6218. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //創建窗體
  6223. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6224. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6225. })
  6226. _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); } }
  6227. break;
  6228. case "study":
  6229. _formdiv = new U.UF.UI.form(
  6230. "課程中心",
  6231. $$("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
  6232. "id": "study",
  6233. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //創建窗體
  6238. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6239. break;
  6240. case "mindNetwork": //好友打開
  6241. _formdiv = new U.UF.UI.form(
  6242. "思維網格",
  6243. $$("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 }), {
  6244. "id": "mindNetwork",
  6245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //創建窗體
  6250. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6251. break;
  6252. case "train": //好友打開
  6253. _formdiv = new U.UF.UI.form(
  6254. "訓練平臺",
  6255. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6256. "id": "train",
  6257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //創建窗體
  6262. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6263. break;
  6264. case "sys":
  6265. _formdiv = new U.UF.UI.form(
  6266. "目標管理",
  6267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6268. "id": "sys",
  6269. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //創建窗體
  6274. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目標管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6275. break;
  6276. case "courseDesign":
  6277. _formdiv = new U.UF.UI.form(
  6278. "項目設計",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6280. "id": "courseDesign",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //創建窗體
  6286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "項目設計", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6287. break;
  6288. }
  6289. } else if (!_type) {
  6290. switch (str) {
  6291. case "my":
  6292. _formdiv = new U.UF.UI.form(
  6293. "我的資料",
  6294. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6295. "id": "my",
  6296. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //創建窗體
  6301. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6302. break;
  6303. }
  6304. }
  6305. switch (str) {
  6306. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6307. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6308. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6309. case "formulaEdi": //公式編輯
  6310. _formdiv = new U.UF.UI.form(
  6311. "公式編輯",
  6312. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6313. "id": "formulaEdi",
  6314. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6315. "onresize": function () { }
  6316. }, {
  6317. closecallback: function () { }
  6318. }, { "style": { "height": "36px" } }).form; //創建窗體
  6319. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式編輯", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6320. break;
  6321. case "molStr": //分子結構
  6322. _formdiv = new U.UF.UI.form(
  6323. "分子結構",
  6324. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6325. "id": "molStr",
  6326. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6327. "onresize": function () { }
  6328. }, {
  6329. closecallback: function () { }
  6330. }, { "style": { "height": "36px" } }).form; //創建窗體
  6331. _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); } }
  6332. break;
  6333. case "timeAxis": //時間軸
  6334. _formdiv = new U.UF.UI.form(
  6335. "時間軸",
  6336. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6337. "id": "timeAxis",
  6338. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6339. "onresize": function () { }
  6340. }, {
  6341. closecallback: function () { }
  6342. }, { "style": { "height": "36px" } }).form; //創建窗體
  6343. _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); } }
  6344. break;
  6345. case "AIprogram2": //AI體驗
  6346. _formdiv = new U.UF.UI.form(
  6347. "AI體驗",
  6348. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6349. "id": "AIprogram2",
  6350. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6351. "onresize": function () { }
  6352. }, {
  6353. closecallback: function () { }
  6354. }, { "style": { "height": "36px" } }).form; //創建窗體
  6355. _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); } }
  6356. break;
  6357. case "Pythonprogram": //python編程
  6358. _formdiv = new U.UF.UI.form(
  6359. "Python編程",
  6360. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6361. "id": "Pythonprogram",
  6362. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6363. "onresize": function () { }
  6364. }, {
  6365. closecallback: function () { }
  6366. }, { "style": { "height": "36px" } }).form; //創建窗體
  6367. _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); } }
  6368. break;
  6369. case "AIprogram": //ai編程
  6370. _formdiv = new U.UF.UI.form(
  6371. "AI編程平臺",
  6372. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6373. "id": "AIprogram",
  6374. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6375. "onresize": function () { }
  6376. }, {
  6377. closecallback: function () { }
  6378. }, { "style": { "height": "36px" } }).form; //創建窗體
  6379. _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); } }
  6380. break;
  6381. case "CocoPi": //CocoPi
  6382. _formdiv = new U.UF.UI.form(
  6383. "CocoPi",
  6384. $$("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" }), {
  6385. "id": "CocoPi",
  6386. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6387. "onresize": function () { }
  6388. }, {
  6389. closecallback: function () { }
  6390. }, { "style": { "height": "36px" } }).form; //創建窗體
  6391. _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); } }
  6392. break;
  6393. case "Wood": //Wood
  6394. _formdiv = new U.UF.UI.form(
  6395. "海龜編程",
  6396. $$("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/" }), {
  6397. "id": "Wood",
  6398. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6399. "onresize": function () { }
  6400. }, {
  6401. closecallback: function () { }
  6402. }, { "style": { "height": "36px" } }).form; //創建窗體
  6403. _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); } }
  6404. break;
  6405. case "car": //模擬駕駛
  6406. _formdiv = new U.UF.UI.form(
  6407. "模擬駕駛",
  6408. $$("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/" }), {
  6409. "id": "car",
  6410. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6411. "onresize": function () { }
  6412. }, {
  6413. closecallback: function () { }
  6414. }, { "style": { "height": "36px" } }).form; //創建窗體
  6415. _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); } }
  6416. break;
  6417. case "lineSearch": //路徑搜索
  6418. _formdiv = new U.UF.UI.form(
  6419. "路徑搜索",
  6420. $$("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/" }), {
  6421. "id": "lineSearch",
  6422. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, { "style": { "height": "36px" } }).form; //創建窗體
  6427. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路徑搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6428. break;
  6429. case "deepLearning": //深度學習
  6430. _formdiv = new U.UF.UI.form(
  6431. "深度學習",
  6432. $$("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/#" }), {
  6433. "id": "deepLearning",
  6434. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6435. "onresize": function () { }
  6436. }, {
  6437. closecallback: function () { }
  6438. }, { "style": { "height": "36px" } }).form; //創建窗體
  6439. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度學習", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6440. break;
  6441. case "allHistory": //深度學習
  6442. _formdiv = new U.UF.UI.form(
  6443. "全歷史",
  6444. $$("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/" }), {
  6445. "id": "allHistory",
  6446. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, { "style": { "height": "36px" } }).form; //創建窗體
  6451. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全歷史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6452. break;
  6453. case "chatPDF": //ai編程
  6454. _formdiv = new U.UF.UI.form(
  6455. "chatPDF",
  6456. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6457. "id": "chatPDF",
  6458. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, { "style": { "height": "36px" } }).form; //創建窗體
  6463. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6464. break;
  6465. case "resources": //國家教育
  6466. _formdiv = new U.UF.UI.form(
  6467. "國家教育",
  6468. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6469. "id": "resources",
  6470. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6471. "onresize": function () { }
  6472. }, {
  6473. closecallback: function () { }
  6474. }, { "style": { "height": "36px" } }).form; //創建窗體
  6475. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "國家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6476. break;
  6477. case "codeEdit": //源碼編輯
  6478. _formdiv = new U.UF.UI.form(
  6479. "源碼編輯",
  6480. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6481. "id": "codeEdit",
  6482. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6483. "onresize": function () { }
  6484. }, {
  6485. closecallback: function () { }
  6486. }, { "style": { "height": "36px" } }).form; //創建窗體
  6487. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源碼編輯", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6488. break; //
  6489. case "MindMap": //MindMap
  6490. _formdiv = new U.UF.UI.form(
  6491. "MindMap",
  6492. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6493. "id": "MindMap",
  6494. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, { "style": { "height": "36px" } }).form; //創建窗體
  6499. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6500. break;
  6501. case "netWorkPanel": //netWorkPanel
  6502. _formdiv = new U.UF.UI.form(
  6503. "netWorkPanel",
  6504. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6505. "id": "netWorkPanel",
  6506. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6507. "onresize": function () { }
  6508. }, {
  6509. closecallback: function () { }
  6510. }, { "style": { "height": "36px" } }).form; //創建窗體
  6511. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6512. break;
  6513. case "GeoGebra": //GeoGebra
  6514. _formdiv = new U.UF.UI.form(
  6515. "GeoGebra",
  6516. $$("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" }), {
  6517. "id": "GeoGebra",
  6518. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6519. "onresize": function () { }
  6520. }, {
  6521. closecallback: function () { }
  6522. }, { "style": { "height": "36px" } }).form; //創建窗體
  6523. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6524. break;
  6525. case "translation": //翻譯
  6526. _formdiv = new U.UF.UI.form(
  6527. "翻譯",
  6528. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6529. "id": "translation",
  6530. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, { "style": { "height": "36px" } }).form; //創建窗體
  6535. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻譯", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6536. break;
  6537. case "mohe": //魔盒
  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": "//games.cocorobo.cn/view/index.html#/" }), {
  6541. "id": "mohe",
  6542. "style": { "width": "375px", "height": "667px", "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/mohe.png)" }, "name": "魔盒識字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6548. break;
  6549. case "24game": //24點
  6550. _formdiv = new U.UF.UI.form(
  6551. "24點",
  6552. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6553. "id": "24game",
  6554. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //創建窗體
  6559. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24點", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6560. break;
  6561. case "case":
  6562. _formdiv = new U.UF.UI.form(
  6563. "課程進展",
  6564. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6565. "id": "case",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //創建窗體
  6571. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "課程進展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6572. break;
  6573. case "snf":
  6574. _formdiv = new U.UF.UI.form(
  6575. "賽諾梵",
  6576. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6577. "id": "snf",
  6578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //創建窗體
  6583. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "賽諾梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6584. break;
  6585. case "hanFamily":
  6586. _formdiv = new U.UF.UI.form(
  6587. "漢字家族",
  6588. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6589. "id": "hanFamily",
  6590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //創建窗體
  6595. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "漢字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6596. break;
  6597. case "hanClassics":
  6598. _formdiv = new U.UF.UI.form(
  6599. "國學經典",
  6600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6601. "id": "hanClassics",
  6602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. closecallback: function () { }
  6606. }, { "style": { "height": "36px" } }).form; //創建窗體
  6607. _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); } }
  6608. break;
  6609. case "hanTraining":
  6610. _formdiv = new U.UF.UI.form(
  6611. "筆畫訓練",
  6612. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6613. "id": "hanTraining",
  6614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6615. "onresize": function () { }
  6616. }, {
  6617. closecallback: function () { }
  6618. }, { "style": { "height": "36px" } }).form; //創建窗體
  6619. _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); } }
  6620. break;
  6621. case "hanClass":
  6622. _formdiv = new U.UF.UI.form(
  6623. "書法課堂",
  6624. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6625. "id": "hanClass",
  6626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6627. "onresize": function () { }
  6628. }, {
  6629. closecallback: function () { }
  6630. }, { "style": { "height": "36px" } }).form; //創建窗體
  6631. _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); } }
  6632. break;
  6633. case "han":
  6634. _formdiv = new U.UF.UI.form(
  6635. "漢字宮",
  6636. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6637. "id": "han",
  6638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6639. "onresize": function () { }
  6640. }, {
  6641. closecallback: function () { }
  6642. }, { "style": { "height": "36px" } }).form; //創建窗體
  6643. _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); } }
  6644. break;
  6645. case "projectGM": //課程管理
  6646. _formdiv = new U.UF.UI.form(
  6647. "課程管理",
  6648. $$("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 }), {
  6649. "id": "projectGM",
  6650. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6651. "onresize": function () { }
  6652. }, {
  6653. closecallback: function () { }
  6654. }, { "style": { "height": "36px" } }).form; //創建窗體
  6655. _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); } }
  6656. break;
  6657. case "studyGM": //課程中心
  6658. _formdiv = new U.UF.UI.form(
  6659. "課程中心",
  6660. $$("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
  6661. "id": "study",
  6662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //創建窗體
  6667. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6668. break;
  6669. // studentGM
  6670. case "studentGM": //學生管理
  6671. _formdiv = new U.UF.UI.form(
  6672. "學生管理",
  6673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6674. "id": "studentGM",
  6675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //創建窗體
  6680. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "學生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6681. break;
  6682. case "evaluateGM": //學生評價
  6683. _formdiv = new U.UF.UI.form(
  6684. "學生評價",
  6685. $$("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 }), {
  6686. "id": "evaluateGM",
  6687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //創建窗體
  6692. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "學生評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6693. break;
  6694. // classGM
  6695. case "classGM": //班級管理
  6696. _formdiv = new U.UF.UI.form(
  6697. "班級管理",
  6698. $$("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 }), {
  6699. "id": "classGM",
  6700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //創建窗體
  6705. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班級管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6706. break;
  6707. // dataGM
  6708. case "dataGM":
  6709. _formdiv = new U.UF.UI.form(
  6710. "我的資料",
  6711. $$("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 }), {
  6712. "id": "dataGM",
  6713. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //創建窗體
  6718. _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); } }
  6719. break;
  6720. // caseGM
  6721. case "caseGM": //課程進展
  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/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6725. "id": "caseGM",
  6726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //創建窗體
  6731. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "課程進展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6732. break;
  6733. // meterialGM
  6734. case "meterialGM": //素材庫
  6735. _formdiv = new U.UF.UI.form(
  6736. "素材庫",
  6737. $$("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 }), {
  6738. "id": "meterialGM",
  6739. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6740. "onresize": function () { }
  6741. }, {
  6742. closecallback: function () { }
  6743. }, { "style": { "height": "36px" } }).form; //創建窗體
  6744. _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); } }
  6745. break;
  6746. // evaluateSGM
  6747. case "evaluateSGM": //我的評價
  6748. _formdiv = new U.UF.UI.form(
  6749. "我的評價",
  6750. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6751. "id": "evaluateSGM",
  6752. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6753. "onresize": function () { }
  6754. }, {
  6755. closecallback: function () { }
  6756. }, { "style": { "height": "36px" } }).form; //創建窗體
  6757. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6758. break;
  6759. case "jupyter": //jupyter
  6760. _formdiv = new U.UF.UI.form(
  6761. "jupyter",
  6762. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6763. "id": "jupyter",
  6764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6765. "onresize": function () { }
  6766. }, {
  6767. closecallback: function () { }
  6768. }, { "style": { "height": "36px" } }).form; //創建窗體
  6769. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6770. break;
  6771. case "number": //數字實驗室
  6772. _formdiv = new U.UF.UI.form(
  6773. "數字實驗室",
  6774. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6775. "id": "number",
  6776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6777. "onresize": function () { }
  6778. }, {
  6779. closecallback: function () { }
  6780. }, { "style": { "height": "36px" } }).form; //創建窗體
  6781. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "數字實驗室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6782. break;
  6783. case "studentCourse": //項目管理 學生
  6784. _formdiv = new U.UF.UI.form(
  6785. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6786. $$("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 }), {
  6787. "id": "studentCourse",
  6788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //創建窗體
  6793. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6794. break;
  6795. case "studentCourseS": //項目管理 老師
  6796. _formdiv = new U.UF.UI.form(
  6797. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6798. $$("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 }), {
  6799. "id": "studentCourseS",
  6800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6801. "onresize": function () { }
  6802. }, {
  6803. closecallback: function () { }
  6804. }, { "style": { "height": "36px" } }).form; //創建窗體
  6805. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "項目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6806. break;
  6807. case "studentIndex": //項目中心
  6808. _formdiv = new U.UF.UI.form(
  6809. "項目中心",
  6810. $$("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 }), {
  6811. "id": "studentIndex",
  6812. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6813. "onresize": function () { }
  6814. }, {
  6815. closecallback: function () { }
  6816. }, { "style": { "height": "36px" } }).form; //創建窗體
  6817. _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); } }
  6818. break;
  6819. case "CaseDesignS":
  6820. _formdiv = new U.UF.UI.form(
  6821. "項目進展",
  6822. $$("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 }), {
  6823. "id": "case",
  6824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6825. "onresize": function () { }
  6826. }, {
  6827. closecallback: function () { }
  6828. }, { "style": { "height": "36px" } }).form; //創建窗體
  6829. _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); } }
  6830. break;
  6831. case "tcStudent": //騰訊學生管理
  6832. _formdiv = new U.UF.UI.form(
  6833. "學生管理",
  6834. $$("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 }), {
  6835. "id": "tcStudent",
  6836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, { "style": { "height": "36px" } }).form; //創建窗體
  6841. _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); } }
  6842. break;
  6843. case "tcSchool": //騰訊學校管理
  6844. _formdiv = new U.UF.UI.form(
  6845. "學校管理",
  6846. $$("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 }), {
  6847. "id": "tcSchool",
  6848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6849. "onresize": function () { }
  6850. }, {
  6851. closecallback: function () { }
  6852. }, { "style": { "height": "36px" } }).form; //創建窗體
  6853. _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); } }
  6854. break;
  6855. case "tcTeacher": //騰訊學校管理
  6856. _formdiv = new U.UF.UI.form(
  6857. "教師管理",
  6858. $$("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 }), {
  6859. "id": "tcTeacher",
  6860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6861. "onresize": function () { }
  6862. }, {
  6863. closecallback: function () { }
  6864. }, { "style": { "height": "36px" } }).form; //創建窗體
  6865. _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); } }
  6866. break;
  6867. case "teacher":
  6868. _formdiv = new U.UF.UI.form(
  6869. "教師管理",
  6870. $$("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 }), {
  6871. "id": "teacher",
  6872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, { "style": { "height": "36px" } }).form; //創建窗體
  6877. _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); } }
  6878. break;
  6879. case "tcData": //騰訊我的資料
  6880. _formdiv = new U.UF.UI.form(
  6881. "我的資料",
  6882. $$("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 }), {
  6883. "id": "tcData",
  6884. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6885. "onresize": function () { }
  6886. }, {
  6887. closecallback: function () { }
  6888. }, { "style": { "height": "36px" } }).form; //創建窗體
  6889. _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); } }
  6890. break;
  6891. case "tcNotice": //騰訊消息通知
  6892. _formdiv = new U.UF.UI.form(
  6893. "消息通知",
  6894. $$("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 }), {
  6895. "id": "tcNotice",
  6896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6897. "onresize": function () { }
  6898. }, {
  6899. closecallback: function () { }
  6900. }, { "style": { "height": "36px" } }).form; //創建窗體
  6901. _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); } }
  6902. break;
  6903. case "myReport": //好友打開
  6904. _formdiv = new U.UF.UI.form(
  6905. "我的評價",
  6906. $$("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 }), {
  6907. "id": "myReport",
  6908. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6909. "onresize": function () { }
  6910. }, {
  6911. closecallback: function () { }
  6912. }, { "style": { "height": "36px" } }).form; //創建窗體
  6913. _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); } }
  6914. break;
  6915. case "learnAna": //好友打開
  6916. _formdiv = new U.UF.UI.form(
  6917. "學習分析",
  6918. $$("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 }), {
  6919. "id": "learnAna",
  6920. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6921. "onresize": function () { }
  6922. }, {
  6923. closecallback: function () { }
  6924. }, { "style": { "height": "36px" } }).form; //創建窗體
  6925. _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); } }
  6926. break;
  6927. case "AIChat": //AI共創
  6928. _formdiv = new U.UF.UI.form(
  6929. "AI共創",
  6930. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  6931. "id": "AIChat",
  6932. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6933. "onresize": function () { }
  6934. }, {
  6935. istop: true,
  6936. closecallback: function () { $("#aichat_icon").remove(); },
  6937. narrowcallback: function () {
  6938. if (!$("#aichat_icon")[0]) {
  6939. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6940. }
  6941. },
  6942. }, { "style": { "height": "36px" } }).form; //創建窗體
  6943. _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); } }
  6944. break;
  6945. case "ainew": //AI共創
  6946. _formdiv = new U.UF.UI.form(
  6947. "AI協同",
  6948. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  6949. "id": "ainew",
  6950. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6951. "onresize": function () { }
  6952. }, {
  6953. closecallback: function () { }
  6954. }, { "style": { "height": "36px" } }).form; //創建窗體
  6955. _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); } }
  6956. break;
  6957. case "gpt4": //gpt4
  6958. _formdiv = new U.UF.UI.form(
  6959. "AI助手",
  6960. $$("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 }), {
  6961. "id": "gpt4",
  6962. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6963. "onresize": function () { }
  6964. }, {
  6965. closecallback: function () { }
  6966. }, { "style": { "height": "36px" } }).form; //創建窗體
  6967. _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); } }
  6968. break;
  6969. case "aigpt": //gpt4
  6970. _formdiv = new U.UF.UI.form(
  6971. "AI助手+",
  6972. $$("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 }), {
  6973. "id": "aigpt",
  6974. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6975. "onresize": function () { }
  6976. }, {
  6977. closecallback: function () {
  6978. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6979. }
  6980. }, { "style": { "height": "36px" } }).form; //創建窗體
  6981. _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); } }
  6982. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6983. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6984. })
  6985. break;
  6986. case "aiKnowledge": //aiKnowledge
  6987. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  6988. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6989. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6990. }
  6991. _formdiv = new U.UF.UI.form(
  6992. "知識建構",
  6993. $$("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 }), {
  6994. "id": "aiKnowledge",
  6995. "style": { "width": "100%", "height": "100%", "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/aiKnowledge.png)" }, "name": "知識建構", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7001. break;
  7002. case "futureClass": //AI共創
  7003. _formdiv = new U.UF.UI.form(
  7004. "協同建構",
  7005. $$("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
  7006. "id": "synergyCourse",
  7007. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. closecallback: function () {
  7011. $("iframe", _formdiv)[0].contentWindow.loginout();
  7012. }
  7013. }, { "style": { "height": "36px" } }).form; //創建窗體
  7014. _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); } }
  7015. break;
  7016. case "aiagent": //ai agent
  7017. _formdiv = new U.UF.UI.form(
  7018. "AI Agent",
  7019. $$("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" }), {
  7020. "id": "AIAgent",
  7021. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7022. "onresize": function () { }
  7023. }, {
  7024. closecallback: function () { }
  7025. }, { "style": { "height": "36px" } }).form; //創建窗體
  7026. _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); } }
  7027. break;
  7028. case "dataBoard": //數據看板
  7029. _formdiv = new U.UF.UI.form(
  7030. "數據看板",
  7031. $$("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 }), {
  7032. "id": "dataBoard",
  7033. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7034. "onresize": function () { }
  7035. }, {
  7036. closecallback: function () { }
  7037. }, { "style": { "height": "36px" } }).form; //創建窗體
  7038. _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); } }
  7039. break;
  7040. case "dataBoardSies": //數據融合
  7041. _formdiv = new U.UF.UI.form(
  7042. "數據融合",
  7043. $$("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 }), {
  7044. "id": "dataBoardSies",
  7045. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7046. "onresize": function () { }
  7047. }, {
  7048. closecallback: function () { }
  7049. }, { "style": { "height": "36px" } }).form; //創建窗體
  7050. _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); } }
  7051. break;
  7052. case "dataBoardNew": //數據看板
  7053. _formdiv = new U.UF.UI.form(
  7054. "綜合看板",
  7055. $$("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 }), {
  7056. "id": "dataBoardNew",
  7057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7058. "onresize": function () { }
  7059. }, {
  7060. closecallback: function () { }
  7061. }, { "style": { "height": "36px" } }).form; //創建窗體
  7062. _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); } }
  7063. break;
  7064. case "dataBoardTest": //數據看板
  7065. _formdiv = new U.UF.UI.form(
  7066. "評測看板",
  7067. $$("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 }), {
  7068. "id": "dataBoardTest",
  7069. "style": { "width": "100%", "height": "100%", "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/dataBoardTest.png)" }, "name": "評測看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7075. break;
  7076. case "AIAnalyse": //AI共創
  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.hk/ai/" }), {
  7080. "id": "AIAnalyse",
  7081. "style": { "width": "100%", "height": "100%", "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/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7087. break;
  7088. case "studioCourse": //AI共創
  7089. _formdiv = new U.UF.UI.form(
  7090. "工作管理",
  7091. $$("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 }), {
  7092. "id": "studioCourse",
  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/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7099. break;
  7100. case "studioIndex": //AI共創
  7101. _formdiv = new U.UF.UI.form(
  7102. "工作中心",
  7103. $$("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 }), {
  7104. "id": "studioIndex",
  7105. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7106. "onresize": function () { }
  7107. }, {
  7108. closecallback: function () { }
  7109. }, { "style": { "height": "36px" } }).form; //創建窗體
  7110. _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); } }
  7111. break;
  7112. case "source":
  7113. _formdiv = new U.UF.UI.form(
  7114. "教學資源",
  7115. $$("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 }), {
  7116. "id": "source",
  7117. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7118. "onresize": function () { }
  7119. }, {
  7120. closecallback: function () { }
  7121. }, { "style": { "height": "36px" } }).form; //創建窗體
  7122. _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); } }
  7123. break;
  7124. case "testTeacher":
  7125. _formdiv = new U.UF.UI.form(
  7126. "智能表單",
  7127. $$("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 }), {
  7128. "id": "testTeacher",
  7129. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7130. "onresize": function () { }
  7131. }, {
  7132. closecallback: function () { }
  7133. }, { "style": { "height": "36px" } }).form; //創建窗體
  7134. _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); } }
  7135. break;
  7136. case "testStudent":
  7137. _formdiv = new U.UF.UI.form(
  7138. "教師中心",
  7139. $$("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 }), {
  7140. "id": "testStudent",
  7141. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7142. "onresize": function () { }
  7143. }, {
  7144. closecallback: function () { }
  7145. }, { "style": { "height": "36px" } }).form; //創建窗體
  7146. _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); } }
  7147. break;
  7148. case "testTeacherSies":
  7149. _formdiv = new U.UF.UI.form(
  7150. "教師管理",
  7151. $$("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 }), {
  7152. "id": "testTeacherSies",
  7153. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7154. "onresize": function () { }
  7155. }, {
  7156. closecallback: function () { }
  7157. }, { "style": { "height": "36px" } }).form; //創建窗體
  7158. _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); } }
  7159. break;
  7160. case "testStudentSies":
  7161. _formdiv = new U.UF.UI.form(
  7162. "教師中心",
  7163. $$("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 }), {
  7164. "id": "testStudentSies",
  7165. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7166. "onresize": function () { }
  7167. }, {
  7168. closecallback: function () { }
  7169. }, { "style": { "height": "36px" } }).form; //創建窗體
  7170. _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); } }
  7171. break;
  7172. case "ytpbl": //消息通知
  7173. _formdiv = new U.UF.UI.form(
  7174. "案例征集",
  7175. $$("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 }), {
  7176. "id": "ytpbl",
  7177. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7178. "onresize": function () { }
  7179. }, {
  7180. closecallback: function () { }
  7181. }, { "style": { "height": "36px" } }).form; //創建窗體
  7182. _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); } }
  7183. // 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");
  7184. break;
  7185. case "aiCourseResource": //人工智能窗體
  7186. _formdiv = new U.UF.UI.form(
  7187. false,
  7188. $$("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 }), {
  7189. "id": "aiCourseResource",
  7190. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7191. "onresize": function () { },
  7192. "isdrag": false,
  7193. }, {
  7194. closecallback: function () { }
  7195. }, { "style": { "height": "36px" } }).form; //創建窗體
  7196. _taskbar = ''
  7197. break;
  7198. case "szdjgCocooroboX": //圖形化編程
  7199. _formdiv = new U.UF.UI.form(
  7200. "圖形化編程",
  7201. $$("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" }), {
  7202. "id": "szdjgCocooroboX",
  7203. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7204. "onresize": function () { }
  7205. }, {
  7206. closecallback: function () { }
  7207. }, { "style": { "height": "36px" } }).form; //創建窗體
  7208. _taskbar = ''
  7209. break;
  7210. case "szdjgPython": //python編程
  7211. _formdiv = new U.UF.UI.form(
  7212. "Python編程",
  7213. $$("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" }), {
  7214. "id": "szdjgPython",
  7215. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7216. "onresize": function () { }
  7217. }, {
  7218. closecallback: function () { }
  7219. }, { "style": { "height": "36px" } }).form; //創建窗體
  7220. _taskbar = ''
  7221. break;
  7222. case "Record":
  7223. _formdiv = new U.UF.UI.form(
  7224. "觀察記錄",
  7225. $$("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 }), {
  7226. "id": "Record",
  7227. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7228. "onresize": function () { }
  7229. }, {
  7230. closecallback: function () { }
  7231. }, { "style": { "height": "36px" } }).form; //創建窗體
  7232. _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); } }
  7233. break;
  7234. case "aigptCourse":
  7235. _formdiv = new U.UF.UI.form(
  7236. "AI智能體",
  7237. $$("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' }), {
  7238. "id": "aigptCourse",
  7239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7240. "onresize": function () { }
  7241. }, {
  7242. closecallback: function () { }
  7243. }, { "style": { "height": "36px" } }).form; //創建窗體
  7244. _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); } }
  7245. break;
  7246. case "classroomObservation":
  7247. _formdiv = new U.UF.UI.form(
  7248. "課堂觀察",
  7249. $$("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 }), {
  7250. "id": "classroomObservation",
  7251. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7252. "onresize": function () { }
  7253. }, {
  7254. closecallback: function () { }
  7255. }, { "style": { "height": "36px" } }).form; //創建窗體
  7256. _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); } }
  7257. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7258. break;
  7259. case "pblCourse":
  7260. _formdiv = new U.UF.UI.form(
  7261. "學生PBL",
  7262. $$("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 }), {
  7263. "id": "pblCourse",
  7264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7265. "onresize": function () { }
  7266. }, {
  7267. closecallback: function () { }
  7268. }, { "style": { "height": "36px" } }).form; //創建窗體
  7269. _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); } }
  7270. break;
  7271. case "appStore":
  7272. _formdiv = new U.UF.UI.form(
  7273. "CocoFlow",
  7274. $$("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 }), {
  7275. "id": "appStore",
  7276. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7277. "onresize": function () { }
  7278. }, {
  7279. closecallback: function () { }
  7280. }, { "style": { "height": "36px" } }).form; //創建窗體
  7281. _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); } }
  7282. break;
  7283. case "sassPlatform":
  7284. _formdiv = new U.UF.UI.form(
  7285. "Sass通用後臺管理",
  7286. $$("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 }), {
  7287. "id": "sassPlatform",
  7288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7289. "onresize": function () { }
  7290. }, {
  7291. closecallback: function () { }
  7292. }, { "style": { "height": "36px" } }).form; //創建窗體
  7293. _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); } }
  7294. break;
  7295. case "EDU":
  7296. _formdiv = new U.UF.UI.form(
  7297. "EDU",
  7298. $$("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" }), {
  7299. "id": "EDU",
  7300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7301. "onresize": function () { }
  7302. }, {
  7303. closecallback: function () { }
  7304. }, { "style": { "height": "36px" } }).form; //創建窗體
  7305. _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); } }
  7306. break;
  7307. case "knowledge":
  7308. _formdiv = new U.UF.UI.form(
  7309. "知識庫",
  7310. $$("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 }), {
  7311. "id": "knowledge",
  7312. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7313. "onresize": function () { }
  7314. }, {
  7315. closecallback: function () { }
  7316. }, { "style": { "height": "36px" } }).form; //創建窗體
  7317. _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); } }
  7318. break;
  7319. case "userExamine":
  7320. _formdiv = new U.UF.UI.form(
  7321. "賬號申請",
  7322. $$("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" }), {
  7323. "id": "userExamine",
  7324. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7325. "onresize": function () { }
  7326. }, {
  7327. closecallback: function () { }
  7328. }, { "style": { "height": "36px" } }).form; //創建窗體
  7329. break;
  7330. }
  7331. //U.MD.D.I.openClick(str);
  7332. //如果有任務欄信息
  7333. if (_taskbar) {
  7334. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7335. }
  7336. if(iframeBool){
  7337. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7338. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7339. // console.log("iframe進入");
  7340. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7341. // };
  7342. setTimeout(() => {
  7343. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7344. }, 2000);
  7345. }
  7346. }
  7347. // U.MD.D.I.openClick = function(str){
  7348. // var click = '';
  7349. // switch(str){
  7350. // case 'friend':
  7351. // click = '我的好友';
  7352. // break;
  7353. // case 'domain':
  7354. // click = '域名管理';
  7355. // break;
  7356. // case 'disk':
  7357. // click = '我的雲盤';
  7358. // break;
  7359. // case 'word':
  7360. // click = 'Word';
  7361. // break;
  7362. // case 'excel':
  7363. // click = 'Execl';
  7364. // break;
  7365. // case 'txt':
  7366. // click = '文本文件';
  7367. // break;
  7368. // case 'lookupFriend':
  7369. // click = '查找好友';
  7370. // break;
  7371. // case 'ftp':
  7372. // click = 'FTP';
  7373. // break;
  7374. // case 'group':
  7375. // click = '群組';
  7376. // break;
  7377. // case 'set':
  7378. // click = '我的設置';
  7379. // break;
  7380. // case 'systemSet':
  7381. // click = '系統設置';
  7382. // break;
  7383. // case 'boomYun':
  7384. // click = '互聯辦公';
  7385. // break;
  7386. // case 'xz':
  7387. // click = '雲端下載';
  7388. // break;
  7389. // case 'client':
  7390. // click = '有思瀏覽器';
  7391. // break;
  7392. // case 'backEndProgramming':
  7393. // click = '在線後臺編程';
  7394. // break;
  7395. // case 'frontEndProgramming':
  7396. // click = '在線前端編程';
  7397. // break;
  7398. // default: break;
  7399. // }
  7400. // if(U.MD.D.I.Ip && click){
  7401. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7402. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7403. // })
  7404. // }
  7405. // }
  7406. /**
  7407. *函數作用:ajax簡易函數,使用post格式
  7408. *@param url {data} 後臺地址
  7409. *@param data {data} 參數json
  7410. *@param fn {data} 回調函數
  7411. *
  7412. */
  7413. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7414. // var xhr = new XMLHttpRequest();
  7415. // xhr.open("GET",url,true);
  7416. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7417. // xhr.onreadystatechange = function(){
  7418. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7419. // fn.call(this,xhr.responseText);
  7420. // }
  7421. // };
  7422. // xhr.send();
  7423. // }
  7424. /*判斷是否是內網IP*/
  7425. // U.MD.D.I.isInnerIPFn = function(str){
  7426. // var curPageUrl = str;
  7427. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7428. // curPageUrl =curPageUrl.replace(reg1,'');
  7429. // // console.log('curPageUrl-1 '+curPageUrl);
  7430. // var reg2 = /\:+/g;//替換冒號為一點
  7431. // curPageUrl =curPageUrl.replace(reg2,'.');
  7432. // // console.log('curPageUrl-2 '+curPageUrl);
  7433. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7434. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7435. // if(curPageUrl[2] != '16'){
  7436. // return ipAddress;
  7437. // }else{
  7438. // return false;
  7439. // }
  7440. // }
  7441. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7442. // //compatibility for firefox and chrome
  7443. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7444. // var pc = new myPeerConnection({
  7445. // iceServers: []
  7446. // }),
  7447. // noop = function() {},
  7448. // localIPs = {},
  7449. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7450. // key;
  7451. // function iterateIP(ip) {
  7452. // if (!localIPs[ip]) onNewIP(ip);
  7453. // localIPs[ip] = true;
  7454. // }
  7455. // //create a bogus data channel
  7456. // pc.createDataChannel("");
  7457. // // create offer and set local description
  7458. // pc.createOffer().then(function(sdp) {
  7459. // sdp.sdp.split('\n').forEach(function(line) {
  7460. // if (line.indexOf('candidate') < 0) return;
  7461. // line.match(ipRegex).forEach(iterateIP);
  7462. // });
  7463. // pc.setLocalDescription(sdp, noop, noop);
  7464. // }).catch(function(reason) {
  7465. // // An error occurred, so handle the failure to connect
  7466. // });
  7467. // //sten for candidate events
  7468. // pc.onicecandidate = function(ice) {
  7469. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7470. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7471. // };
  7472. // }
  7473. // U.MD.D.I.getUserIpBool = function(callback){
  7474. // U.MD.D.I.getUserIP(function(ip){
  7475. // alert("Got IP! :" + ip);
  7476. // });
  7477. //}
  7478. //#endregion
  7479. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7480. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7481. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7482. _userinfo = US.userInfo, //登錄用戶信息
  7483. _userid = US.userInfo.userid //登錄用戶id
  7484. let _iframe;
  7485. let _cid = cid,
  7486. _stage = stage,
  7487. _task = task,
  7488. _tool = tool;
  7489. var _jie = $$("div", {
  7490. "style": {
  7491. "position": "absolute",
  7492. "bottom": "50px",
  7493. "right": "50px",
  7494. "zIndex": "9999",
  7495. "backgroundColor": "#2268bc",
  7496. "color": "#fff",
  7497. "padding": "12px 20px",
  7498. "cursor": "pointer",
  7499. "borderRadius": "4px",
  7500. },
  7501. "innerHTML": "提交作業"
  7502. })
  7503. let aTool = ''
  7504. let _loading = document.createElement('div')
  7505. _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;"
  7506. // _loading.id = "";
  7507. let _lchild = document.createElement('div')
  7508. let _limg = document.createElement('img')
  7509. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7510. _limg.style = "width: 26px;margin-right: 10px;"
  7511. _lchild.appendChild(_limg)
  7512. let _lspan = document.createElement('span')
  7513. _lspan.innerHTML = "上傳中..."
  7514. _lchild.appendChild(_lspan)
  7515. _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%);"
  7516. _loading.appendChild(_lchild)
  7517. var _box = $$('div', {
  7518. "style": {
  7519. "position": "relative",
  7520. "width": "100%",
  7521. "height": "100%",
  7522. },
  7523. })
  7524. _box.appendChild(_loading)
  7525. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7526. switch (str) {
  7527. case "whiteboard":
  7528. aTool = 1;
  7529. _iframe = $$("iframe", {
  7530. "frameborder": "no",
  7531. "border": "0",
  7532. "scrolling ": "no",
  7533. "style": {
  7534. "cssText": "border:0;width:100%;height:100%"
  7535. },
  7536. "src": "https://iwb.cocorobo.hk/"
  7537. })
  7538. _box.appendChild(_iframe);
  7539. _box.appendChild(_jie);
  7540. _formdiv = new U.UF.UI.form(
  7541. "電子白板",
  7542. _box, {
  7543. "id": "whiteboard" + cid + stage + task + tool,
  7544. "style": {
  7545. "width": "90%",
  7546. "height": "90%",
  7547. "overflow": 'hidden'
  7548. },
  7549. "onresize": function () { }
  7550. }, {
  7551. closecallback: function () { }
  7552. }, {
  7553. "style": {
  7554. "height": "36px"
  7555. }
  7556. }).form; //創建窗體
  7557. _taskbar = {
  7558. "id": str + _formdiv.id,
  7559. "style": {
  7560. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7561. },
  7562. "name": "電子白板",
  7563. "forms": _formdiv,
  7564. "click": function () {
  7565. U.MD.D.I.openApplication(str, obj, info);
  7566. }
  7567. }
  7568. break;
  7569. case "mind":
  7570. aTool = 3;
  7571. _iframe = $$("iframe", {
  7572. "frameborder": "no",
  7573. "border": "0",
  7574. "scrolling ": "no",
  7575. "style": {
  7576. "cssText": "border:0;width:100%;height:100%"
  7577. },
  7578. "src": "/kityminder-editor/dist/index.html"
  7579. })
  7580. _box.appendChild(_iframe);
  7581. _box.appendChild(_jie);
  7582. _formdiv = new U.UF.UI.form(
  7583. "思維導圖",
  7584. _box, { //"/jsmind/example/demo.html"
  7585. "id": "mind" + cid + stage + task + tool,
  7586. "style": {
  7587. "width": "90%",
  7588. "height": "90%",
  7589. "overflow": 'hidden'
  7590. },
  7591. "onresize": function () { }
  7592. }, {
  7593. closecallback: function () { }
  7594. }, {
  7595. "style": {
  7596. "height": "36px"
  7597. }
  7598. }).form; //創建窗體
  7599. _taskbar = {
  7600. "id": str + _formdiv.id,
  7601. "style": {
  7602. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7603. },
  7604. "name": "思維導圖",
  7605. "forms": _formdiv,
  7606. "click": function () {
  7607. U.MD.D.I.openApplication(str, obj, info);
  7608. }
  7609. }
  7610. break;
  7611. case "MindMap":
  7612. aTool = 3;
  7613. _iframe = $$("iframe", {
  7614. "frameborder": "no",
  7615. "border": "0",
  7616. "scrolling ": "no",
  7617. "style": {
  7618. "cssText": "border:0;width:100%;height:100%"
  7619. },
  7620. "src": "//cloud.cocorobo.hk/mind/"
  7621. })
  7622. _box.appendChild(_iframe);
  7623. _box.appendChild(_jie);
  7624. _formdiv = new U.UF.UI.form(
  7625. "思維導圖",
  7626. _box, { //"/jsmind/example/demo.html"
  7627. "id": "mind" + cid + stage + task + tool,
  7628. "style": {
  7629. "width": "90%",
  7630. "height": "90%",
  7631. "overflow": 'hidden'
  7632. },
  7633. "onresize": function () { }
  7634. }, {
  7635. closecallback: function () { }
  7636. }, {
  7637. "style": {
  7638. "height": "36px"
  7639. }
  7640. }).form; //創建窗體
  7641. _taskbar = {
  7642. "id": str + _formdiv.id,
  7643. "style": {
  7644. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7645. },
  7646. "name": "思維導圖",
  7647. "forms": _formdiv,
  7648. "click": function () {
  7649. U.MD.D.I.openApplication(str, obj, info);
  7650. }
  7651. }
  7652. break;
  7653. case "doc":
  7654. aTool = 6;
  7655. _iframe = $$("iframe", {
  7656. "frameborder": "no",
  7657. "border": "0",
  7658. "scrolling ": "no",
  7659. "style": {
  7660. "cssText": "border:0;width:100%;height:100%"
  7661. },
  7662. "src": "/Office/Word/WordEditArea.htm"
  7663. })
  7664. _box.appendChild(_iframe);
  7665. _box.appendChild(_jie);
  7666. _formdiv = new U.UF.UI.form(
  7667. "協同文檔",
  7668. _box, {
  7669. "id": "doc" + cid + stage + task + tool,
  7670. "style": {
  7671. "width": "90%",
  7672. "height": "90%",
  7673. "overflow": 'hidden'
  7674. },
  7675. "onresize": function () { }
  7676. }, {
  7677. closecallback: function () { }
  7678. }, {
  7679. "style": {
  7680. "height": "36px"
  7681. }
  7682. }).form; //創建窗體
  7683. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7684. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7685. })
  7686. _taskbar = {
  7687. "id": str + _formdiv.id,
  7688. "style": {
  7689. "backgroundImage": "url(/img/icon/doc.png)"
  7690. },
  7691. "name": "協同文檔",
  7692. "forms": _formdiv,
  7693. "click": function () {
  7694. U.MD.D.I.openApplication(str, obj, info);
  7695. }
  7696. }
  7697. break;
  7698. case "mindNetwork": //好友打開
  7699. aTool = 7;
  7700. _iframe = $$("iframe", {
  7701. "webkitallowfullscreen": "",
  7702. "mozallowfullscreen": "",
  7703. "allowfullscreen": "",
  7704. "frameborder": "no",
  7705. "border": "0",
  7706. "scrolling ": "no",
  7707. "style": {
  7708. "cssText": "border:0; width:100%; height:100%;"
  7709. },
  7710. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7711. })
  7712. _box.appendChild(_iframe);
  7713. _box.appendChild(_jie);
  7714. _formdiv = new U.UF.UI.form(
  7715. "思維網格",
  7716. _box, {
  7717. "id": "mindNetwork" + cid + stage + task + tool,
  7718. "style": {
  7719. "width": "90%",
  7720. "height": "90%",
  7721. "overflow": 'hidden'
  7722. },
  7723. "onresize": function () { }
  7724. }, {
  7725. closecallback: function () { }
  7726. }, {
  7727. "style": {
  7728. "height": "36px"
  7729. }
  7730. }).form; //創建窗體
  7731. _taskbar = {
  7732. "id": str + _formdiv.id,
  7733. "style": {
  7734. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7735. },
  7736. "name": "思維網格",
  7737. "forms": _formdiv,
  7738. "click": function () {
  7739. U.MD.D.I.openApplication(str, obj, info);
  7740. }
  7741. }
  7742. break;
  7743. case "courseDesign":
  7744. _iframe = $$("iframe", {
  7745. "webkitallowfullscreen": "",
  7746. "mozallowfullscreen": "",
  7747. "allowfullscreen": "",
  7748. "frameborder": "no",
  7749. "border": "0",
  7750. "scrolling ": "no",
  7751. "style": {
  7752. "cssText": "border:0; width:100%; height:100%;"
  7753. },
  7754. "src": "/course-design-vue"
  7755. })
  7756. _box.appendChild(_iframe);
  7757. _box.appendChild(_jie);
  7758. _formdiv = new U.UF.UI.form(
  7759. "項目設計",
  7760. _box, {
  7761. "id": "courseDesign" + cid + stage + task + tool,
  7762. "style": {
  7763. "width": "90%",
  7764. "height": "90%",
  7765. "overflow": 'hidden'
  7766. },
  7767. "onresize": function () { }
  7768. }, {
  7769. closecallback: function () { }
  7770. }, {
  7771. "style": {
  7772. "height": "36px"
  7773. }
  7774. }).form; //創建窗體
  7775. _taskbar = {
  7776. "id": str + _formdiv.id,
  7777. "style": {
  7778. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7779. },
  7780. "name": "項目設計",
  7781. "forms": _formdiv,
  7782. "click": function () {
  7783. U.MD.D.I.openApplication(str, obj, info);
  7784. }
  7785. }
  7786. break;
  7787. }
  7788. const script1 = document.createElement("script");
  7789. script1.type = "text/javascript";
  7790. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7791. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7792. const script2 = document.createElement("script");
  7793. script2.type = "text/javascript";
  7794. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7795. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7796. const script3 = document.createElement("script");
  7797. script3.type = "text/javascript";
  7798. script3.charset = "UTF-8";
  7799. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7800. const script4 = document.createElement("script");
  7801. script4.type = "text/javascript";
  7802. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7803. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7804. if (_iframe) {
  7805. if (str == 'doc') {
  7806. _iframe = _formdiv.querySelector('iframe')
  7807. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7808. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7809. _iframe.contentWindow.document.body.appendChild(script1);
  7810. _iframe.contentWindow.document.body.appendChild(script2);
  7811. // _iframe.contentWindow.document.body.appendChild(script3);
  7812. _iframe.contentWindow.document.body.appendChild(script4);
  7813. })
  7814. if (onloadListener) {
  7815. _iframe.contentDocument.location.reload()
  7816. } else {
  7817. _iframe.contentDocument.location.reload()
  7818. }
  7819. } else if (str == 'courseDesign') {
  7820. U.UF.DL.iframeLoad(_iframe, function () {
  7821. // _iframe.contentWindow.U.MD.O.W.load();
  7822. // _iframe.contentWindow.document.body.appendChild(script1);
  7823. _iframe.contentWindow.document.body.appendChild(script2);
  7824. _iframe.contentWindow.document.body.appendChild(script4);
  7825. })
  7826. } else if (str == 'mind') {
  7827. _iframe = _formdiv.querySelector('iframe')
  7828. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7829. //
  7830. _iframe.contentWindow.document.body.appendChild(script1);
  7831. _iframe.contentWindow.document.body.appendChild(script2);
  7832. _iframe.contentWindow.document.body.appendChild(script4);
  7833. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7834. })
  7835. if (onloadListener) {
  7836. _iframe.contentDocument.location.reload()
  7837. } else {
  7838. _iframe.contentDocument.location.reload()
  7839. }
  7840. } else if (str == 'whiteboard') {
  7841. _iframe = _formdiv.querySelector('iframe')
  7842. let onloadListener = _iframe.onload = () => {
  7843. _iframe.contentWindow.document.body.appendChild(script1);
  7844. _iframe.contentWindow.document.body.appendChild(script2);
  7845. _iframe.contentWindow.document.body.appendChild(script4);
  7846. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7847. };
  7848. // if (onloadListener) {
  7849. // try {
  7850. // _iframe.src += "?cocorobo="+new Date().getTime()
  7851. // _iframe.contentWindow.document.location.reload()
  7852. // } catch (error) {
  7853. // }
  7854. // } else {
  7855. // _iframe.contentDocument.location.reload()
  7856. // }
  7857. } else {
  7858. _iframe.onload = () => {
  7859. _iframe.contentWindow.document.body.appendChild(script1);
  7860. _iframe.contentWindow.document.body.appendChild(script2);
  7861. // _iframe.contentWindow.document.body.appendChild(script3);
  7862. _iframe.contentWindow.document.body.appendChild(script4);
  7863. };
  7864. }
  7865. _jie.onclick = async () => {
  7866. let text = ''
  7867. if (aTool == 1) {
  7868. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7869. } else if (aTool == 6) {
  7870. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7871. } else if (aTool == 3) {
  7872. text = await U.MD.D.I.getEditorContent(_iframe);
  7873. }
  7874. _loading.style.display = 'flex'
  7875. console.log(_loading);
  7876. var _ajs = _iframe.contentWindow.document.createElement("script");
  7877. _ajs.type = "text/javascript";
  7878. _ajs.innerHTML =
  7879. // 'console.log(' + _loading + ');\n' +
  7880. 'var _js = document.createElement("script");\n' +
  7881. '_js.type="text/javascript";\n' +
  7882. '_js.charset="UTF-8";\n' +
  7883. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7884. "_js.onload = function(){\n" +
  7885. ' var a = document.getElementsByTagName("img")\n' +
  7886. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7887. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7888. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7889. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7890. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7891. "beforeUpload_shishi(file," +
  7892. "'" +
  7893. _userid +
  7894. "'" +
  7895. ", " +
  7896. "'" +
  7897. _cid +
  7898. "'" +
  7899. ", " +
  7900. "'" +
  7901. _stage +
  7902. "'" +
  7903. ", " +
  7904. "'" +
  7905. _task +
  7906. "'" +
  7907. ", " +
  7908. "'" +
  7909. _tool +
  7910. "'" +
  7911. ", " +
  7912. "'" +
  7913. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7914. "'" +
  7915. ", " +
  7916. "'" +
  7917. aTool +
  7918. "'" +
  7919. ", " +
  7920. "`" +
  7921. text +
  7922. "`" +
  7923. ")\n" +
  7924. " });\n" +
  7925. "}\n" +
  7926. "document.head.appendChild(_js);\n";
  7927. _iframe.contentWindow.document.head.appendChild(_ajs);
  7928. }
  7929. }
  7930. //U.MD.D.I.openClick(str);
  7931. //如果有任務欄信息
  7932. // if (_taskbar) {
  7933. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7934. // }
  7935. }
  7936. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7937. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7938. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7939. _userinfo = US.userInfo, //登錄用戶信息
  7940. _userid = US.userInfo.userid //登錄用戶id
  7941. let _iframe;
  7942. let _cid = cid,
  7943. _stage = stage,
  7944. _task = task,
  7945. _tool = tool;
  7946. var _jie = $$("div", {
  7947. "style": {
  7948. "position": "absolute",
  7949. "bottom": "50px",
  7950. "right": "50px",
  7951. "zIndex": "9999",
  7952. "backgroundColor": "#2268bc",
  7953. "color": "#fff",
  7954. "padding": "12px 20px",
  7955. "cursor": "pointer",
  7956. "borderRadius": "4px",
  7957. },
  7958. "innerHTML": "提交作業"
  7959. })
  7960. let aTool = ''
  7961. let _loading = document.createElement('div')
  7962. _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;"
  7963. // _loading.id = "";
  7964. let _lchild = document.createElement('div')
  7965. let _limg = document.createElement('img')
  7966. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7967. _limg.style = "width: 26px;margin-right: 10px;"
  7968. _lchild.appendChild(_limg)
  7969. let _lspan = document.createElement('span')
  7970. _lspan.innerHTML = "上傳中..."
  7971. _lchild.appendChild(_lspan)
  7972. _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%);"
  7973. _loading.appendChild(_lchild)
  7974. let _box = $$('div', {
  7975. "style": {
  7976. "position": "relative",
  7977. "width": "100%",
  7978. "height": "100%",
  7979. },
  7980. })
  7981. _box.appendChild(_loading)
  7982. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7983. switch (str) {
  7984. case "whiteboard":
  7985. aTool = 1;
  7986. _iframe = $$("iframe", {
  7987. "frameborder": "no",
  7988. "border": "0",
  7989. "scrolling ": "no",
  7990. "style": {
  7991. "cssText": "border:0;width:100%;height:100%"
  7992. },
  7993. "src": "https://iwb.cocorobo.hk/"
  7994. })
  7995. _box.appendChild(_iframe);
  7996. _box.appendChild(_jie);
  7997. _formdiv = new U.UF.UI.form(
  7998. "電子白板",
  7999. _box, {
  8000. "id": "whiteboard" + cid + stage + task + tool,
  8001. "style": {
  8002. "width": "90%",
  8003. "height": "90%",
  8004. "overflow": 'hidden'
  8005. },
  8006. "onresize": function () { }
  8007. }, {
  8008. closecallback: function () { }
  8009. }, {
  8010. "style": {
  8011. "height": "36px"
  8012. }
  8013. }).form; //創建窗體
  8014. _taskbar = {
  8015. "id": str + _formdiv.id,
  8016. "style": {
  8017. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8018. },
  8019. "name": "電子白板",
  8020. "forms": _formdiv,
  8021. "click": function () {
  8022. U.MD.D.I.openApplication(str, obj, info);
  8023. }
  8024. }
  8025. break;
  8026. case "mind":
  8027. aTool = 3;
  8028. _iframe = $$("iframe", {
  8029. "frameborder": "no",
  8030. "border": "0",
  8031. "scrolling ": "no",
  8032. "style": {
  8033. "cssText": "border:0;width:100%;height:100%"
  8034. },
  8035. "src": "/kityminder-editor/dist/index.html"
  8036. })
  8037. _box.appendChild(_iframe);
  8038. _box.appendChild(_jie);
  8039. _formdiv = new U.UF.UI.form(
  8040. "思維導圖",
  8041. _box, { //"/jsmind/example/demo.html"
  8042. "id": "mind" + cid + stage + task + tool,
  8043. "style": {
  8044. "width": "90%",
  8045. "height": "90%",
  8046. "overflow": 'hidden'
  8047. },
  8048. "onresize": function () { }
  8049. }, {
  8050. closecallback: function () { }
  8051. }, {
  8052. "style": {
  8053. "height": "36px"
  8054. }
  8055. }).form; //創建窗體
  8056. _taskbar = {
  8057. "id": str + _formdiv.id,
  8058. "style": {
  8059. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8060. },
  8061. "name": "思維導圖",
  8062. "forms": _formdiv,
  8063. "click": function () {
  8064. U.MD.D.I.openApplication(str, obj, info);
  8065. }
  8066. }
  8067. break;
  8068. case "MindMap":
  8069. aTool = 3;
  8070. _iframe = $$("iframe", {
  8071. "frameborder": "no",
  8072. "border": "0",
  8073. "scrolling ": "no",
  8074. "style": {
  8075. "cssText": "border:0;width:100%;height:100%"
  8076. },
  8077. "src": "//cloud.cocorobo.hk/mind/"
  8078. })
  8079. _box.appendChild(_iframe);
  8080. _box.appendChild(_jie);
  8081. _formdiv = new U.UF.UI.form(
  8082. "思維導圖",
  8083. _box, { //"/jsmind/example/demo.html"
  8084. "id": "mind" + cid + stage + task + tool,
  8085. "style": {
  8086. "width": "90%",
  8087. "height": "90%",
  8088. "overflow": 'hidden'
  8089. },
  8090. "onresize": function () { }
  8091. }, {
  8092. closecallback: function () { }
  8093. }, {
  8094. "style": {
  8095. "height": "36px"
  8096. }
  8097. }).form; //創建窗體
  8098. _taskbar = {
  8099. "id": str + _formdiv.id,
  8100. "style": {
  8101. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8102. },
  8103. "name": "思維導圖",
  8104. "forms": _formdiv,
  8105. "click": function () {
  8106. U.MD.D.I.openApplication(str, obj, info);
  8107. }
  8108. }
  8109. break;
  8110. case "doc":
  8111. aTool = 6;
  8112. _iframe = $$("iframe", {
  8113. "frameborder": "no",
  8114. "border": "0",
  8115. "scrolling ": "no",
  8116. "style": {
  8117. "cssText": "border:0;width:100%;height:100%"
  8118. },
  8119. "src": "/Office/Word/WordEditArea.htm"
  8120. })
  8121. _box.appendChild(_iframe);
  8122. _box.appendChild(_jie);
  8123. _formdiv = new U.UF.UI.form(
  8124. "協同文檔",
  8125. _box, {
  8126. "id": "doc" + cid + stage + task + tool,
  8127. "style": {
  8128. "width": "90%",
  8129. "height": "90%",
  8130. "overflow": 'hidden'
  8131. },
  8132. "onresize": function () { }
  8133. }, {
  8134. closecallback: function () { }
  8135. }, {
  8136. "style": {
  8137. "height": "36px"
  8138. }
  8139. }).form; //創建窗體
  8140. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8141. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8142. })
  8143. _taskbar = {
  8144. "id": str + _formdiv.id,
  8145. "style": {
  8146. "backgroundImage": "url(/img/icon/doc.png)"
  8147. },
  8148. "name": "協同文檔",
  8149. "forms": _formdiv,
  8150. "click": function () {
  8151. U.MD.D.I.openApplication(str, obj, info);
  8152. }
  8153. }
  8154. break;
  8155. case "mindNetwork": //好友打開
  8156. aTool = 7;
  8157. _iframe = $$("iframe", {
  8158. "webkitallowfullscreen": "",
  8159. "mozallowfullscreen": "",
  8160. "allowfullscreen": "",
  8161. "frameborder": "no",
  8162. "border": "0",
  8163. "scrolling ": "no",
  8164. "style": {
  8165. "cssText": "border:0; width:100%; height:100%;"
  8166. },
  8167. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8168. })
  8169. _box.appendChild(_iframe);
  8170. _box.appendChild(_jie);
  8171. _formdiv = new U.UF.UI.form(
  8172. "思維網格",
  8173. _box, {
  8174. "id": "mindNetwork" + cid + stage + task + tool,
  8175. "style": {
  8176. "width": "90%",
  8177. "height": "90%",
  8178. "overflow": 'hidden'
  8179. },
  8180. "onresize": function () { }
  8181. }, {
  8182. closecallback: function () { }
  8183. }, {
  8184. "style": {
  8185. "height": "36px"
  8186. }
  8187. }).form; //創建窗體
  8188. _taskbar = {
  8189. "id": str + _formdiv.id,
  8190. "style": {
  8191. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8192. },
  8193. "name": "思維網格",
  8194. "forms": _formdiv,
  8195. "click": function () {
  8196. U.MD.D.I.openApplication(str, obj, info);
  8197. }
  8198. }
  8199. break;
  8200. case "courseDesign":
  8201. _iframe = $$("iframe", {
  8202. "webkitallowfullscreen": "",
  8203. "mozallowfullscreen": "",
  8204. "allowfullscreen": "",
  8205. "frameborder": "no",
  8206. "border": "0",
  8207. "scrolling ": "no",
  8208. "style": {
  8209. "cssText": "border:0; width:100%; height:100%;"
  8210. },
  8211. "src": "/course-design-vue"
  8212. })
  8213. _box.appendChild(_iframe);
  8214. _box.appendChild(_jie);
  8215. _formdiv = new U.UF.UI.form(
  8216. "項目設計",
  8217. _box, {
  8218. "id": "courseDesign" + cid + stage + task + tool,
  8219. "style": {
  8220. "width": "90%",
  8221. "height": "90%",
  8222. "overflow": 'hidden'
  8223. },
  8224. "onresize": function () { }
  8225. }, {
  8226. closecallback: function () { }
  8227. }, {
  8228. "style": {
  8229. "height": "36px"
  8230. }
  8231. }).form; //創建窗體
  8232. _taskbar = {
  8233. "id": str + _formdiv.id,
  8234. "style": {
  8235. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8236. },
  8237. "name": "項目設計",
  8238. "forms": _formdiv,
  8239. "click": function () {
  8240. U.MD.D.I.openApplication(str, obj, info);
  8241. }
  8242. }
  8243. break;
  8244. }
  8245. const script1 = document.createElement("script");
  8246. script1.type = "text/javascript";
  8247. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8248. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8249. const script2 = document.createElement("script");
  8250. script2.type = "text/javascript";
  8251. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8252. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8253. const script3 = document.createElement("script");
  8254. script3.type = "text/javascript";
  8255. script3.charset = "UTF-8";
  8256. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8257. const script4 = document.createElement("script");
  8258. script4.type = "text/javascript";
  8259. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8260. script4.src = window.origin + "/js/Common/jietu2E.js";
  8261. if (_iframe) {
  8262. if (str == 'doc') {
  8263. _iframe = _formdiv.querySelector('iframe')
  8264. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8265. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8266. _iframe.contentWindow.document.body.appendChild(script1);
  8267. _iframe.contentWindow.document.body.appendChild(script2);
  8268. // _iframe.contentWindow.document.body.appendChild(script3);
  8269. _iframe.contentWindow.document.body.appendChild(script4);
  8270. })
  8271. if (onloadListener) {
  8272. _iframe.contentDocument.location.reload()
  8273. } else {
  8274. _iframe.contentDocument.location.reload()
  8275. }
  8276. } else if (str == 'courseDesign') {
  8277. U.UF.DL.iframeLoad(_iframe, function () {
  8278. // _iframe.contentWindow.U.MD.O.W.load();
  8279. // _iframe.contentWindow.document.body.appendChild(script1);
  8280. _iframe.contentWindow.document.body.appendChild(script2);
  8281. _iframe.contentWindow.document.body.appendChild(script4);
  8282. })
  8283. } else if (str == 'mind') {
  8284. _iframe = _formdiv.querySelector('iframe')
  8285. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8286. //
  8287. _iframe.contentWindow.document.body.appendChild(script1);
  8288. _iframe.contentWindow.document.body.appendChild(script2);
  8289. _iframe.contentWindow.document.body.appendChild(script4);
  8290. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8291. })
  8292. if (onloadListener) {
  8293. _iframe.contentDocument.location.reload()
  8294. } else {
  8295. _iframe.contentDocument.location.reload()
  8296. }
  8297. } else if (str == 'whiteboard') {
  8298. _iframe = _formdiv.querySelector('iframe')
  8299. let onloadListener = _iframe.onload = () => {
  8300. _iframe.contentWindow.document.body.appendChild(script1);
  8301. _iframe.contentWindow.document.body.appendChild(script2);
  8302. _iframe.contentWindow.document.body.appendChild(script4);
  8303. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8304. };
  8305. // if (onloadListener) {
  8306. // try {
  8307. // _iframe.src += "?cocorobo="+new Date().getTime()
  8308. // _iframe.contentWindow.document.location.reload()
  8309. // } catch (error) {
  8310. // }
  8311. // } else {
  8312. // _iframe.contentDocument.location.reload()
  8313. // }
  8314. } else {
  8315. _iframe.onload = () => {
  8316. _iframe.contentWindow.document.body.appendChild(script1);
  8317. _iframe.contentWindow.document.body.appendChild(script2);
  8318. // _iframe.contentWindow.document.body.appendChild(script3);
  8319. _iframe.contentWindow.document.body.appendChild(script4);
  8320. };
  8321. }
  8322. _jie.onclick = async () => {
  8323. let text = ''
  8324. if (aTool == 1) {
  8325. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8326. } else if (aTool == 6) {
  8327. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8328. } else if (aTool == 3) {
  8329. text = await U.MD.D.I.getEditorContent(_iframe);
  8330. }
  8331. _loading.style.display = 'flex'
  8332. console.log(_loading);
  8333. var _ajs = _iframe.contentWindow.document.createElement("script");
  8334. _ajs.type = "text/javascript";
  8335. _ajs.innerHTML =
  8336. // 'console.log(' + _loading + ');\n' +
  8337. 'var _js = document.createElement("script");\n' +
  8338. '_js.type="text/javascript";\n' +
  8339. '_js.charset="UTF-8";\n' +
  8340. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8341. "_js.onload = function(){\n" +
  8342. ' var a = document.getElementsByTagName("img")\n' +
  8343. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8344. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8345. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8346. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8347. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8348. "beforeUpload_shishi(file," +
  8349. "'" +
  8350. _userid +
  8351. "'" +
  8352. ", " +
  8353. "'" +
  8354. _cid +
  8355. "'" +
  8356. ", " +
  8357. "'" +
  8358. _stage +
  8359. "'" +
  8360. ", " +
  8361. "'" +
  8362. _task +
  8363. "'" +
  8364. ", " +
  8365. "'" +
  8366. _tool +
  8367. "'" +
  8368. ", " +
  8369. "'" +
  8370. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8371. "'" +
  8372. ", " +
  8373. "'" +
  8374. aTool +
  8375. "'" +
  8376. ", " +
  8377. "`" +
  8378. text +
  8379. "`" +
  8380. ")\n" +
  8381. " });\n" +
  8382. "}\n" +
  8383. "document.head.appendChild(_js);\n";
  8384. _iframe.contentWindow.document.head.appendChild(_ajs);
  8385. }
  8386. }
  8387. //U.MD.D.I.openClick(str);
  8388. //如果有任務欄信息
  8389. // if (_taskbar) {
  8390. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8391. // }
  8392. }
  8393. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8394. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8395. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8396. _userid = student.userid, //登錄用戶id
  8397. _username = student.student //用戶名字
  8398. let _iframe;
  8399. let _cid = cid,
  8400. _stage = stage,
  8401. _task = task,
  8402. _tool = tool;
  8403. var _jie = $$("div", {
  8404. "style": {
  8405. "position": "absolute",
  8406. "bottom": "50px",
  8407. "right": "50px",
  8408. "zIndex": "9999",
  8409. "backgroundColor": "#2268bc",
  8410. "color": "#fff",
  8411. "padding": "12px 20px",
  8412. "cursor": "pointer",
  8413. "borderRadius": "4px",
  8414. },
  8415. "innerHTML": "提交作業"
  8416. })
  8417. let aTool = ''
  8418. let _loading = document.createElement('div')
  8419. _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;"
  8420. // _loading.id = "";
  8421. let _lchild = document.createElement('div')
  8422. let _limg = document.createElement('img')
  8423. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8424. _limg.style = "width: 26px;margin-right: 10px;"
  8425. _lchild.appendChild(_limg)
  8426. let _lspan = document.createElement('span')
  8427. _lspan.innerHTML = "上傳中..."
  8428. _lchild.appendChild(_lspan)
  8429. _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%);"
  8430. _loading.appendChild(_lchild)
  8431. var _box = $$('div', {
  8432. "style": {
  8433. "position": "relative",
  8434. "width": "100%",
  8435. "height": "100%",
  8436. },
  8437. })
  8438. _box.appendChild(_loading)
  8439. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8440. switch (str) {
  8441. case "whiteboard":
  8442. aTool = 1;
  8443. _iframe = $$("iframe", {
  8444. "frameborder": "no",
  8445. "border": "0",
  8446. "scrolling ": "no",
  8447. "style": {
  8448. "cssText": "border:0;width:100%;height:100%"
  8449. },
  8450. "src": "https://iwb.cocorobo.hk/"
  8451. })
  8452. _box.appendChild(_iframe);
  8453. _box.appendChild(_jie);
  8454. _formdiv = new U.UF.UI.form(
  8455. "電子白板-" + _username,
  8456. _box, {
  8457. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8458. "style": {
  8459. "width": "90%",
  8460. "height": "90%",
  8461. "overflow": 'hidden'
  8462. },
  8463. "onresize": function () { }
  8464. }, {
  8465. closecallback: function () { }
  8466. }, {
  8467. "style": {
  8468. "height": "36px"
  8469. }
  8470. }).form; //創建窗體
  8471. _taskbar = {
  8472. "id": str + _formdiv.id,
  8473. "style": {
  8474. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8475. },
  8476. "name": "電子白板",
  8477. "forms": _formdiv,
  8478. "click": function () {
  8479. U.MD.D.I.openApplication(str, obj, info);
  8480. }
  8481. }
  8482. break;
  8483. case "mind":
  8484. aTool = 3;
  8485. _iframe = $$("iframe", {
  8486. "frameborder": "no",
  8487. "border": "0",
  8488. "scrolling ": "no",
  8489. "style": {
  8490. "cssText": "border:0;width:100%;height:100%"
  8491. },
  8492. "src": "/kityminder-editor/dist/index.html"
  8493. })
  8494. _box.appendChild(_iframe);
  8495. _box.appendChild(_jie);
  8496. _formdiv = new U.UF.UI.form(
  8497. "思維導圖-" + _username,
  8498. _box, { //"/jsmind/example/demo.html"
  8499. "id": "mind" + cid + stage + task + tool + _userid,
  8500. "style": {
  8501. "width": "90%",
  8502. "height": "90%",
  8503. "overflow": 'hidden'
  8504. },
  8505. "onresize": function () { }
  8506. }, {
  8507. closecallback: function () { }
  8508. }, {
  8509. "style": {
  8510. "height": "36px"
  8511. }
  8512. }).form; //創建窗體
  8513. _taskbar = {
  8514. "id": str + _formdiv.id,
  8515. "style": {
  8516. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8517. },
  8518. "name": "思維導圖",
  8519. "forms": _formdiv,
  8520. "click": function () {
  8521. U.MD.D.I.openApplication(str, obj, info);
  8522. }
  8523. }
  8524. break;
  8525. case "MindMap":
  8526. aTool = 3;
  8527. _iframe = $$("iframe", {
  8528. "frameborder": "no",
  8529. "border": "0",
  8530. "scrolling ": "no",
  8531. "style": {
  8532. "cssText": "border:0;width:100%;height:100%"
  8533. },
  8534. "src": "//cloud.cocorobo.hk/mind/"
  8535. })
  8536. _box.appendChild(_iframe);
  8537. _box.appendChild(_jie);
  8538. _formdiv = new U.UF.UI.form(
  8539. "思維導圖-" + _username,
  8540. _box, { //"/jsmind/example/demo.html"
  8541. "id": "mind" + cid + stage + task + tool + _userid,
  8542. "style": {
  8543. "width": "90%",
  8544. "height": "90%",
  8545. "overflow": 'hidden'
  8546. },
  8547. "onresize": function () { }
  8548. }, {
  8549. closecallback: function () { }
  8550. }, {
  8551. "style": {
  8552. "height": "36px"
  8553. }
  8554. }).form; //創建窗體
  8555. _taskbar = {
  8556. "id": str + _formdiv.id,
  8557. "style": {
  8558. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8559. },
  8560. "name": "思維導圖",
  8561. "forms": _formdiv,
  8562. "click": function () {
  8563. U.MD.D.I.openApplication(str, obj, info);
  8564. }
  8565. }
  8566. break;
  8567. case "doc":
  8568. aTool = 6;
  8569. _iframe = $$("iframe", {
  8570. "frameborder": "no",
  8571. "border": "0",
  8572. "scrolling ": "no",
  8573. "style": {
  8574. "cssText": "border:0;width:100%;height:100%"
  8575. },
  8576. "src": "/Office/Word/WordEditArea.htm"
  8577. })
  8578. _box.appendChild(_iframe);
  8579. _box.appendChild(_jie);
  8580. _formdiv = new U.UF.UI.form(
  8581. "協同文檔-" + _username,
  8582. _box, {
  8583. "id": "doc" + cid + stage + task + tool + _userid,
  8584. "style": {
  8585. "width": "90%",
  8586. "height": "90%",
  8587. "overflow": 'hidden'
  8588. },
  8589. "onresize": function () { }
  8590. }, {
  8591. closecallback: function () { }
  8592. }, {
  8593. "style": {
  8594. "height": "36px"
  8595. }
  8596. }).form; //創建窗體
  8597. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8598. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8599. })
  8600. _taskbar = {
  8601. "id": str + _formdiv.id,
  8602. "style": {
  8603. "backgroundImage": "url(/img/icon/doc.png)"
  8604. },
  8605. "name": "協同文檔",
  8606. "forms": _formdiv,
  8607. "click": function () {
  8608. U.MD.D.I.openApplication(str, obj, info);
  8609. }
  8610. }
  8611. break;
  8612. case "mindNetwork": //好友打開
  8613. aTool = 7;
  8614. _iframe = $$("iframe", {
  8615. "webkitallowfullscreen": "",
  8616. "mozallowfullscreen": "",
  8617. "allowfullscreen": "",
  8618. "frameborder": "no",
  8619. "border": "0",
  8620. "scrolling ": "no",
  8621. "style": {
  8622. "cssText": "border:0; width:100%; height:100%;"
  8623. },
  8624. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8625. })
  8626. _box.appendChild(_iframe);
  8627. _box.appendChild(_jie);
  8628. _formdiv = new U.UF.UI.form(
  8629. "思維網格-" + _username,
  8630. _box, {
  8631. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8632. "style": {
  8633. "width": "90%",
  8634. "height": "90%",
  8635. "overflow": 'hidden'
  8636. },
  8637. "onresize": function () { }
  8638. }, {
  8639. closecallback: function () { }
  8640. }, {
  8641. "style": {
  8642. "height": "36px"
  8643. }
  8644. }).form; //創建窗體
  8645. _taskbar = {
  8646. "id": str + _formdiv.id,
  8647. "style": {
  8648. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8649. },
  8650. "name": "思維網格",
  8651. "forms": _formdiv,
  8652. "click": function () {
  8653. U.MD.D.I.openApplication(str, obj, info);
  8654. }
  8655. }
  8656. break;
  8657. case "courseDesign":
  8658. _iframe = $$("iframe", {
  8659. "webkitallowfullscreen": "",
  8660. "mozallowfullscreen": "",
  8661. "allowfullscreen": "",
  8662. "frameborder": "no",
  8663. "border": "0",
  8664. "scrolling ": "no",
  8665. "style": {
  8666. "cssText": "border:0; width:100%; height:100%;"
  8667. },
  8668. "src": "/course-design-vue"
  8669. })
  8670. _box.appendChild(_iframe);
  8671. _box.appendChild(_jie);
  8672. _formdiv = new U.UF.UI.form(
  8673. "項目設計-" + _username,
  8674. _box, {
  8675. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8676. "style": {
  8677. "width": "90%",
  8678. "height": "90%",
  8679. "overflow": 'hidden'
  8680. },
  8681. "onresize": function () { }
  8682. }, {
  8683. closecallback: function () { }
  8684. }, {
  8685. "style": {
  8686. "height": "36px"
  8687. }
  8688. }).form; //創建窗體
  8689. _taskbar = {
  8690. "id": str + _formdiv.id,
  8691. "style": {
  8692. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8693. },
  8694. "name": "項目設計",
  8695. "forms": _formdiv,
  8696. "click": function () {
  8697. U.MD.D.I.openApplication(str, obj, info);
  8698. }
  8699. }
  8700. break;
  8701. }
  8702. const script1 = document.createElement("script");
  8703. script1.type = "text/javascript";
  8704. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8705. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8706. const script2 = document.createElement("script");
  8707. script2.type = "text/javascript";
  8708. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8709. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8710. const script3 = document.createElement("script");
  8711. script3.type = "text/javascript";
  8712. script3.charset = "UTF-8";
  8713. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8714. const script4 = document.createElement("script");
  8715. script4.type = "text/javascript";
  8716. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8717. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8718. if (_iframe) {
  8719. if (str == 'doc') {
  8720. _iframe = _formdiv.querySelector('iframe')
  8721. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8722. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8723. _iframe.contentWindow.document.body.appendChild(script1);
  8724. _iframe.contentWindow.document.body.appendChild(script2);
  8725. // _iframe.contentWindow.document.body.appendChild(script3);
  8726. _iframe.contentWindow.document.body.appendChild(script4);
  8727. })
  8728. if (onloadListener) {
  8729. _iframe.contentDocument.location.reload()
  8730. } else {
  8731. _iframe.contentDocument.location.reload()
  8732. }
  8733. } else if (str == 'courseDesign') {
  8734. U.UF.DL.iframeLoad(_iframe, function () {
  8735. // _iframe.contentWindow.U.MD.O.W.load();
  8736. // _iframe.contentWindow.document.body.appendChild(script1);
  8737. _iframe.contentWindow.document.body.appendChild(script2);
  8738. _iframe.contentWindow.document.body.appendChild(script4);
  8739. })
  8740. } else if (str == 'mind') {
  8741. _iframe = _formdiv.querySelector('iframe')
  8742. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8743. //
  8744. _iframe.contentWindow.document.body.appendChild(script1);
  8745. _iframe.contentWindow.document.body.appendChild(script2);
  8746. _iframe.contentWindow.document.body.appendChild(script4);
  8747. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8748. })
  8749. if (onloadListener) {
  8750. _iframe.contentDocument.location.reload()
  8751. } else {
  8752. _iframe.contentDocument.location.reload()
  8753. }
  8754. } else if (str == 'whiteboard') {
  8755. _iframe = _formdiv.querySelector('iframe')
  8756. let onloadListener = _iframe.onload = () => {
  8757. _iframe.contentWindow.document.body.appendChild(script1);
  8758. _iframe.contentWindow.document.body.appendChild(script2);
  8759. _iframe.contentWindow.document.body.appendChild(script4);
  8760. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8761. };
  8762. // if (onloadListener) {
  8763. // try {
  8764. // _iframe.src += "?cocorobo="+new Date().getTime()
  8765. // _iframe.contentWindow.document.location.reload()
  8766. // } catch (error) {
  8767. // }
  8768. // } else {
  8769. // _iframe.contentDocument.location.reload()
  8770. // }
  8771. } else {
  8772. _iframe.onload = () => {
  8773. _iframe.contentWindow.document.body.appendChild(script1);
  8774. _iframe.contentWindow.document.body.appendChild(script2);
  8775. // _iframe.contentWindow.document.body.appendChild(script3);
  8776. _iframe.contentWindow.document.body.appendChild(script4);
  8777. };
  8778. }
  8779. _jie.onclick = async () => {
  8780. let text = ''
  8781. if (aTool == 1) {
  8782. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8783. } else if (aTool == 6) {
  8784. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8785. } else if (aTool == 3) {
  8786. text = await U.MD.D.I.getEditorContent(_iframe);
  8787. }
  8788. _loading.style.display = 'flex'
  8789. console.log(_loading);
  8790. var _ajs = _iframe.contentWindow.document.createElement("script");
  8791. _ajs.type = "text/javascript";
  8792. _ajs.innerHTML =
  8793. // 'console.log(' + _loading + ');\n' +
  8794. 'var _js = document.createElement("script");\n' +
  8795. '_js.type="text/javascript";\n' +
  8796. '_js.charset="UTF-8";\n' +
  8797. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8798. "_js.onload = function(){\n" +
  8799. ' var a = document.getElementsByTagName("img")\n' +
  8800. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8801. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8802. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8803. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8804. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8805. "beforeUpload_shishi(file," +
  8806. "'" +
  8807. _userid +
  8808. "'" +
  8809. ", " +
  8810. "'" +
  8811. _cid +
  8812. "'" +
  8813. ", " +
  8814. "'" +
  8815. _stage +
  8816. "'" +
  8817. ", " +
  8818. "'" +
  8819. _task +
  8820. "'" +
  8821. ", " +
  8822. "'" +
  8823. _tool +
  8824. "'" +
  8825. ", " +
  8826. "'" +
  8827. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8828. "'" +
  8829. ", " +
  8830. "'" +
  8831. aTool +
  8832. "'" +
  8833. ", " +
  8834. "`" +
  8835. text +
  8836. "`" +
  8837. ")\n" +
  8838. " });\n" +
  8839. "}\n" +
  8840. "document.head.appendChild(_js);\n";
  8841. _iframe.contentWindow.document.head.appendChild(_ajs);
  8842. }
  8843. }
  8844. }
  8845. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8846. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8847. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8848. _userid = student.userid, //登錄用戶id
  8849. _username = student.student //用戶名字
  8850. let _iframe;
  8851. let _cid = cid,
  8852. _stage = stage,
  8853. _task = task,
  8854. _tool = tool;
  8855. var _jie = $$("div", {
  8856. "style": {
  8857. "position": "absolute",
  8858. "bottom": "50px",
  8859. "right": "50px",
  8860. "zIndex": "9999",
  8861. "backgroundColor": "#2268bc",
  8862. "color": "#fff",
  8863. "padding": "12px 20px",
  8864. "cursor": "pointer",
  8865. "borderRadius": "4px",
  8866. },
  8867. "innerHTML": "提交作業"
  8868. })
  8869. let aTool = ''
  8870. let _loading = document.createElement('div')
  8871. _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;"
  8872. // _loading.id = "";
  8873. let _lchild = document.createElement('div')
  8874. let _limg = document.createElement('img')
  8875. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8876. _limg.style = "width: 26px;margin-right: 10px;"
  8877. _lchild.appendChild(_limg)
  8878. let _lspan = document.createElement('span')
  8879. _lspan.innerHTML = "上傳中..."
  8880. _lchild.appendChild(_lspan)
  8881. _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%);"
  8882. _loading.appendChild(_lchild)
  8883. var _box = $$('div', {
  8884. "style": {
  8885. "position": "relative",
  8886. "width": "100%",
  8887. "height": "100%",
  8888. },
  8889. })
  8890. _box.appendChild(_loading)
  8891. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8892. switch (str) {
  8893. case "whiteboard":
  8894. aTool = 1;
  8895. _iframe = $$("iframe", {
  8896. "frameborder": "no",
  8897. "border": "0",
  8898. "scrolling ": "no",
  8899. "style": {
  8900. "cssText": "border:0;width:100%;height:100%"
  8901. },
  8902. "src": "https://iwb.cocorobo.hk/"
  8903. })
  8904. _box.appendChild(_iframe);
  8905. _box.appendChild(_jie);
  8906. _formdiv = new U.UF.UI.form(
  8907. "電子白板-" + _username,
  8908. _box, {
  8909. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8910. "style": {
  8911. "width": "90%",
  8912. "height": "90%",
  8913. "overflow": 'hidden'
  8914. },
  8915. "onresize": function () { }
  8916. }, {
  8917. closecallback: function () { }
  8918. }, {
  8919. "style": {
  8920. "height": "36px"
  8921. }
  8922. }).form; //創建窗體
  8923. _taskbar = {
  8924. "id": str + _formdiv.id,
  8925. "style": {
  8926. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8927. },
  8928. "name": "電子白板",
  8929. "forms": _formdiv,
  8930. "click": function () {
  8931. U.MD.D.I.openApplication(str, obj, info);
  8932. }
  8933. }
  8934. break;
  8935. case "mind":
  8936. aTool = 3;
  8937. _iframe = $$("iframe", {
  8938. "frameborder": "no",
  8939. "border": "0",
  8940. "scrolling ": "no",
  8941. "style": {
  8942. "cssText": "border:0;width:100%;height:100%"
  8943. },
  8944. "src": "/kityminder-editor/dist/index.html"
  8945. })
  8946. _box.appendChild(_iframe);
  8947. _box.appendChild(_jie);
  8948. _formdiv = new U.UF.UI.form(
  8949. "思維導圖-" + _username,
  8950. _box, { //"/jsmind/example/demo.html"
  8951. "id": "mind" + cid + stage + task + tool + _userid,
  8952. "style": {
  8953. "width": "90%",
  8954. "height": "90%",
  8955. "overflow": 'hidden'
  8956. },
  8957. "onresize": function () { }
  8958. }, {
  8959. closecallback: function () { }
  8960. }, {
  8961. "style": {
  8962. "height": "36px"
  8963. }
  8964. }).form; //創建窗體
  8965. _taskbar = {
  8966. "id": str + _formdiv.id,
  8967. "style": {
  8968. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8969. },
  8970. "name": "思維導圖",
  8971. "forms": _formdiv,
  8972. "click": function () {
  8973. U.MD.D.I.openApplication(str, obj, info);
  8974. }
  8975. }
  8976. break;
  8977. case "MindMap":
  8978. aTool = 3;
  8979. _iframe = $$("iframe", {
  8980. "frameborder": "no",
  8981. "border": "0",
  8982. "scrolling ": "no",
  8983. "style": {
  8984. "cssText": "border:0;width:100%;height:100%"
  8985. },
  8986. "src": "//cloud.cocorobo.hk/mind/"
  8987. })
  8988. _box.appendChild(_iframe);
  8989. _box.appendChild(_jie);
  8990. _formdiv = new U.UF.UI.form(
  8991. "思維導圖-" + _username,
  8992. _box, { //"/jsmind/example/demo.html"
  8993. "id": "mind" + cid + stage + task + tool + _userid,
  8994. "style": {
  8995. "width": "90%",
  8996. "height": "90%",
  8997. "overflow": 'hidden'
  8998. },
  8999. "onresize": function () { }
  9000. }, {
  9001. closecallback: function () { }
  9002. }, {
  9003. "style": {
  9004. "height": "36px"
  9005. }
  9006. }).form; //創建窗體
  9007. _taskbar = {
  9008. "id": str + _formdiv.id,
  9009. "style": {
  9010. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9011. },
  9012. "name": "思維導圖",
  9013. "forms": _formdiv,
  9014. "click": function () {
  9015. U.MD.D.I.openApplication(str, obj, info);
  9016. }
  9017. }
  9018. break;
  9019. case "doc":
  9020. aTool = 6;
  9021. _iframe = $$("iframe", {
  9022. "frameborder": "no",
  9023. "border": "0",
  9024. "scrolling ": "no",
  9025. "style": {
  9026. "cssText": "border:0;width:100%;height:100%"
  9027. },
  9028. "src": "/Office/Word/WordEditArea.htm"
  9029. })
  9030. _box.appendChild(_iframe);
  9031. _box.appendChild(_jie);
  9032. _formdiv = new U.UF.UI.form(
  9033. "協同文檔-" + _username,
  9034. _box, {
  9035. "id": "doc" + cid + stage + task + tool + _userid,
  9036. "style": {
  9037. "width": "90%",
  9038. "height": "90%",
  9039. "overflow": 'hidden'
  9040. },
  9041. "onresize": function () { }
  9042. }, {
  9043. closecallback: function () { }
  9044. }, {
  9045. "style": {
  9046. "height": "36px"
  9047. }
  9048. }).form; //創建窗體
  9049. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9050. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9051. })
  9052. _taskbar = {
  9053. "id": str + _formdiv.id,
  9054. "style": {
  9055. "backgroundImage": "url(/img/icon/doc.png)"
  9056. },
  9057. "name": "協同文檔",
  9058. "forms": _formdiv,
  9059. "click": function () {
  9060. U.MD.D.I.openApplication(str, obj, info);
  9061. }
  9062. }
  9063. break;
  9064. case "mindNetwork": //好友打開
  9065. aTool = 7;
  9066. _iframe = $$("iframe", {
  9067. "webkitallowfullscreen": "",
  9068. "mozallowfullscreen": "",
  9069. "allowfullscreen": "",
  9070. "frameborder": "no",
  9071. "border": "0",
  9072. "scrolling ": "no",
  9073. "style": {
  9074. "cssText": "border:0; width:100%; height:100%;"
  9075. },
  9076. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9077. })
  9078. _box.appendChild(_iframe);
  9079. _box.appendChild(_jie);
  9080. _formdiv = new U.UF.UI.form(
  9081. "思維網格-" + _username,
  9082. _box, {
  9083. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9084. "style": {
  9085. "width": "90%",
  9086. "height": "90%",
  9087. "overflow": 'hidden'
  9088. },
  9089. "onresize": function () { }
  9090. }, {
  9091. closecallback: function () { }
  9092. }, {
  9093. "style": {
  9094. "height": "36px"
  9095. }
  9096. }).form; //創建窗體
  9097. _taskbar = {
  9098. "id": str + _formdiv.id,
  9099. "style": {
  9100. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9101. },
  9102. "name": "思維網格",
  9103. "forms": _formdiv,
  9104. "click": function () {
  9105. U.MD.D.I.openApplication(str, obj, info);
  9106. }
  9107. }
  9108. break;
  9109. case "courseDesign":
  9110. _iframe = $$("iframe", {
  9111. "webkitallowfullscreen": "",
  9112. "mozallowfullscreen": "",
  9113. "allowfullscreen": "",
  9114. "frameborder": "no",
  9115. "border": "0",
  9116. "scrolling ": "no",
  9117. "style": {
  9118. "cssText": "border:0; width:100%; height:100%;"
  9119. },
  9120. "src": "/course-design-vue"
  9121. })
  9122. _box.appendChild(_iframe);
  9123. _box.appendChild(_jie);
  9124. _formdiv = new U.UF.UI.form(
  9125. "項目設計-" + _username,
  9126. _box, {
  9127. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9128. "style": {
  9129. "width": "90%",
  9130. "height": "90%",
  9131. "overflow": 'hidden'
  9132. },
  9133. "onresize": function () { }
  9134. }, {
  9135. closecallback: function () { }
  9136. }, {
  9137. "style": {
  9138. "height": "36px"
  9139. }
  9140. }).form; //創建窗體
  9141. _taskbar = {
  9142. "id": str + _formdiv.id,
  9143. "style": {
  9144. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9145. },
  9146. "name": "項目設計",
  9147. "forms": _formdiv,
  9148. "click": function () {
  9149. U.MD.D.I.openApplication(str, obj, info);
  9150. }
  9151. }
  9152. break;
  9153. }
  9154. const script1 = document.createElement("script");
  9155. script1.type = "text/javascript";
  9156. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9157. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9158. const script2 = document.createElement("script");
  9159. script2.type = "text/javascript";
  9160. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9161. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9162. const script3 = document.createElement("script");
  9163. script3.type = "text/javascript";
  9164. script3.charset = "UTF-8";
  9165. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9166. const script4 = document.createElement("script");
  9167. script4.type = "text/javascript";
  9168. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9169. script4.src = window.origin + "/js/Common/jietu2E.js";
  9170. if (_iframe) {
  9171. if (str == 'doc') {
  9172. _iframe = _formdiv.querySelector('iframe')
  9173. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9174. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9175. _iframe.contentWindow.document.body.appendChild(script1);
  9176. _iframe.contentWindow.document.body.appendChild(script2);
  9177. // _iframe.contentWindow.document.body.appendChild(script3);
  9178. _iframe.contentWindow.document.body.appendChild(script4);
  9179. })
  9180. if (onloadListener) {
  9181. _iframe.contentDocument.location.reload()
  9182. } else {
  9183. _iframe.contentDocument.location.reload()
  9184. }
  9185. } else if (str == 'courseDesign') {
  9186. U.UF.DL.iframeLoad(_iframe, function () {
  9187. // _iframe.contentWindow.U.MD.O.W.load();
  9188. // _iframe.contentWindow.document.body.appendChild(script1);
  9189. _iframe.contentWindow.document.body.appendChild(script2);
  9190. _iframe.contentWindow.document.body.appendChild(script4);
  9191. })
  9192. } else if (str == 'mind') {
  9193. _iframe = _formdiv.querySelector('iframe')
  9194. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9195. //
  9196. _iframe.contentWindow.document.body.appendChild(script1);
  9197. _iframe.contentWindow.document.body.appendChild(script2);
  9198. _iframe.contentWindow.document.body.appendChild(script4);
  9199. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9200. })
  9201. if (onloadListener) {
  9202. _iframe.contentDocument.location.reload()
  9203. } else {
  9204. _iframe.contentDocument.location.reload()
  9205. }
  9206. } else if (str == 'whiteboard') {
  9207. _iframe = _formdiv.querySelector('iframe')
  9208. let onloadListener = _iframe.onload = () => {
  9209. _iframe.contentWindow.document.body.appendChild(script1);
  9210. _iframe.contentWindow.document.body.appendChild(script2);
  9211. _iframe.contentWindow.document.body.appendChild(script4);
  9212. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9213. };
  9214. // if (onloadListener) {
  9215. // try {
  9216. // _iframe.src += "?cocorobo="+new Date().getTime()
  9217. // _iframe.contentWindow.document.location.reload()
  9218. // } catch (error) {
  9219. // }
  9220. // } else {
  9221. // _iframe.contentDocument.location.reload()
  9222. // }
  9223. } else {
  9224. _iframe.onload = () => {
  9225. _iframe.contentWindow.document.body.appendChild(script1);
  9226. _iframe.contentWindow.document.body.appendChild(script2);
  9227. // _iframe.contentWindow.document.body.appendChild(script3);
  9228. _iframe.contentWindow.document.body.appendChild(script4);
  9229. };
  9230. }
  9231. _jie.onclick = async () => {
  9232. let text = ''
  9233. if (aTool == 1) {
  9234. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9235. } else if (aTool == 6) {
  9236. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9237. } else if (aTool == 3) {
  9238. text = await U.MD.D.I.getEditorContent(_iframe);
  9239. }
  9240. _loading.style.display = 'flex'
  9241. console.log(_loading);
  9242. var _ajs = _iframe.contentWindow.document.createElement("script");
  9243. _ajs.type = "text/javascript";
  9244. _ajs.innerHTML =
  9245. // 'console.log(' + _loading + ');\n' +
  9246. 'var _js = document.createElement("script");\n' +
  9247. '_js.type="text/javascript";\n' +
  9248. '_js.charset="UTF-8";\n' +
  9249. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9250. "_js.onload = function(){\n" +
  9251. ' var a = document.getElementsByTagName("img")\n' +
  9252. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9253. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9254. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9255. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9256. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9257. "beforeUpload_shishi(file," +
  9258. "'" +
  9259. _userid +
  9260. "'" +
  9261. ", " +
  9262. "'" +
  9263. _cid +
  9264. "'" +
  9265. ", " +
  9266. "'" +
  9267. _stage +
  9268. "'" +
  9269. ", " +
  9270. "'" +
  9271. _task +
  9272. "'" +
  9273. ", " +
  9274. "'" +
  9275. _tool +
  9276. "'" +
  9277. ", " +
  9278. "'" +
  9279. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9280. "'" +
  9281. ", " +
  9282. "'" +
  9283. aTool +
  9284. "'" +
  9285. ", " +
  9286. "`" +
  9287. text +
  9288. "`" +
  9289. ")\n" +
  9290. " });\n" +
  9291. "}\n" +
  9292. "document.head.appendChild(_js);\n";
  9293. _iframe.contentWindow.document.head.appendChild(_ajs);
  9294. }
  9295. }
  9296. }
  9297. U.MD.D.I.getEditorContent = function (iframe) {
  9298. return new Promise((resolve, reject) => {
  9299. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9300. console.log(content);
  9301. resolve(content)
  9302. });
  9303. });
  9304. }
  9305. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9306. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9307. // if (res.value[0].length > 0) {
  9308. // // resolve(res.value[0][0].text);
  9309. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9310. // $(fileInput).val('');
  9311. // });
  9312. // }
  9313. // }, [], { "type": "GET", "withCredentials": true });
  9314. var xmlhttp;
  9315. var Mac, Sn, DeviceId
  9316. if (window.XMLHttpRequest) {
  9317. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9318. xmlhttp = new XMLHttpRequest();
  9319. }
  9320. else {
  9321. // IE6, IE5 瀏覽器執行代碼
  9322. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9323. }
  9324. xmlhttp.onreadystatechange = function () {
  9325. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9326. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9327. // resolve(res.value[0][0].text);
  9328. if (type == '2') {
  9329. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9330. } else if (type == '3') {
  9331. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9332. }
  9333. } else {
  9334. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9335. }
  9336. }
  9337. }
  9338. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9339. xmlhttp.send();
  9340. }
  9341. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9342. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9343. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9344. _userinfo = US.userInfo, //登錄用戶信息
  9345. _userid = US.userInfo.userid //登錄用戶id
  9346. let _iframe;
  9347. let _cid = cid,
  9348. _stage = stage,
  9349. _task = task,
  9350. _tool = tool;
  9351. var _jie = $$("div", {
  9352. "style": {
  9353. "position": "absolute",
  9354. "bottom": "50px",
  9355. "right": "50px",
  9356. "zIndex": "9999",
  9357. "backgroundColor": "#2268bc",
  9358. "color": "#fff",
  9359. "padding": "12px 20px",
  9360. "cursor": "pointer",
  9361. "borderRadius": "4px",
  9362. },
  9363. "innerHTML": "確認並提交"
  9364. })
  9365. let aTool = ''
  9366. let _loading = document.createElement('div')
  9367. _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;"
  9368. // _loading.id = "";
  9369. let _lchild = document.createElement('div')
  9370. let _limg = document.createElement('img')
  9371. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9372. _limg.style = "width: 26px;margin-right: 10px;"
  9373. _lchild.appendChild(_limg)
  9374. let _lspan = document.createElement('span')
  9375. _lspan.innerHTML = "上傳中..."
  9376. _lchild.appendChild(_lspan)
  9377. _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%);"
  9378. _loading.appendChild(_lchild)
  9379. var _box = $$('div', {
  9380. "style": {
  9381. "position": "relative",
  9382. "width": "100%",
  9383. "height": "100%",
  9384. },
  9385. })
  9386. _box.appendChild(_loading)
  9387. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9388. switch (str) {
  9389. case "whiteboard":
  9390. aTool = 1;
  9391. _iframe = $$("iframe", {
  9392. "frameborder": "no",
  9393. "border": "0",
  9394. "scrolling ": "no",
  9395. "style": {
  9396. "cssText": "border:0;width:100%;height:100%"
  9397. },
  9398. "src": "https://iwb.cocorobo.hk/"
  9399. })
  9400. _box.appendChild(_iframe);
  9401. _box.appendChild(_jie);
  9402. _formdiv = new U.UF.UI.form(
  9403. "電子白板",
  9404. _box, {
  9405. "id": "whiteboards" + cid + stage + task + tool,
  9406. "style": {
  9407. "width": "90%",
  9408. "height": "90%",
  9409. "overflow": 'hidden'
  9410. },
  9411. "onresize": function () { }
  9412. }, {
  9413. closecallback: function () { }
  9414. }, {
  9415. "style": {
  9416. "height": "36px"
  9417. }
  9418. }).form; //創建窗體
  9419. _taskbar = {
  9420. "id": str + _formdiv.id,
  9421. "style": {
  9422. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9423. },
  9424. "name": "電子白板",
  9425. "forms": _formdiv,
  9426. "click": function () {
  9427. U.MD.D.I.openApplication(str, obj, info);
  9428. }
  9429. }
  9430. break;
  9431. case "mind":
  9432. aTool = 3;
  9433. _iframe = $$("iframe", {
  9434. "frameborder": "no",
  9435. "border": "0",
  9436. "scrolling ": "no",
  9437. "style": {
  9438. "cssText": "border:0;width:100%;height:100%"
  9439. },
  9440. "src": "/kityminder-editor/dist/index.html"
  9441. });
  9442. _box.appendChild(_iframe);
  9443. _box.appendChild(_jie);
  9444. _formdiv = new U.UF.UI.form(
  9445. "思維導圖",
  9446. _box, { //"/jsmind/example/demo.html"
  9447. "id": "minds" + cid + stage + task + tool,
  9448. "style": {
  9449. "width": "90%",
  9450. "height": "90%",
  9451. "overflow": 'hidden'
  9452. },
  9453. "onresize": function () { }
  9454. }, {
  9455. closecallback: function () { }
  9456. }, {
  9457. "style": {
  9458. "height": "36px"
  9459. }
  9460. }).form; //創建窗體
  9461. _taskbar = {
  9462. "id": str + _formdiv.id,
  9463. "style": {
  9464. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9465. },
  9466. "name": "思維導圖",
  9467. "forms": _formdiv,
  9468. "click": function () {
  9469. U.MD.D.I.openApplication(str, obj, info);
  9470. }
  9471. }
  9472. break;
  9473. case "doc":
  9474. aTool = 6;
  9475. _iframe = $$("iframe", {
  9476. "frameborder": "no",
  9477. "border": "0",
  9478. "scrolling ": "no",
  9479. "style": {
  9480. "cssText": "border:0;width:100%;height:100%"
  9481. },
  9482. "src": "/Office/Word/WordEditArea.htm"
  9483. })
  9484. _box.appendChild(_iframe);
  9485. _box.appendChild(_jie);
  9486. _formdiv = new U.UF.UI.form(
  9487. "協同文檔",
  9488. _box, {
  9489. "id": "docs" + cid + stage + task + tool,
  9490. "style": {
  9491. "width": "90%",
  9492. "height": "90%",
  9493. "overflow": 'hidden'
  9494. },
  9495. "onresize": function () { }
  9496. }, {
  9497. closecallback: function () { }
  9498. }, {
  9499. "style": {
  9500. "height": "36px"
  9501. }
  9502. }).form; //創建窗體
  9503. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9504. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9505. })
  9506. _taskbar = {
  9507. "id": str + _formdiv.id,
  9508. "style": {
  9509. "backgroundImage": "url(/img/icon/doc.png)"
  9510. },
  9511. "name": "協同文檔",
  9512. "forms": _formdiv,
  9513. "click": function () {
  9514. U.MD.D.I.openApplication(str, obj, info);
  9515. }
  9516. }
  9517. break;
  9518. }
  9519. const script1 = document.createElement("script");
  9520. script1.type = "text/javascript";
  9521. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9522. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9523. const script2 = document.createElement("script");
  9524. script2.type = "text/javascript";
  9525. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9526. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9527. const script3 = document.createElement("script");
  9528. script3.type = "text/javascript";
  9529. script3.charset = "UTF-8";
  9530. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9531. const script4 = document.createElement("script");
  9532. script4.type = "text/javascript";
  9533. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9534. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  9535. if (_iframe) {
  9536. if (str == 'doc') {
  9537. _iframe = _formdiv.querySelector('iframe')
  9538. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9539. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9540. _iframe.contentWindow.document.body.appendChild(script1);
  9541. _iframe.contentWindow.document.body.appendChild(script2);
  9542. // _iframe.contentWindow.document.body.appendChild(script3);
  9543. _iframe.contentWindow.document.body.appendChild(script4);
  9544. })
  9545. if (onloadListener) {
  9546. _iframe.contentDocument.location.reload()
  9547. } else {
  9548. _iframe.contentDocument.location.reload()
  9549. }
  9550. } else if (str == 'mind') {
  9551. _iframe = _formdiv.querySelector('iframe')
  9552. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9553. _iframe.contentWindow.document.body.appendChild(script1);
  9554. _iframe.contentWindow.document.body.appendChild(script2);
  9555. _iframe.contentWindow.document.body.appendChild(script4);
  9556. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9557. })
  9558. if (onloadListener) {
  9559. _iframe.contentDocument.location.reload()
  9560. } else {
  9561. _iframe.contentDocument.location.reload()
  9562. }
  9563. } else {
  9564. _iframe.onload = () => {
  9565. _iframe.contentWindow.document.body.appendChild(script1);
  9566. _iframe.contentWindow.document.body.appendChild(script2);
  9567. // _iframe.contentWindow.document.body.appendChild(script3);
  9568. _iframe.contentWindow.document.body.appendChild(script4);
  9569. };
  9570. }
  9571. _jie.onclick = async () => {
  9572. let text = ''
  9573. if (aTool == 6) {
  9574. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9575. } else if (aTool == 3) {
  9576. text = await U.MD.D.I.getEditorContent(_iframe);
  9577. }
  9578. _loading.style.display = 'flex'
  9579. console.log(_loading);
  9580. var _ajs = _iframe.contentWindow.document.createElement("script");
  9581. _ajs.type = "text/javascript";
  9582. _ajs.innerHTML =
  9583. // 'console.log(' + _loading + ');\n' +
  9584. 'var _js = document.createElement("script");\n' +
  9585. '_js.type="text/javascript";\n' +
  9586. '_js.charset="UTF-8";\n' +
  9587. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9588. "_js.onload = function(){\n" +
  9589. ' var a = document.getElementsByTagName("img")\n' +
  9590. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9591. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9592. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9593. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9594. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9595. "beforeUpload_shishi(file," +
  9596. "'" +
  9597. _userid +
  9598. "'" +
  9599. ", " +
  9600. "'" +
  9601. _cid +
  9602. "'" +
  9603. ", " +
  9604. "'" +
  9605. _stage +
  9606. "'" +
  9607. ", " +
  9608. "'" +
  9609. _task +
  9610. "'" +
  9611. ", " +
  9612. "'" +
  9613. _tool +
  9614. "'" +
  9615. ", " +
  9616. "'" +
  9617. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9618. "'" +
  9619. ", " +
  9620. "'" +
  9621. aTool +
  9622. "'" +
  9623. ", " +
  9624. "`" +
  9625. text +
  9626. "`" +
  9627. ")\n" +
  9628. " });\n" +
  9629. "}\n" +
  9630. "document.head.appendChild(_js);\n";
  9631. _iframe.contentWindow.document.head.appendChild(_ajs);
  9632. }
  9633. }
  9634. //U.MD.D.I.openClick(str);
  9635. //如果有任務欄信息
  9636. // if (_taskbar) {
  9637. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9638. // }
  9639. }
  9640. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9641. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9642. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9643. _userinfo = US.userInfo, //登錄用戶信息
  9644. _userid = US.userInfo.userid //登錄用戶id
  9645. let _iframe;
  9646. let _cid = cid,
  9647. _stage = stage,
  9648. _task = task,
  9649. _tool = tool;
  9650. var _jie = $$("div", {
  9651. "style": {
  9652. "position": "absolute",
  9653. "bottom": "50px",
  9654. "right": "50px",
  9655. "zIndex": "9999",
  9656. "backgroundColor": "#2268bc",
  9657. "color": "#fff",
  9658. "padding": "12px 20px",
  9659. "cursor": "pointer",
  9660. "borderRadius": "4px",
  9661. },
  9662. "innerHTML": "確認並提交"
  9663. })
  9664. let aTool = ''
  9665. let _loading = document.createElement('div')
  9666. _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;"
  9667. // _loading.id = "";
  9668. let _lchild = document.createElement('div')
  9669. let _limg = document.createElement('img')
  9670. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9671. _limg.style = "width: 26px;margin-right: 10px;"
  9672. _lchild.appendChild(_limg)
  9673. let _lspan = document.createElement('span')
  9674. _lspan.innerHTML = "上傳中..."
  9675. _lchild.appendChild(_lspan)
  9676. _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%);"
  9677. _loading.appendChild(_lchild)
  9678. var _box = $$('div', {
  9679. "style": {
  9680. "position": "relative",
  9681. "width": "100%",
  9682. "height": "100%",
  9683. },
  9684. })
  9685. _box.appendChild(_loading)
  9686. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9687. switch (str) {
  9688. case "whiteboard":
  9689. aTool = 1;
  9690. _iframe = $$("iframe", {
  9691. "frameborder": "no",
  9692. "border": "0",
  9693. "scrolling ": "no",
  9694. "style": {
  9695. "cssText": "border:0;width:100%;height:100%"
  9696. },
  9697. "src": "https://iwb.cocorobo.hk/"
  9698. })
  9699. _box.appendChild(_iframe);
  9700. _box.appendChild(_jie);
  9701. _formdiv = new U.UF.UI.form(
  9702. "電子白板",
  9703. _box, {
  9704. "id": "whiteboards" + cid + stage + task + tool,
  9705. "style": {
  9706. "width": "90%",
  9707. "height": "90%",
  9708. "overflow": 'hidden'
  9709. },
  9710. "onresize": function () { }
  9711. }, {
  9712. closecallback: function () { }
  9713. }, {
  9714. "style": {
  9715. "height": "36px"
  9716. }
  9717. }).form; //創建窗體
  9718. _taskbar = {
  9719. "id": str + _formdiv.id,
  9720. "style": {
  9721. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9722. },
  9723. "name": "電子白板",
  9724. "forms": _formdiv,
  9725. "click": function () {
  9726. U.MD.D.I.openApplication(str, obj, info);
  9727. }
  9728. }
  9729. break;
  9730. case "mind":
  9731. aTool = 3;
  9732. _iframe = $$("iframe", {
  9733. "frameborder": "no",
  9734. "border": "0",
  9735. "scrolling ": "no",
  9736. "style": {
  9737. "cssText": "border:0;width:100%;height:100%"
  9738. },
  9739. "src": "/kityminder-editor/dist/index.html"
  9740. });
  9741. _box.appendChild(_iframe);
  9742. _box.appendChild(_jie);
  9743. _formdiv = new U.UF.UI.form(
  9744. "思維導圖",
  9745. _box, { //"/jsmind/example/demo.html"
  9746. "id": "minds" + cid + stage + task + tool,
  9747. "style": {
  9748. "width": "90%",
  9749. "height": "90%",
  9750. "overflow": 'hidden'
  9751. },
  9752. "onresize": function () { }
  9753. }, {
  9754. closecallback: function () { }
  9755. }, {
  9756. "style": {
  9757. "height": "36px"
  9758. }
  9759. }).form; //創建窗體
  9760. _taskbar = {
  9761. "id": str + _formdiv.id,
  9762. "style": {
  9763. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9764. },
  9765. "name": "思維導圖",
  9766. "forms": _formdiv,
  9767. "click": function () {
  9768. U.MD.D.I.openApplication(str, obj, info);
  9769. }
  9770. }
  9771. break;
  9772. case "doc":
  9773. aTool = 6;
  9774. _iframe = $$("iframe", {
  9775. "frameborder": "no",
  9776. "border": "0",
  9777. "scrolling ": "no",
  9778. "style": {
  9779. "cssText": "border:0;width:100%;height:100%"
  9780. },
  9781. "src": "/Office/Word/WordEditArea.htm"
  9782. })
  9783. _box.appendChild(_iframe);
  9784. _box.appendChild(_jie);
  9785. _formdiv = new U.UF.UI.form(
  9786. "協同文檔",
  9787. _box, {
  9788. "id": "docs" + cid + stage + task + tool,
  9789. "style": {
  9790. "width": "90%",
  9791. "height": "90%",
  9792. "overflow": 'hidden'
  9793. },
  9794. "onresize": function () { }
  9795. }, {
  9796. closecallback: function () { }
  9797. }, {
  9798. "style": {
  9799. "height": "36px"
  9800. }
  9801. }).form; //創建窗體
  9802. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9803. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9804. })
  9805. _taskbar = {
  9806. "id": str + _formdiv.id,
  9807. "style": {
  9808. "backgroundImage": "url(/img/icon/doc.png)"
  9809. },
  9810. "name": "協同文檔",
  9811. "forms": _formdiv,
  9812. "click": function () {
  9813. U.MD.D.I.openApplication(str, obj, info);
  9814. }
  9815. }
  9816. break;
  9817. }
  9818. const script1 = document.createElement("script");
  9819. script1.type = "text/javascript";
  9820. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9821. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9822. const script2 = document.createElement("script");
  9823. script2.type = "text/javascript";
  9824. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9825. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9826. const script3 = document.createElement("script");
  9827. script3.type = "text/javascript";
  9828. script3.charset = "UTF-8";
  9829. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9830. const script4 = document.createElement("script");
  9831. script4.type = "text/javascript";
  9832. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9833. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  9834. if (_iframe) {
  9835. if (str == 'doc') {
  9836. _iframe = _formdiv.querySelector('iframe')
  9837. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9838. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9839. _iframe.contentWindow.document.body.appendChild(script1);
  9840. _iframe.contentWindow.document.body.appendChild(script2);
  9841. // _iframe.contentWindow.document.body.appendChild(script3);
  9842. _iframe.contentWindow.document.body.appendChild(script4);
  9843. })
  9844. if (onloadListener) {
  9845. _iframe.contentDocument.location.reload()
  9846. } else {
  9847. _iframe.contentDocument.location.reload()
  9848. }
  9849. } else if (str == 'mind') {
  9850. _iframe = _formdiv.querySelector('iframe')
  9851. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9852. _iframe.contentWindow.document.body.appendChild(script1);
  9853. _iframe.contentWindow.document.body.appendChild(script2);
  9854. _iframe.contentWindow.document.body.appendChild(script4);
  9855. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9856. })
  9857. if (onloadListener) {
  9858. _iframe.contentDocument.location.reload()
  9859. } else {
  9860. _iframe.contentDocument.location.reload()
  9861. }
  9862. } else {
  9863. _iframe.onload = () => {
  9864. _iframe.contentWindow.document.body.appendChild(script1);
  9865. _iframe.contentWindow.document.body.appendChild(script2);
  9866. // _iframe.contentWindow.document.body.appendChild(script3);
  9867. _iframe.contentWindow.document.body.appendChild(script4);
  9868. };
  9869. }
  9870. _jie.onclick = async () => {
  9871. let text = ''
  9872. if (aTool == 6) {
  9873. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9874. } else if (aTool == 3) {
  9875. text = await U.MD.D.I.getEditorContent(_iframe);
  9876. }
  9877. _loading.style.display = 'flex'
  9878. console.log(_loading);
  9879. var _ajs = _iframe.contentWindow.document.createElement("script");
  9880. _ajs.type = "text/javascript";
  9881. _ajs.innerHTML =
  9882. // 'console.log(' + _loading + ');\n' +
  9883. 'var _js = document.createElement("script");\n' +
  9884. '_js.type="text/javascript";\n' +
  9885. '_js.charset="UTF-8";\n' +
  9886. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9887. "_js.onload = function(){\n" +
  9888. ' var a = document.getElementsByTagName("img")\n' +
  9889. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9890. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9891. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9892. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9893. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9894. "beforeUpload_shishi(file," +
  9895. "'" +
  9896. _userid +
  9897. "'" +
  9898. ", " +
  9899. "'" +
  9900. _cid +
  9901. "'" +
  9902. ", " +
  9903. "'" +
  9904. _stage +
  9905. "'" +
  9906. ", " +
  9907. "'" +
  9908. _task +
  9909. "'" +
  9910. ", " +
  9911. "'" +
  9912. _tool +
  9913. "'" +
  9914. ", " +
  9915. "'" +
  9916. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9917. "'" +
  9918. ", " +
  9919. "'" +
  9920. aTool +
  9921. "'" +
  9922. ", " +
  9923. "`" +
  9924. text +
  9925. "`" +
  9926. ")\n" +
  9927. " });\n" +
  9928. "}\n" +
  9929. "document.head.appendChild(_js);\n";
  9930. _iframe.contentWindow.document.head.appendChild(_ajs);
  9931. }
  9932. }
  9933. //U.MD.D.I.openClick(str);
  9934. //如果有任務欄信息
  9935. // if (_taskbar) {
  9936. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9937. // }
  9938. }
  9939. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9940. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9941. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9942. _userinfo = US.userInfo, //登錄用戶信息
  9943. _userid = US.userInfo.userid //登錄用戶id
  9944. let _iframe;
  9945. let _cid = cid,
  9946. _stage = stage,
  9947. _task = task,
  9948. _tool = tool;
  9949. var _jie = $$("div", {
  9950. "style": {
  9951. "position": "absolute",
  9952. "bottom": "50px",
  9953. "right": "50px",
  9954. "zIndex": "9999",
  9955. "backgroundColor": "#2268bc",
  9956. "color": "#fff",
  9957. "padding": "12px 20px",
  9958. "cursor": "pointer",
  9959. "borderRadius": "4px",
  9960. },
  9961. "innerHTML": "上傳模板"
  9962. })
  9963. let aTool = ''
  9964. let _loading = document.createElement('div')
  9965. _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;"
  9966. // _loading.id = "";
  9967. let _lchild = document.createElement('div')
  9968. let _limg = document.createElement('img')
  9969. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9970. _limg.style = "width: 26px;margin-right: 10px;"
  9971. _lchild.appendChild(_limg)
  9972. let _lspan = document.createElement('span')
  9973. _lspan.innerHTML = "上傳中..."
  9974. _lchild.appendChild(_lspan)
  9975. _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%);"
  9976. _loading.appendChild(_lchild)
  9977. var _box = $$('div', {
  9978. "style": {
  9979. "position": "relative",
  9980. "width": "100%",
  9981. "height": "100%",
  9982. },
  9983. })
  9984. _box.appendChild(_loading)
  9985. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9986. switch (str) {
  9987. case "whiteboard":
  9988. aTool = 1;
  9989. _iframe = $$("iframe", {
  9990. "frameborder": "no",
  9991. "border": "0",
  9992. "scrolling ": "no",
  9993. "style": {
  9994. "cssText": "border:0;width:100%;height:100%"
  9995. },
  9996. "src": "https://iwb.cocorobo.hk/"
  9997. })
  9998. _box.appendChild(_iframe);
  9999. _box.appendChild(_jie);
  10000. _formdiv = new U.UF.UI.form(
  10001. "電子白板",
  10002. _box, {
  10003. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10004. "style": {
  10005. "width": "90%",
  10006. "height": "90%",
  10007. "overflow": 'hidden'
  10008. },
  10009. "onresize": function () { }
  10010. }, {
  10011. closecallback: function () { }
  10012. }, {
  10013. "style": {
  10014. "height": "36px"
  10015. }
  10016. }).form; //創建窗體
  10017. _taskbar = {
  10018. "id": str + _formdiv.id,
  10019. "style": {
  10020. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10021. },
  10022. "name": "電子白板",
  10023. "forms": _formdiv,
  10024. "click": function () {
  10025. U.MD.D.I.openApplication(str, obj, info);
  10026. }
  10027. }
  10028. break;
  10029. case "mind":
  10030. aTool = 3;
  10031. _iframe = $$("iframe", {
  10032. "frameborder": "no",
  10033. "border": "0",
  10034. "scrolling ": "no",
  10035. "style": {
  10036. "cssText": "border:0;width:100%;height:100%"
  10037. },
  10038. "src": "/kityminder-editor/dist/index.html"
  10039. });
  10040. _box.appendChild(_iframe);
  10041. _box.appendChild(_jie);
  10042. _formdiv = new U.UF.UI.form(
  10043. "思維導圖",
  10044. _box, { //"/jsmind/example/demo.html"
  10045. "id": "minds_Yu" + cid + stage + task + tool,
  10046. "style": {
  10047. "width": "90%",
  10048. "height": "90%",
  10049. "overflow": 'hidden'
  10050. },
  10051. "onresize": function () { }
  10052. }, {
  10053. closecallback: function () { }
  10054. }, {
  10055. "style": {
  10056. "height": "36px"
  10057. }
  10058. }).form; //創建窗體
  10059. _taskbar = {
  10060. "id": str + _formdiv.id,
  10061. "style": {
  10062. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10063. },
  10064. "name": "思維導圖",
  10065. "forms": _formdiv,
  10066. "click": function () {
  10067. U.MD.D.I.openApplication(str, obj, info);
  10068. }
  10069. }
  10070. break;
  10071. case "doc":
  10072. aTool = 6;
  10073. _iframe = $$("iframe", {
  10074. "frameborder": "no",
  10075. "border": "0",
  10076. "scrolling ": "no",
  10077. "style": {
  10078. "cssText": "border:0;width:100%;height:100%"
  10079. },
  10080. "src": "/Office/Word/WordEditArea.htm"
  10081. })
  10082. _box.appendChild(_iframe);
  10083. _box.appendChild(_jie);
  10084. _formdiv = new U.UF.UI.form(
  10085. "協同文檔",
  10086. _box, {
  10087. "id": "docs_Yu" + cid + stage + task + tool,
  10088. "style": {
  10089. "width": "90%",
  10090. "height": "90%",
  10091. "overflow": 'hidden'
  10092. },
  10093. "onresize": function () { }
  10094. }, {
  10095. closecallback: function () { }
  10096. }, {
  10097. "style": {
  10098. "height": "36px"
  10099. }
  10100. }).form; //創建窗體
  10101. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10102. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10103. })
  10104. _taskbar = {
  10105. "id": str + _formdiv.id,
  10106. "style": {
  10107. "backgroundImage": "url(/img/icon/doc.png)"
  10108. },
  10109. "name": "協同文檔",
  10110. "forms": _formdiv,
  10111. "click": function () {
  10112. U.MD.D.I.openApplication(str, obj, info);
  10113. }
  10114. }
  10115. break;
  10116. case "CocoPi":
  10117. aTool = 57;
  10118. _iframe = $$("iframe", {
  10119. "allowpaymentrequest": "allowpaymentrequest",
  10120. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10121. "webkitallowfullscreen": "",
  10122. "mozallowfullscreen": "",
  10123. "frameborder": "no",
  10124. "border": "0",
  10125. "scrolling ": "no",
  10126. "style": {
  10127. "cssText": "border:0;width:100%;height:100%"
  10128. },
  10129. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10130. })
  10131. _box.appendChild(_iframe);
  10132. _box.appendChild(_jie);
  10133. _formdiv = new U.UF.UI.form(
  10134. "CocoPi",
  10135. _box, {
  10136. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10137. "style": {
  10138. "width": "90%",
  10139. "height": "90%",
  10140. "overflow": 'hidden'
  10141. },
  10142. "onresize": function () { }
  10143. }, {
  10144. closecallback: function () { }
  10145. }, {
  10146. "style": {
  10147. "height": "36px"
  10148. }
  10149. }).form; //創建窗體
  10150. _taskbar = {
  10151. "id": str + _formdiv.id,
  10152. "style": {
  10153. "backgroundImage": "url(/img/icon/cocopi.png)"
  10154. },
  10155. "name": "CocoPi",
  10156. "forms": _formdiv,
  10157. "click": function () {
  10158. U.MD.D.I.openApplication(str, obj, info);
  10159. }
  10160. }
  10161. break;
  10162. }
  10163. if (_iframe) {
  10164. if (str == 'doc') {
  10165. _iframe = _formdiv.querySelector('iframe')
  10166. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10167. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10168. })
  10169. if (onloadListener) {
  10170. _iframe.contentDocument.location.reload()
  10171. } else {
  10172. _iframe.contentDocument.location.reload()
  10173. }
  10174. } else if (str == 'mind') {
  10175. _iframe = _formdiv.querySelector('iframe')
  10176. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10177. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10178. })
  10179. if (onloadListener) {
  10180. _iframe.contentDocument.location.reload()
  10181. } else {
  10182. _iframe.contentDocument.location.reload()
  10183. }
  10184. } else if (str == 'whiteboard') {
  10185. _iframe = _formdiv.querySelector('iframe')
  10186. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10187. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10188. })
  10189. // if (onloadListener) {
  10190. // try {
  10191. // _iframe.src += "?cocorobo="+new Date().getTime()
  10192. // _iframe.contentWindow.document.location.reload()
  10193. // } catch (error) {
  10194. // }
  10195. // } else {
  10196. // _iframe.contentDocument.location.reload()
  10197. // }
  10198. } else if (str == 'CocoPi') {
  10199. _iframe = _formdiv.querySelector('iframe')
  10200. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10201. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10202. })
  10203. if (onloadListener) {
  10204. _iframe.contentDocument.location.reload()
  10205. } else {
  10206. _iframe.contentDocument.location.reload()
  10207. }
  10208. } else {
  10209. _iframe.onload = () => { };
  10210. }
  10211. _jie.onclick = async () => {
  10212. let text = ''
  10213. let type = '2'
  10214. if (aTool == 1) {
  10215. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10216. type = '3'
  10217. } else if (aTool == 6) {
  10218. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10219. type = '1'
  10220. } else if (aTool == 3) {
  10221. text = await U.MD.D.I.getEditorContent(_iframe);
  10222. type = '2'
  10223. } else if (aTool == 57) {
  10224. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10225. type = '4'
  10226. }
  10227. _loading.style.display = 'flex'
  10228. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10229. }
  10230. }
  10231. //U.MD.D.I.openClick(str);
  10232. //如果有任務欄信息
  10233. // if (_taskbar) {
  10234. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10235. // }
  10236. }
  10237. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10238. var xmlhttp;
  10239. var Mac, Sn, DeviceId
  10240. if (window.XMLHttpRequest) {
  10241. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10242. xmlhttp = new XMLHttpRequest();
  10243. }
  10244. else {
  10245. // IE6, IE5 瀏覽器執行代碼
  10246. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10247. }
  10248. xmlhttp.onreadystatechange = function () {
  10249. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10250. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10251. // resolve(res.value[0][0].text);
  10252. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10253. }
  10254. }
  10255. }
  10256. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10257. xmlhttp.send();
  10258. }
  10259. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10260. var xmlhttp;
  10261. var Mac, Sn, DeviceId
  10262. if (window.XMLHttpRequest) {
  10263. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10264. xmlhttp = new XMLHttpRequest();
  10265. }
  10266. else {
  10267. // IE6, IE5 瀏覽器執行代碼
  10268. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10269. }
  10270. xmlhttp.onreadystatechange = function () {
  10271. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10272. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10273. // resolve(res.value[0][0].text);
  10274. if (type == '2') {
  10275. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10276. } else if (type == '3') {
  10277. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10278. } else if (type == '4') {
  10279. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10280. }
  10281. } else {
  10282. if (type == '2') {
  10283. iframe.contentWindow.editor.minder.importData('json', '')
  10284. } else if (type == '3') {
  10285. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10286. } else if (type == '4') {
  10287. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10288. }
  10289. }
  10290. }
  10291. }
  10292. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10293. xmlhttp.send();
  10294. }
  10295. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10296. var xmlhttp;
  10297. var Mac, Sn, DeviceId
  10298. if (window.XMLHttpRequest) {
  10299. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10300. xmlhttp = new XMLHttpRequest();
  10301. }
  10302. else {
  10303. // IE6, IE5 瀏覽器執行代碼
  10304. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10305. }
  10306. xmlhttp.onreadystatechange = function () {
  10307. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10308. if (xmlhttp.response) {
  10309. // resolve(res.value[0][0].text);
  10310. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10311. // $(fileInput).val('');
  10312. // });
  10313. span.innerHTML = '上傳成功'
  10314. setTimeout(() => {
  10315. loading.style.display = 'none'
  10316. }, 1000);
  10317. }
  10318. }
  10319. }
  10320. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10321. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10322. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10323. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10324. // 設置請求頭,表示請求體的編碼格式
  10325. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10326. // 設置請求體,使用url-encoded格式的數據
  10327. }
  10328. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10329. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10330. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10331. _userinfo = US.userInfo, //登錄用戶信息
  10332. _userid = US.userInfo.userid //登錄用戶id
  10333. let _iframe;
  10334. let _cid = cid,
  10335. _stage = stage,
  10336. _task = task,
  10337. _tool = tool;
  10338. var _jie = $$("div", {
  10339. "style": {
  10340. "position": "absolute",
  10341. "bottom": "50px",
  10342. "right": "50px",
  10343. "zIndex": "9999",
  10344. "backgroundColor": "#2268bc",
  10345. "color": "#fff",
  10346. "padding": "12px 20px",
  10347. "cursor": "pointer",
  10348. "borderRadius": "4px",
  10349. },
  10350. "innerHTML": "提交作業"
  10351. })
  10352. let aTool = ''
  10353. let _loading = document.createElement('div')
  10354. _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;"
  10355. // _loading.id = "";
  10356. let _lchild = document.createElement('div')
  10357. let _limg = document.createElement('img')
  10358. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10359. _limg.style = "width: 26px;margin-right: 10px;"
  10360. _lchild.appendChild(_limg)
  10361. let _lspan = document.createElement('span')
  10362. _lspan.innerHTML = "上傳中..."
  10363. _lchild.appendChild(_lspan)
  10364. _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%);"
  10365. _loading.appendChild(_lchild)
  10366. var _box = $$('div', {
  10367. "style": {
  10368. "position": "relative",
  10369. "width": "100%",
  10370. "height": "100%",
  10371. },
  10372. })
  10373. _box.appendChild(_loading)
  10374. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10375. switch (str) {
  10376. case "CocoPi":
  10377. aTool = 57;
  10378. _iframe = $$("iframe", {
  10379. "allowpaymentrequest": "allowpaymentrequest",
  10380. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10381. "webkitallowfullscreen": "",
  10382. "mozallowfullscreen": "",
  10383. "frameborder": "no",
  10384. "border": "0",
  10385. "scrolling ": "no",
  10386. "style": {
  10387. "cssText": "border:0;width:100%;height:100%"
  10388. },
  10389. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10390. })
  10391. _box.appendChild(_iframe);
  10392. _box.appendChild(_jie);
  10393. _formdiv = new U.UF.UI.form(
  10394. "CocoPi",
  10395. _box, {
  10396. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10397. "style": {
  10398. "width": "90%",
  10399. "height": "90%",
  10400. "overflow": 'hidden'
  10401. },
  10402. "onresize": function () { }
  10403. }, {
  10404. closecallback: function () { }
  10405. }, {
  10406. "style": {
  10407. "height": "36px"
  10408. }
  10409. }).form; //創建窗體
  10410. _taskbar = {
  10411. "id": str + _formdiv.id,
  10412. "style": {
  10413. "backgroundImage": "url(/img/icon/cocopi.png)"
  10414. },
  10415. "name": "CocoPi",
  10416. "forms": _formdiv,
  10417. "click": function () {
  10418. U.MD.D.I.openApplication(str, obj, info);
  10419. }
  10420. }
  10421. break;
  10422. }
  10423. if (_iframe) {
  10424. if (str == 'CocoPi') {
  10425. _iframe = _formdiv.querySelector('iframe')
  10426. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10427. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10428. })
  10429. if (onloadListener) {
  10430. _iframe.contentDocument.location.reload()
  10431. } else {
  10432. _iframe.contentDocument.location.reload()
  10433. }
  10434. }
  10435. _jie.onclick = async () => {
  10436. let text = ''
  10437. if (aTool == 57) {
  10438. text = _iframe.contentWindow.getLoadXmlStr()
  10439. }
  10440. _loading.style.display = 'flex'
  10441. console.log(_loading);
  10442. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10443. _loading.style.display = 'none'
  10444. let _div = document.createElement('div')
  10445. _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;"
  10446. let _inner = document.createElement('div')
  10447. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10448. _inner.innerHTML = "上傳成功"
  10449. _div.appendChild(_inner)
  10450. _iframe.contentWindow.window.document.body.appendChild(_div)
  10451. _div.onclick = () => {
  10452. _iframe.contentWindow.window.document.body.removeChild(_div)
  10453. }
  10454. setTimeout(() => {
  10455. _iframe.contentWindow.window.document.body.removeChild(_div)
  10456. }, 1000);
  10457. }, [], { "type": "POST", "withCredentials": true });
  10458. }
  10459. }
  10460. }
  10461. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10462. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10463. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10464. _userid = student.userid, //登錄用戶id
  10465. _username = student.student //用戶名字
  10466. let _iframe;
  10467. let _cid = cid,
  10468. _stage = stage,
  10469. _task = task,
  10470. _tool = tool;
  10471. var _jie = $$("div", {
  10472. "style": {
  10473. "position": "absolute",
  10474. "bottom": "50px",
  10475. "right": "50px",
  10476. "zIndex": "9999",
  10477. "backgroundColor": "#2268bc",
  10478. "color": "#fff",
  10479. "padding": "12px 20px",
  10480. "cursor": "pointer",
  10481. "borderRadius": "4px",
  10482. },
  10483. "innerHTML": "提交作業"
  10484. })
  10485. let aTool = ''
  10486. let _loading = document.createElement('div')
  10487. _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;"
  10488. // _loading.id = "";
  10489. let _lchild = document.createElement('div')
  10490. let _limg = document.createElement('img')
  10491. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10492. _limg.style = "width: 26px;margin-right: 10px;"
  10493. _lchild.appendChild(_limg)
  10494. let _lspan = document.createElement('span')
  10495. _lspan.innerHTML = "上傳中..."
  10496. _lchild.appendChild(_lspan)
  10497. _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%);"
  10498. _loading.appendChild(_lchild)
  10499. var _box = $$('div', {
  10500. "style": {
  10501. "position": "relative",
  10502. "width": "100%",
  10503. "height": "100%",
  10504. },
  10505. })
  10506. _box.appendChild(_loading)
  10507. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10508. switch (str) {
  10509. case "CocoPi":
  10510. aTool = 57;
  10511. _iframe = $$("iframe", {
  10512. "allowpaymentrequest": "allowpaymentrequest",
  10513. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10514. "webkitallowfullscreen": "",
  10515. "mozallowfullscreen": "",
  10516. "frameborder": "no",
  10517. "border": "0",
  10518. "scrolling ": "no",
  10519. "style": {
  10520. "cssText": "border:0;width:100%;height:100%"
  10521. },
  10522. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10523. })
  10524. _box.appendChild(_iframe);
  10525. _box.appendChild(_jie);
  10526. _formdiv = new U.UF.UI.form(
  10527. "CocoPi-" + _username,
  10528. _box, {
  10529. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10530. "style": {
  10531. "width": "90%",
  10532. "height": "90%",
  10533. "overflow": 'hidden'
  10534. },
  10535. "onresize": function () { }
  10536. }, {
  10537. closecallback: function () { }
  10538. }, {
  10539. "style": {
  10540. "height": "36px"
  10541. }
  10542. }).form; //創建窗體
  10543. _taskbar = {
  10544. "id": str + _formdiv.id,
  10545. "style": {
  10546. "backgroundImage": "url(/img/icon/cocopi.png)"
  10547. },
  10548. "name": "CocoPi",
  10549. "forms": _formdiv,
  10550. "click": function () {
  10551. U.MD.D.I.openApplication(str, obj, info);
  10552. }
  10553. }
  10554. break;
  10555. }
  10556. if (_iframe) {
  10557. if (str == 'CocoPi') {
  10558. _iframe = _formdiv.querySelector('iframe')
  10559. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10560. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10561. })
  10562. if (onloadListener) {
  10563. _iframe.contentDocument.location.reload()
  10564. } else {
  10565. _iframe.contentDocument.location.reload()
  10566. }
  10567. }
  10568. _jie.onclick = async () => {
  10569. let text = ''
  10570. if (aTool == 57) {
  10571. text = _iframe.contentWindow.getLoadXmlStr()
  10572. }
  10573. _loading.style.display = 'flex'
  10574. console.log(_loading);
  10575. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10576. _loading.style.display = 'none'
  10577. let _div = document.createElement('div')
  10578. _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;"
  10579. let _inner = document.createElement('div')
  10580. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10581. _inner.innerHTML = "上傳成功"
  10582. _div.appendChild(_inner)
  10583. _iframe.contentWindow.window.document.body.appendChild(_div)
  10584. _div.onclick = () => {
  10585. _iframe.contentWindow.window.document.body.removeChild(_div)
  10586. }
  10587. setTimeout(() => {
  10588. _iframe.contentWindow.window.document.body.removeChild(_div)
  10589. }, 1000);
  10590. }, [], { "type": "POST", "withCredentials": true });
  10591. }
  10592. }
  10593. }
  10594. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10595. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10596. if (res.value[0].length > 0) {
  10597. if (atool == 57) {
  10598. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10599. }
  10600. } else {
  10601. if (atool == 57) {
  10602. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10603. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10604. }
  10605. }
  10606. }, [], { "type": "POST", "withCredentials": true });
  10607. }