DeskTop.js 750 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "漢字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "國學經典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "筆畫訓練", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "書法課堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "課程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "學生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "學生評價", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班級管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "課程進展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "課程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的評價", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的資料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材庫", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //鬆山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "賽諾梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "漢字宮", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  418. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  435. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教師桌面圖標的全局變量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教師桌面圖標的全局變量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龍華中心小學教師桌面圖標的全局變量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院實小教師桌面圖標的全局變量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "評測看闆", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院實小教師桌面圖標的全局變量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小學教師桌面圖標的全局變量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小學學生桌面圖標的全局變量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //雲海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未來教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  994. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未來教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未來教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成華教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成華教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成華教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //鹽田區幼兒園
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //鹽田區幼兒園
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  1331. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  1364. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  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. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  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. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北師大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "項目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北師大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "項目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1573. ];
  1574. //CUHK_EDU
  1575. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1576. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1577. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1579. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1580. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1583. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1584. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1586. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1587. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1588. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1589. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1590. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1591. ];
  1592. //CUHK_EDU
  1593. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1594. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. ];
  1599. //010503
  1600. U.MD.D.I.x010503TeacherDeskIcon = [
  1601. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1602. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1604. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1605. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1609. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1610. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1611. ];
  1612. //010503
  1613. U.MD.D.I.x010503StudentDeskIcon = [
  1614. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. ];
  1619. //SPROUT Lab
  1620. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1621. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1622. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1623. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1628. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1630. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1631. ];
  1632. //SPROUT Lab
  1633. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1634. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1638. ];
  1639. //010204
  1640. U.MD.D.I.x010204TeacherDeskIcon = [
  1641. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1642. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1643. ];
  1644. //010204
  1645. U.MD.D.I.x010204StudentDeskIcon = [
  1646. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //trail
  1652. U.MD.D.I.trailTeacherDeskIcon = [
  1653. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1656. ];
  1657. //trail
  1658. U.MD.D.I.trailStudentDeskIcon = [
  1659. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1664. ];
  1665. //trial
  1666. U.MD.D.I.trialTeacherDeskIcon = [
  1667. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1668. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1669. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1670. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1671. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1673. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1674. ];
  1675. //trial
  1676. U.MD.D.I.trialStudentDeskIcon = [
  1677. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1678. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1679. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1682. ];
  1683. //010504
  1684. U.MD.D.I.x010504TeacherDeskIcon = [
  1685. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1686. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1688. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1689. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1692. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1694. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //010504
  1698. U.MD.D.I.x010504StudentDeskIcon = [
  1699. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. ];
  1704. //010505
  1705. U.MD.D.I.x010505TeacherDeskIcon = [
  1706. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1707. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1708. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1709. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1710. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1713. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1715. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1717. ];
  1718. //010505
  1719. U.MD.D.I.x010505StudentDeskIcon = [
  1720. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. ];
  1725. //SCNUET
  1726. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1727. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1728. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1729. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1732. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1733. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1734. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1735. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1736. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1737. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1738. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1739. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1740. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1742. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1744. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1751. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1752. ];
  1753. //SCNUET
  1754. U.MD.D.I.SCNUETAdminDeskIcon = [
  1755. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1756. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1757. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1762. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1763. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1764. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1765. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1766. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1767. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1768. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1770. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1771. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1772. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1773. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1774. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1775. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1776. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1777. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1778. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1779. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1780. ];
  1781. //SCNUET
  1782. U.MD.D.I.SCNUETStudentDeskIcon = [
  1783. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1784. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1785. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1786. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. ];
  1788. //x020201
  1789. U.MD.D.I.x020201TeacherDeskIcon = [
  1790. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1791. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1792. { "Name": "項目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1795. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1796. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1797. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1801. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1804. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1805. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1806. ];
  1807. //x020201
  1808. U.MD.D.I.x020201AdminDeskIcon = [
  1809. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1810. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1811. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1812. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1813. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1814. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1815. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1816. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1817. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1818. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1820. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1821. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1822. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1823. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1824. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1825. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1826. ];
  1827. //020201
  1828. U.MD.D.I.x020201StudentDeskIcon = [
  1829. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1830. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1831. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1832. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1833. ];
  1834. //010611
  1835. U.MD.D.I.x010611TeacherDeskIcon = [
  1836. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1837. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1838. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1839. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1840. { "Name": "項目管理", "Url": "studentCourseS", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1843. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1844. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1845. ];
  1846. //010611
  1847. U.MD.D.I.x010611StudentDeskIcon = [
  1848. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1849. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1850. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. ];
  1853. //010612
  1854. U.MD.D.I.x010612TeacherDeskIcon = [
  1855. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1856. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1857. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1858. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1859. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1864. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1865. ];
  1866. //010612
  1867. U.MD.D.I.x010612StudentDeskIcon = [
  1868. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1869. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1870. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1872. ];
  1873. //tianyuan
  1874. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1875. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1876. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1877. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1878. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1880. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1881. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1882. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1883. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1884. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1885. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1886. ];
  1887. //010611
  1888. U.MD.D.I.tianyuanStudentDeskIcon = [
  1889. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1890. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1891. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1893. ];
  1894. //320101
  1895. U.MD.D.I.x320101TeacherDeskIcon = [
  1896. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1897. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1898. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1899. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1900. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1901. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1902. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1903. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1904. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1905. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1906. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1907. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1908. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1909. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1910. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1911. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1912. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1913. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1914. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1915. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1916. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1917. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1918. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1919. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1920. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1921. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1922. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1923. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1924. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1925. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1926. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1927. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1928. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1929. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1930. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1931. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1932. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1933. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1934. ];
  1935. //320101
  1936. U.MD.D.I.x320101StudentDeskIcon = [
  1937. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1941. ];
  1942. //szsy
  1943. U.MD.D.I.szsyTeacherDeskIcon = [
  1944. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1946. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1947. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1948. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1949. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1952. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1953. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1954. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1955. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1956. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1957. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1958. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1959. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1960. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1961. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1962. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1963. ];
  1964. //szsy
  1965. U.MD.D.I.szsyStudentDeskIcon = [
  1966. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1967. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1968. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1969. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1970. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1971. ];
  1972. //010404
  1973. U.MD.D.I.x010404TeacherDeskIcon = [
  1974. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1975. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1976. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1977. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1978. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1979. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1980. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1981. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1982. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1983. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1984. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1985. ];
  1986. //010404
  1987. U.MD.D.I.x010404StudentDeskIcon = [
  1988. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1989. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1990. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1991. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1992. ];
  1993. //cocorobo demo
  1994. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1995. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1996. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1997. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1998. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1999. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2000. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2001. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2002. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2003. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2004. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2005. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2006. ];
  2007. //cocorobo demo
  2008. U.MD.D.I.demoCocoStudentDeskIcon = [
  2009. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2010. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2011. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2012. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2013. ];
  2014. //MOAI
  2015. U.MD.D.I.MOAITeacherDeskIcon = [
  2016. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2017. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2018. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2019. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2020. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2021. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2022. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2023. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2024. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2025. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2026. ];
  2027. //MOAI 學生端
  2028. U.MD.D.I.MOAIStudentDeskIcon = [
  2029. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2030. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2031. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2032. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2033. ];
  2034. //PREPAI
  2035. U.MD.D.I.PREPAITeacherDeskIcon = [
  2036. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2037. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2038. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2039. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2040. ];
  2041. //PREPAI 學生端
  2042. U.MD.D.I.PREPAIStudentDeskIcon = [
  2043. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2044. ];
  2045. //智理集團
  2046. U.MD.D.I.zlteacherDeskIcon = [
  2047. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2048. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2049. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2050. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2051. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2052. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2053. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2054. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  2055. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2056. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2057. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2058. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2059. ];
  2060. //智理集團
  2061. U.MD.D.I.zlstudentDeskIcon = [
  2062. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2063. ];
  2064. //#region 桌面初始化a
  2065. /**
  2066. * 初始化桌面的起始函數
  2067. *
  2068. */
  2069. U.MD.D.I.init = function () {
  2070. if ($("#U_MD_D_K")[0]) {
  2071. //初始化桌面圖標
  2072. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2073. // var clickUrl = ':12588/requestIp.php';
  2074. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2075. // U.MD.D.I.Ip = data;
  2076. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2077. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2078. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2079. // })
  2080. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  2081. // })
  2082. }
  2083. }
  2084. /**
  2085. * 模式切換
  2086. *
  2087. */
  2088. U.MD.D.I.ModeCheck = function (type) {
  2089. if (US.Config.type == type) {
  2090. return
  2091. }
  2092. US.Config.type = type
  2093. $('.U_PBL_Check .active')[0].className = ''
  2094. if (type == 1) {
  2095. $('.U_PBL_Check div')[0].className = 'active'
  2096. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2097. } else {
  2098. $('.U_PBL_Check div')[1].className = 'active'
  2099. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2100. }
  2101. //初始化桌面圖標
  2102. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2103. if (type == 2) {
  2104. U.MD.D.I.openApplication("project")
  2105. }
  2106. }
  2107. /**
  2108. * 隱藏任務欄
  2109. *
  2110. * @param {element} 桌面元素
  2111. */
  2112. U.MD.D.I.hiddenTaskbar = function (el) {
  2113. //任務欄位置變小
  2114. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2115. //桌面的位置變大
  2116. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2117. }
  2118. /**
  2119. * 隱藏任務欄
  2120. *
  2121. * @param {element} 桌面元素
  2122. */
  2123. U.MD.D.I.hiddenTaskbarout = function (el) {
  2124. //任務欄位置變小
  2125. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2126. //任務欄位置變化
  2127. U.selectEl(el).css({ "bottom": "-60px" });
  2128. //桌面的位置變大
  2129. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2130. }
  2131. }
  2132. /**
  2133. * 初始化打印桌面圖標
  2134. *
  2135. * @param {element} 桌面元素
  2136. */
  2137. U.MD.D.I.initDesktopIcons = function (el, type) {
  2138. var i, //用於循環
  2139. _content, //桌面圖標元素
  2140. _iconcontent, //桌面圖標元素
  2141. _frag = $$("frag"), //定義一個碎片元素
  2142. _type = US.userInfo.type,
  2143. _org = US.userInfo.org,
  2144. _oid = US.userInfo.organizeid,
  2145. _role = US.userInfo.role,
  2146. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  2147. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  2148. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  2149. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  2150. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  2151. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  2152. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  2153. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2154. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2155. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2156. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  2157. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  2158. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  2159. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  2160. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取鬆山湖
  2161. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  2162. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  2163. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  2164. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  2165. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  2166. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  2167. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  2168. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  2169. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  2170. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2171. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2172. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  2173. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  2174. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  2175. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  2176. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  2177. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  2178. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2179. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2180. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2181. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2182. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2183. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2184. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2185. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2186. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2187. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  2188. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2189. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2190. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2191. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2192. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  2193. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2194. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2195. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2196. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2197. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2198. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2199. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2200. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2201. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2202. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2203. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2204. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2205. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2206. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2207. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2208. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  2209. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2210. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2211. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2212. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2213. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2214. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2215. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2216. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2217. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2218. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2219. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2220. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  2221. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  2222. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  2223. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  2224. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2225. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2226. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2227. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2228. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2229. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2230. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2231. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2232. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2233. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2234. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2235. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2236. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2237. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2238. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2239. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2240. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2241. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2242. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2243. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2244. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2245. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2246. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2247. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2248. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2249. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2250. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2251. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2252. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2253. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2254. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2255. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2256. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2257. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2258. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2259. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2260. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2261. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2262. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2263. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2264. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2265. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2266. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2267. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2268. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2269. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2270. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2271. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2272. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2273. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2274. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2275. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2276. _PREPAITeacherDeskIcon = U.MD.D.I.PREPAITeacherDeskIcon, //PREPAI
  2277. _PREPAIStudentDeskIcon = U.MD.D.I.PREPAIStudentDeskIcon, //PREPAI
  2278. _zlteacherDeskIconInfo = U.MD.D.I.zlteacherDeskIcon, //zl
  2279. _zlstudentDeskIconInfo = U.MD.D.I.zlstudentDeskIcon, //zl
  2280. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2281. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2282. 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', '8406b214-085f-11f0-b508-005056924926', '65ad80f0-16bb-11f0-a66a-005056924926', '9a8076a2-469a-11f0-b60f-005056924926'];
  2283. 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', '62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926', "fa20a652-5f2a-11f0-bf32-005056924926", "eed08ac6-7269-11f0-9c7b-005056924926",'cf30095b-87d5-11f0-9c7b-005056924926'];
  2284. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2285. //清楚桌面圖標
  2286. el.innerHTML = "";
  2287. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2288. _teacherDesktopIconInfo.push(
  2289. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2290. { "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)" } },
  2291. )
  2292. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2293. }
  2294. 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 == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2295. _teacherDesktopIconInfo.push(
  2296. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2297. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2298. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2299. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2300. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2301. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2302. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2303. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2304. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2305. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2306. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2307. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2308. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2309. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2310. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2311. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2312. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2313. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2314. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2315. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2316. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2317. )
  2318. }
  2319. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//鬆坪學校
  2320. _teacherDesktopIconInfo.push(
  2321. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2322. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2323. )
  2324. }
  2325. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//鬆坪學校
  2326. _nsfxTeacherDeskIconInfo.push(
  2327. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2328. )
  2329. }
  2330. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2331. // _teacherDesktopIconInfo.push(
  2332. // )
  2333. // }
  2334. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2335. _teacherDesktopIconInfo.push(
  2336. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2337. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2338. )
  2339. }
  2340. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2341. _teacherDesktopIconInfo.push(
  2342. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2343. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2344. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2345. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2346. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2347. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2348. )
  2349. _studentDesktopIconInfo.push(
  2350. )
  2351. }
  2352. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2353. _teacherDesktopIconInfo.push(
  2354. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2355. )
  2356. _studentDesktopIconInfo.push(
  2357. )
  2358. }
  2359. //010606 組織
  2360. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2361. _teacherDesktopIconInfo.push(
  2362. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2363. )
  2364. _studentDesktopIconInfo.push(
  2365. )
  2366. }
  2367. //麒麟二中 和 民新小學
  2368. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2369. _teacherDesktopIconInfo.push(
  2370. )
  2371. }
  2372. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2373. _teacherDesktopIconInfo.push(
  2374. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2375. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2376. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2377. )
  2378. }
  2379. if (_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1') {
  2380. _hkTeacherDeskIconInfo.push(
  2381. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2382. )
  2383. }
  2384. //北師大附中(010601)
  2385. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2386. // _teacherDesktopIconInfo.push(
  2387. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2388. // )
  2389. // _studentDesktopIconInfo.push(
  2390. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2391. // )
  2392. // }
  2393. //樂善堂余近卿中學
  2394. if (_oid == "8d074a02-6057-11ef-b873-005056b86db5") {
  2395. _teacherDesktopIconInfo.push(
  2396. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2397. )
  2398. }
  2399. // Education Artificial Intelligence
  2400. if (_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0") {
  2401. _teacherDesktopIconInfo.push(
  2402. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2403. )
  2404. }
  2405. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2406. _teacherDesktopIconInfo.push(
  2407. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2408. )
  2409. }
  2410. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2411. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2412. _teacherDesktopIconInfo.push(
  2413. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2414. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2415. )
  2416. }
  2417. //麒麟二中
  2418. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2419. _studentDesktopIconInfo.push(
  2420. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2421. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2422. )
  2423. }
  2424. //萬科雙語
  2425. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2426. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2427. if (el.Name == '項目管理') {
  2428. el.Name = 'PBL項目'
  2429. }
  2430. return el
  2431. })
  2432. _studentDesktopIconInfo3.push(
  2433. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2434. )
  2435. }
  2436. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2437. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2438. return el.Name != '魔盒識字' && el.Name != '24點'
  2439. })
  2440. }
  2441. 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) {
  2442. _studentDesktopIconInfo.push(
  2443. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2444. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2445. )
  2446. }
  2447. //循環創建桌面圖標
  2448. if (type == 1) {
  2449. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2450. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2451. _content = $$("div", {
  2452. className: "U_MD_D_KO",
  2453. "onmousedown": U.UF.C.closure(function (obj) {
  2454. //防止拖動圖標即打開了桌面應用
  2455. U.MD.D.click(this, obj);
  2456. }, [_studentDesktopIconInfo[i]]),
  2457. "onclick": U.UF.C.closure(function (obj) {
  2458. //防止拖動圖標即打開了桌面應用
  2459. U.MD.D.click(this, obj);
  2460. }, [_studentDesktopIconInfo[i]])
  2461. }, _frag); //
  2462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2465. }
  2466. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2467. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2468. _content = $$("div", {
  2469. className: "U_MD_D_KO",
  2470. "onmousedown": U.UF.C.closure(function (obj) {
  2471. //防止拖動圖標即打開了桌面應用
  2472. U.MD.D.click(this, obj);
  2473. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2474. "onclick": U.UF.C.closure(function (obj) {
  2475. //防止拖動圖標即打開了桌面應用
  2476. U.MD.D.click(this, obj);
  2477. }, [_hkZJLSStudentDeskIconInfo[i]])
  2478. }, _frag); //
  2479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2482. } //
  2483. } else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2484. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2485. _content = $$("div", {
  2486. className: "U_MD_D_KO",
  2487. "onmousedown": U.UF.C.closure(function (obj) {
  2488. //防止拖動圖標即打開了桌面應用
  2489. U.MD.D.click(this, obj);
  2490. }, [_ytyStudentDeskIconInfo[i]]),
  2491. "onclick": U.UF.C.closure(function (obj) {
  2492. //防止拖動圖標即打開了桌面應用
  2493. U.MD.D.click(this, obj);
  2494. }, [_ytyStudentDeskIconInfo[i]])
  2495. }, _frag); //
  2496. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2497. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2498. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2499. } //
  2500. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2501. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2502. _content = $$("div", {
  2503. className: "U_MD_D_KO",
  2504. "onmousedown": U.UF.C.closure(function (obj) {
  2505. //防止拖動圖標即打開了桌面應用
  2506. U.MD.D.click(this, obj);
  2507. }, [_jccssylStudentDeskIconInfo[i]]),
  2508. "onclick": U.UF.C.closure(function (obj) {
  2509. //防止拖動圖標即打開了桌面應用
  2510. U.MD.D.click(this, obj);
  2511. }, [_jccssylStudentDeskIconInfo[i]])
  2512. }, _frag); //
  2513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2516. }
  2517. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2518. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2519. _content = $$("div", {
  2520. className: "U_MD_D_KO",
  2521. "onmousedown": U.UF.C.closure(function (obj) {
  2522. //防止拖動圖標即打開了桌面應用
  2523. U.MD.D.click(this, obj);
  2524. }, [_scnuaiStudentDeskIconInfo[i]]),
  2525. "onclick": U.UF.C.closure(function (obj) {
  2526. //防止拖動圖標即打開了桌面應用
  2527. U.MD.D.click(this, obj);
  2528. }, [_scnuaiStudentDeskIconInfo[i]])
  2529. }, _frag); //
  2530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2533. }
  2534. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2535. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2536. _content = $$("div", {
  2537. className: "U_MD_D_KO",
  2538. "onmousedown": U.UF.C.closure(function (obj) {
  2539. //防止拖動圖標即打開了桌面應用
  2540. U.MD.D.click(this, obj);
  2541. }, [_caleStudentDeskIconInfo[i]]),
  2542. "onclick": U.UF.C.closure(function (obj) {
  2543. //防止拖動圖標即打開了桌面應用
  2544. U.MD.D.click(this, obj);
  2545. }, [_caleStudentDeskIconInfo[i]])
  2546. }, _frag); //
  2547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2550. }
  2551. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2552. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2553. _content = $$("div", {
  2554. className: "U_MD_D_KO",
  2555. "onmousedown": U.UF.C.closure(function (obj) {
  2556. //防止拖動圖標即打開了桌面應用
  2557. U.MD.D.click(this, obj);
  2558. }, [_thuioeStudentDeskIconInfo[i]]),
  2559. "onclick": U.UF.C.closure(function (obj) {
  2560. //防止拖動圖標即打開了桌面應用
  2561. U.MD.D.click(this, obj);
  2562. }, [_thuioeStudentDeskIconInfo[i]])
  2563. }, _frag); //
  2564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2567. }
  2568. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2569. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2570. _content = $$("div", {
  2571. className: "U_MD_D_KO",
  2572. "onmousedown": U.UF.C.closure(function (obj) {
  2573. //防止拖動圖標即打開了桌面應用
  2574. U.MD.D.click(this, obj);
  2575. }, [_tpcStudentDeskIconInfo[i]]),
  2576. "onclick": U.UF.C.closure(function (obj) {
  2577. //防止拖動圖標即打開了桌面應用
  2578. U.MD.D.click(this, obj);
  2579. }, [_tpcStudentDeskIconInfo[i]])
  2580. }, _frag); //
  2581. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2582. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2583. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2584. } //
  2585. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2586. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2587. _content = $$("div", {
  2588. className: "U_MD_D_KO",
  2589. "onmousedown": U.UF.C.closure(function (obj) {
  2590. //防止拖動圖標即打開了桌面應用
  2591. U.MD.D.click(this, obj);
  2592. }, [_chjyjStudentDeskIconInfo[i]]),
  2593. "onclick": U.UF.C.closure(function (obj) {
  2594. //防止拖動圖標即打開了桌面應用
  2595. U.MD.D.click(this, obj);
  2596. }, [_chjyjStudentDeskIconInfo[i]])
  2597. }, _frag); //
  2598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2601. }
  2602. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2603. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2604. _content = $$("div", {
  2605. className: "U_MD_D_KO",
  2606. "onmousedown": U.UF.C.closure(function (obj) {
  2607. //防止拖動圖標即打開了桌面應用
  2608. U.MD.D.click(this, obj);
  2609. }, [_szjkyStudentDeskIconInfo[i]]),
  2610. "onclick": U.UF.C.closure(function (obj) {
  2611. //防止拖動圖標即打開了桌面應用
  2612. U.MD.D.click(this, obj);
  2613. }, [_szjkyStudentDeskIconInfo[i]])
  2614. }, _frag); //
  2615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2618. }
  2619. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2620. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2621. _content = $$("div", {
  2622. className: "U_MD_D_KO",
  2623. "onmousedown": U.UF.C.closure(function (obj) {
  2624. //防止拖動圖標即打開了桌面應用
  2625. U.MD.D.click(this, obj);
  2626. }, [_x020201StudentDeskIconInfo[i]]),
  2627. "onclick": U.UF.C.closure(function (obj) {
  2628. //防止拖動圖標即打開了桌面應用
  2629. U.MD.D.click(this, obj);
  2630. }, [_x020201StudentDeskIconInfo[i]])
  2631. }, _frag); //
  2632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2635. }
  2636. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2637. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2638. _content = $$("div", {
  2639. className: "U_MD_D_KO",
  2640. "onmousedown": U.UF.C.closure(function (obj) {
  2641. //防止拖動圖標即打開了桌面應用
  2642. U.MD.D.click(this, obj);
  2643. }, [_SCNUETStudentDeskIconInfo[i]]),
  2644. "onclick": U.UF.C.closure(function (obj) {
  2645. //防止拖動圖標即打開了桌面應用
  2646. U.MD.D.click(this, obj);
  2647. }, [_SCNUETStudentDeskIconInfo[i]])
  2648. }, _frag); //
  2649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2652. }
  2653. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2654. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2655. _content = $$("div", {
  2656. className: "U_MD_D_KO",
  2657. "onmousedown": U.UF.C.closure(function (obj) {
  2658. //防止拖動圖標即打開了桌面應用
  2659. U.MD.D.click(this, obj);
  2660. }, [_dseiStudentDeskIconInfo[i]]),
  2661. "onclick": U.UF.C.closure(function (obj) {
  2662. //防止拖動圖標即打開了桌面應用
  2663. U.MD.D.click(this, obj);
  2664. }, [_dseiStudentDeskIconInfo[i]])
  2665. }, _frag); //
  2666. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2667. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2668. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2669. }
  2670. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2671. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2672. _content = $$("div", {
  2673. className: "U_MD_D_KO",
  2674. "onmousedown": U.UF.C.closure(function (obj) {
  2675. //防止拖動圖標即打開了桌面應用
  2676. U.MD.D.click(this, obj);
  2677. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2678. "onclick": U.UF.C.closure(function (obj) {
  2679. //防止拖動圖標即打開了桌面應用
  2680. U.MD.D.click(this, obj);
  2681. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2682. }, _frag); //
  2683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2686. }
  2687. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2688. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2689. _content = $$("div", {
  2690. className: "U_MD_D_KO",
  2691. "onmousedown": U.UF.C.closure(function (obj) {
  2692. //防止拖動圖標即打開了桌面應用
  2693. U.MD.D.click(this, obj);
  2694. }, [_nsfxStudentDeskIconInfo[i]]),
  2695. "onclick": U.UF.C.closure(function (obj) {
  2696. //防止拖動圖標即打開了桌面應用
  2697. U.MD.D.click(this, obj);
  2698. }, [_nsfxStudentDeskIconInfo[i]])
  2699. }, _frag); //
  2700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2703. }
  2704. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2705. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2706. _content = $$("div", {
  2707. className: "U_MD_D_KO",
  2708. "onmousedown": U.UF.C.closure(function (obj) {
  2709. //防止拖動圖標即打開了桌面應用
  2710. U.MD.D.click(this, obj);
  2711. }, [_stiaStudentDeskIconInfo[i]]),
  2712. "onclick": U.UF.C.closure(function (obj) {
  2713. //防止拖動圖標即打開了桌面應用
  2714. U.MD.D.click(this, obj);
  2715. }, [_stiaStudentDeskIconInfo[i]])
  2716. }, _frag); //
  2717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2720. }
  2721. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2722. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2723. _content = $$("div", {
  2724. className: "U_MD_D_KO",
  2725. "onmousedown": U.UF.C.closure(function (obj) {
  2726. //防止拖動圖標即打開了桌面應用
  2727. U.MD.D.click(this, obj);
  2728. }, [_szdjgStudentDeskIconInfo[i]]),
  2729. "onclick": U.UF.C.closure(function (obj) {
  2730. //防止拖動圖標即打開了桌面應用
  2731. U.MD.D.click(this, obj);
  2732. }, [_szdjgStudentDeskIconInfo[i]])
  2733. }, _frag); //
  2734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2737. }
  2738. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2739. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2740. _content = $$("div", {
  2741. className: "U_MD_D_KO",
  2742. "onmousedown": U.UF.C.closure(function (obj) {
  2743. //防止拖動圖標即打開了桌面應用
  2744. U.MD.D.click(this, obj);
  2745. }, [_x010607StudentDeskIconInfo[i]]),
  2746. "onclick": U.UF.C.closure(function (obj) {
  2747. //防止拖動圖標即打開了桌面應用
  2748. U.MD.D.click(this, obj);
  2749. }, [_x010607StudentDeskIconInfo[i]])
  2750. }, _frag); //
  2751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2754. }
  2755. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2756. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2757. _content = $$("div", {
  2758. className: "U_MD_D_KO",
  2759. "onmousedown": U.UF.C.closure(function (obj) {
  2760. //防止拖動圖標即打開了桌面應用
  2761. U.MD.D.click(this, obj);
  2762. }, [_xhlyStudentDeskIconInfo[i]]),
  2763. "onclick": U.UF.C.closure(function (obj) {
  2764. //防止拖動圖標即打開了桌面應用
  2765. U.MD.D.click(this, obj);
  2766. }, [_xhlyStudentDeskIconInfo[i]])
  2767. }, _frag); //
  2768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2771. }
  2772. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2773. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2774. _content = $$("div", {
  2775. className: "U_MD_D_KO",
  2776. "onmousedown": U.UF.C.closure(function (obj) {
  2777. //防止拖動圖標即打開了桌面應用
  2778. U.MD.D.click(this, obj);
  2779. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2780. "onclick": U.UF.C.closure(function (obj) {
  2781. //防止拖動圖標即打開了桌面應用
  2782. U.MD.D.click(this, obj);
  2783. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2784. }, _frag); //
  2785. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2786. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2787. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2788. }
  2789. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2790. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2791. _content = $$("div", {
  2792. className: "U_MD_D_KO",
  2793. "onmousedown": U.UF.C.closure(function (obj) {
  2794. //防止拖動圖標即打開了桌面應用
  2795. U.MD.D.click(this, obj);
  2796. }, [_x010503StudentDeskIconInfo[i]]),
  2797. "onclick": U.UF.C.closure(function (obj) {
  2798. //防止拖動圖標即打開了桌面應用
  2799. U.MD.D.click(this, obj);
  2800. }, [_x010503StudentDeskIconInfo[i]])
  2801. }, _frag); //
  2802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2805. }
  2806. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2807. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2808. _content = $$("div", {
  2809. className: "U_MD_D_KO",
  2810. "onmousedown": U.UF.C.closure(function (obj) {
  2811. //防止拖動圖標即打開了桌面應用
  2812. U.MD.D.click(this, obj);
  2813. }, [_x010504StudentDeskIconInfo[i]]),
  2814. "onclick": U.UF.C.closure(function (obj) {
  2815. //防止拖動圖標即打開了桌面應用
  2816. U.MD.D.click(this, obj);
  2817. }, [_x010504StudentDeskIconInfo[i]])
  2818. }, _frag); //
  2819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2822. }
  2823. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2824. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2825. _content = $$("div", {
  2826. className: "U_MD_D_KO",
  2827. "onmousedown": U.UF.C.closure(function (obj) {
  2828. //防止拖動圖標即打開了桌面應用
  2829. U.MD.D.click(this, obj);
  2830. }, [_x010505StudentDeskIconInfo[i]]),
  2831. "onclick": U.UF.C.closure(function (obj) {
  2832. //防止拖動圖標即打開了桌面應用
  2833. U.MD.D.click(this, obj);
  2834. }, [_x010505StudentDeskIconInfo[i]])
  2835. }, _frag); //
  2836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2839. }
  2840. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2841. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2842. _content = $$("div", {
  2843. className: "U_MD_D_KO",
  2844. "onmousedown": U.UF.C.closure(function (obj) {
  2845. //防止拖動圖標即打開了桌面應用
  2846. U.MD.D.click(this, obj);
  2847. }, [_x010404StudentDeskIconInfo[i]]),
  2848. "onclick": U.UF.C.closure(function (obj) {
  2849. //防止拖動圖標即打開了桌面應用
  2850. U.MD.D.click(this, obj);
  2851. }, [_x010404StudentDeskIconInfo[i]])
  2852. }, _frag); //
  2853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2856. }
  2857. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2858. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2859. _content = $$("div", {
  2860. className: "U_MD_D_KO",
  2861. "onmousedown": U.UF.C.closure(function (obj) {
  2862. //防止拖動圖標即打開了桌面應用
  2863. U.MD.D.click(this, obj);
  2864. }, [_x010204StudentDeskIconInfo[i]]),
  2865. "onclick": U.UF.C.closure(function (obj) {
  2866. //防止拖動圖標即打開了桌面應用
  2867. U.MD.D.click(this, obj);
  2868. }, [_x010204StudentDeskIconInfo[i]])
  2869. }, _frag); //
  2870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2873. }
  2874. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2875. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2876. _content = $$("div", {
  2877. className: "U_MD_D_KO",
  2878. "onmousedown": U.UF.C.closure(function (obj) {
  2879. //防止拖動圖標即打開了桌面應用
  2880. U.MD.D.click(this, obj);
  2881. }, [_x320101StudentDeskIconInfo[i]]),
  2882. "onclick": U.UF.C.closure(function (obj) {
  2883. //防止拖動圖標即打開了桌面應用
  2884. U.MD.D.click(this, obj);
  2885. }, [_x320101StudentDeskIconInfo[i]])
  2886. }, _frag); //
  2887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2890. }
  2891. } else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  2892. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  2893. _content = $$("div", {
  2894. className: "U_MD_D_KO",
  2895. "onmousedown": U.UF.C.closure(function (obj) {
  2896. //防止拖動圖標即打開了桌面應用
  2897. U.MD.D.click(this, obj);
  2898. }, [_MOAIStudentDeskIcon[i]]),
  2899. "onclick": U.UF.C.closure(function (obj) {
  2900. //防止拖動圖標即打開了桌面應用
  2901. U.MD.D.click(this, obj);
  2902. }, [_MOAIStudentDeskIcon[i]])
  2903. }, _frag); //
  2904. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2905. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  2906. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  2907. }
  2908. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2909. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2910. _content = $$("div", {
  2911. className: "U_MD_D_KO",
  2912. "onmousedown": U.UF.C.closure(function (obj) {
  2913. //防止拖動圖標即打開了桌面應用
  2914. U.MD.D.click(this, obj);
  2915. }, [_trailStudentDeskIconInfo[i]]),
  2916. "onclick": U.UF.C.closure(function (obj) {
  2917. //防止拖動圖標即打開了桌面應用
  2918. U.MD.D.click(this, obj);
  2919. }, [_trailStudentDeskIconInfo[i]])
  2920. }, _frag); //
  2921. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2922. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2923. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2924. }
  2925. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2926. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2927. _content = $$("div", {
  2928. className: "U_MD_D_KO",
  2929. "onmousedown": U.UF.C.closure(function (obj) {
  2930. //防止拖動圖標即打開了桌面應用
  2931. U.MD.D.click(this, obj);
  2932. }, [_trialStudentDeskIconInfo[i]]),
  2933. "onclick": U.UF.C.closure(function (obj) {
  2934. //防止拖動圖標即打開了桌面應用
  2935. U.MD.D.click(this, obj);
  2936. }, [_trialStudentDeskIconInfo[i]])
  2937. }, _frag); //
  2938. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2939. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2940. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2941. }
  2942. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2943. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2944. _content = $$("div", {
  2945. className: "U_MD_D_KO",
  2946. "onmousedown": U.UF.C.closure(function (obj) {
  2947. //防止拖動圖標即打開了桌面應用
  2948. U.MD.D.click(this, obj);
  2949. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2950. "onclick": U.UF.C.closure(function (obj) {
  2951. //防止拖動圖標即打開了桌面應用
  2952. U.MD.D.click(this, obj);
  2953. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2954. }, _frag); //
  2955. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2956. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2957. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2958. }
  2959. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2960. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖動圖標即打開了桌面應用
  2965. U.MD.D.click(this, obj);
  2966. }, [_szsyStudentDeskIconInfo[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖動圖標即打開了桌面應用
  2969. U.MD.D.click(this, obj);
  2970. }, [_szsyStudentDeskIconInfo[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2975. }
  2976. } else if (_type == 2 && (_org == "eed08ac6-7269-11f0-9c7b-005056924926")) {
  2977. for (i = 0; i < _PREPAIStudentDeskIcon.length; i++) {
  2978. _content = $$("div", {
  2979. className: "U_MD_D_KO",
  2980. "onmousedown": U.UF.C.closure(function (obj) {
  2981. //防止拖動圖標即打開了桌面應用
  2982. U.MD.D.click(this, obj);
  2983. }, [_PREPAIStudentDeskIcon[i]]),
  2984. "onclick": U.UF.C.closure(function (obj) {
  2985. //防止拖動圖標即打開了桌面應用
  2986. U.MD.D.click(this, obj);
  2987. }, [_PREPAIStudentDeskIcon[i]])
  2988. }, _frag); //
  2989. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAIStudentDeskIcon[i].style }, _iconcontent);
  2991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAIStudentDeskIcon[i].Name }, _iconcontent);
  2992. }
  2993. } else if (_type == 2 && (_org == "cf30095b-87d5-11f0-9c7b-005056924926")) {
  2994. for (i = 0; i < _zlstudentDeskIconInfo.length; i++) {
  2995. _content = $$("div", {
  2996. className: "U_MD_D_KO",
  2997. "onmousedown": U.UF.C.closure(function (obj) {
  2998. //防止拖動圖標即打開了桌面應用
  2999. U.MD.D.click(this, obj);
  3000. }, [_zlstudentDeskIconInfo[i]]),
  3001. "onclick": U.UF.C.closure(function (obj) {
  3002. //防止拖動圖標即打開了桌面應用
  3003. U.MD.D.click(this, obj);
  3004. }, [_zlstudentDeskIconInfo[i]])
  3005. }, _frag); //
  3006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlstudentDeskIconInfo[i].style }, _iconcontent);
  3008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlstudentDeskIconInfo[i].Name }, _iconcontent);
  3009. }
  3010. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  3011. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖動圖標即打開了桌面應用
  3016. U.MD.D.click(this, obj);
  3017. }, [_demoCocoStudentDeskIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖動圖標即打開了桌面應用
  3020. U.MD.D.click(this, obj);
  3021. }, [_demoCocoStudentDeskIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  3028. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  3029. _content = $$("div", {
  3030. className: "U_MD_D_KO",
  3031. "onmousedown": U.UF.C.closure(function (obj) {
  3032. //防止拖動圖標即打開了桌面應用
  3033. U.MD.D.click(this, obj);
  3034. }, [_x010608StudentDeskIconInfo[i]]),
  3035. "onclick": U.UF.C.closure(function (obj) {
  3036. //防止拖動圖標即打開了桌面應用
  3037. U.MD.D.click(this, obj);
  3038. }, [_x010608StudentDeskIconInfo[i]])
  3039. }, _frag); //
  3040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  3042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  3043. }
  3044. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  3045. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  3046. _content = $$("div", {
  3047. className: "U_MD_D_KO",
  3048. "onmousedown": U.UF.C.closure(function (obj) {
  3049. //防止拖動圖標即打開了桌面應用
  3050. U.MD.D.click(this, obj);
  3051. }, [_x010611StudentDeskIconInfo[i]]),
  3052. "onclick": U.UF.C.closure(function (obj) {
  3053. //防止拖動圖標即打開了桌面應用
  3054. U.MD.D.click(this, obj);
  3055. }, [_x010611StudentDeskIconInfo[i]])
  3056. }, _frag); //
  3057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  3059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  3060. }
  3061. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  3062. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  3063. _content = $$("div", {
  3064. className: "U_MD_D_KO",
  3065. "onmousedown": U.UF.C.closure(function (obj) {
  3066. //防止拖動圖標即打開了桌面應用
  3067. U.MD.D.click(this, obj);
  3068. }, [_x010612StudentDeskIconInfo[i]]),
  3069. "onclick": U.UF.C.closure(function (obj) {
  3070. //防止拖動圖標即打開了桌面應用
  3071. U.MD.D.click(this, obj);
  3072. }, [_x010612StudentDeskIconInfo[i]])
  3073. }, _frag); //
  3074. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3075. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  3076. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  3077. }
  3078. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  3079. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  3080. _content = $$("div", {
  3081. className: "U_MD_D_KO",
  3082. "onmousedown": U.UF.C.closure(function (obj) {
  3083. //防止拖動圖標即打開了桌面應用
  3084. U.MD.D.click(this, obj);
  3085. }, [_tianyuantudentDeskIconInfo[i]]),
  3086. "onclick": U.UF.C.closure(function (obj) {
  3087. //防止拖動圖標即打開了桌面應用
  3088. U.MD.D.click(this, obj);
  3089. }, [_tianyuantudentDeskIconInfo[i]])
  3090. }, _frag); //
  3091. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3092. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3093. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3094. }
  3095. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3096. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3097. _content = $$("div", {
  3098. className: "U_MD_D_KO",
  3099. "onmousedown": U.UF.C.closure(function (obj) {
  3100. //防止拖動圖標即打開了桌面應用
  3101. U.MD.D.click(this, obj);
  3102. }, [_siesStudentDeskIconInfo[i]]),
  3103. "onclick": U.UF.C.closure(function (obj) {
  3104. //防止拖動圖標即打開了桌面應用
  3105. U.MD.D.click(this, obj);
  3106. }, [_siesStudentDeskIconInfo[i]])
  3107. }, _frag); //
  3108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3111. }
  3112. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3113. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3114. _content = $$("div", {
  3115. className: "U_MD_D_KO",
  3116. "onmousedown": U.UF.C.closure(function (obj) {
  3117. //防止拖動圖標即打開了桌面應用
  3118. U.MD.D.click(this, obj);
  3119. }, [_guzmsStudentDeskIconInfo[i]]),
  3120. "onclick": U.UF.C.closure(function (obj) {
  3121. //防止拖動圖標即打開了桌面應用
  3122. U.MD.D.click(this, obj);
  3123. }, [_guzmsStudentDeskIconInfo[i]])
  3124. }, _frag); //
  3125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3128. }
  3129. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3130. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3131. _content = $$("div", {
  3132. className: "U_MD_D_KO",
  3133. "onmousedown": U.UF.C.closure(function (obj) {
  3134. //防止拖動圖標即打開了桌面應用
  3135. U.MD.D.click(this, obj);
  3136. }, [_hkStudentDeskIconInfo[i]]),
  3137. "onclick": U.UF.C.closure(function (obj) {
  3138. //防止拖動圖標即打開了桌面應用
  3139. U.MD.D.click(this, obj);
  3140. }, [_hkStudentDeskIconInfo[i]])
  3141. }, _frag); //
  3142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3145. }
  3146. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3147. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3148. _content = $$("div", {
  3149. className: "U_MD_D_KO",
  3150. "onmousedown": U.UF.C.closure(function (obj) {
  3151. //防止拖動圖標即打開了桌面應用
  3152. U.MD.D.click(this, obj);
  3153. }, [_tycyStudentDeskIconInfo[i]]),
  3154. "onclick": U.UF.C.closure(function (obj) {
  3155. //防止拖動圖標即打開了桌面應用
  3156. U.MD.D.click(this, obj);
  3157. }, [_tycyStudentDeskIconInfo[i]])
  3158. }, _frag); //
  3159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3162. }
  3163. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3164. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3165. _content = $$("div", {
  3166. className: "U_MD_D_KO",
  3167. "onmousedown": U.UF.C.closure(function (obj) {
  3168. //防止拖動圖標即打開了桌面應用
  3169. U.MD.D.click(this, obj);
  3170. }, [_ckcpsStudentDeskIconInfo[i]]),
  3171. "onclick": U.UF.C.closure(function (obj) {
  3172. //防止拖動圖標即打開了桌面應用
  3173. U.MD.D.click(this, obj);
  3174. }, [_ckcpsStudentDeskIconInfo[i]])
  3175. }, _frag); //
  3176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3179. }
  3180. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3181. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3182. _content = $$("div", {
  3183. className: "U_MD_D_KO",
  3184. "onmousedown": U.UF.C.closure(function (obj) {
  3185. //防止拖動圖標即打開了桌面應用
  3186. U.MD.D.click(this, obj);
  3187. }, [_hkaceStudentDeskIconInfo[i]]),
  3188. "onclick": U.UF.C.closure(function (obj) {
  3189. //防止拖動圖標即打開了桌面應用
  3190. U.MD.D.click(this, obj);
  3191. }, [_hkaceStudentDeskIconInfo[i]])
  3192. }, _frag); //
  3193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3196. }
  3197. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3198. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3199. _content = $$("div", {
  3200. className: "U_MD_D_KO",
  3201. "onmousedown": U.UF.C.closure(function (obj) {
  3202. //防止拖動圖標即打開了桌面應用
  3203. U.MD.D.click(this, obj);
  3204. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3205. "onclick": U.UF.C.closure(function (obj) {
  3206. //防止拖動圖標即打開了桌面應用
  3207. U.MD.D.click(this, obj);
  3208. }, [_BSDNSstudentDesktopIconInfo[i]])
  3209. }, _frag); //
  3210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3213. }
  3214. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3215. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3216. _content = $$("div", {
  3217. className: "U_MD_D_KO",
  3218. "onmousedown": U.UF.C.closure(function (obj) {
  3219. //防止拖動圖標即打開了桌面應用
  3220. U.MD.D.click(this, obj);
  3221. }, [_cocobizStudentDeskIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖動圖標即打開了桌面應用
  3224. U.MD.D.click(this, obj);
  3225. }, [_cocobizStudentDeskIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3232. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3233. _content = $$("div", {
  3234. className: "U_MD_D_KO",
  3235. "onmousedown": U.UF.C.closure(function (obj) {
  3236. //防止拖動圖標即打開了桌面應用
  3237. U.MD.D.click(this, obj);
  3238. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3239. "onclick": U.UF.C.closure(function (obj) {
  3240. //防止拖動圖標即打開了桌面應用
  3241. U.MD.D.click(this, obj);
  3242. }, [_xxzjkyStudentDeskIconInfo[i]])
  3243. }, _frag); //
  3244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3247. }
  3248. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3249. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3250. _content = $$("div", {
  3251. className: "U_MD_D_KO",
  3252. "onmousedown": U.UF.C.closure(function (obj) {
  3253. //防止拖動圖標即打開了桌面應用
  3254. U.MD.D.click(this, obj);
  3255. }, [_studentDesktopIconInfo[i]]),
  3256. "onclick": U.UF.C.closure(function (obj) {
  3257. //防止拖動圖標即打開了桌面應用
  3258. U.MD.D.click(this, obj);
  3259. }, [_studentDesktopIconInfo[i]])
  3260. }, _frag); //
  3261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3264. }
  3265. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3266. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  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. }, [_tcStudentDeskIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖動圖標即打開了桌面應用
  3275. U.MD.D.click(this, obj);
  3276. }, [_tcStudentDeskIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3283. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3284. _content = $$("div", {
  3285. className: "U_MD_D_KO",
  3286. "onmousedown": U.UF.C.closure(function (obj) {
  3287. //防止拖動圖標即打開了桌面應用
  3288. U.MD.D.click(this, obj);
  3289. }, [_szscStudentDeskIconInfo[i]]),
  3290. "onclick": U.UF.C.closure(function (obj) {
  3291. //防止拖動圖標即打開了桌面應用
  3292. U.MD.D.click(this, obj);
  3293. }, [_szscStudentDeskIconInfo[i]])
  3294. }, _frag); //
  3295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3298. }
  3299. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3300. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3301. _content = $$("div", {
  3302. className: "U_MD_D_KO",
  3303. "onmousedown": U.UF.C.closure(function (obj) {
  3304. //防止拖動圖標即打開了桌面應用
  3305. U.MD.D.click(this, obj);
  3306. }, [_studentDesktopIconInfo3[i]]),
  3307. "onclick": U.UF.C.closure(function (obj) {
  3308. //防止拖動圖標即打開了桌面應用
  3309. U.MD.D.click(this, obj);
  3310. }, [_studentDesktopIconInfo3[i]])
  3311. }, _frag); //
  3312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3315. }
  3316. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3317. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3318. _content = $$("div", {
  3319. className: "U_MD_D_KO",
  3320. "onmousedown": U.UF.C.closure(function (obj) {
  3321. //防止拖動圖標即打開了桌面應用
  3322. U.MD.D.click(this, obj);
  3323. }, [_studentDesktopIconInfo2[i]]),
  3324. "onclick": U.UF.C.closure(function (obj) {
  3325. //防止拖動圖標即打開了桌面應用
  3326. U.MD.D.click(this, obj);
  3327. }, [_studentDesktopIconInfo2[i]])
  3328. }, _frag); //
  3329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3332. }
  3333. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3334. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3335. if (_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher') {
  3336. continue
  3337. }
  3338. _content = $$("div", {
  3339. className: "U_MD_D_KO",
  3340. "onmousedown": U.UF.C.closure(function (obj) {
  3341. //防止拖動圖標即打開了桌面應用
  3342. U.MD.D.click(this, obj);
  3343. }, [_wanketeacherDesktopIconInfo[i]]),
  3344. "onclick": U.UF.C.closure(function (obj) {
  3345. //防止拖動圖標即打開了桌面應用
  3346. U.MD.D.click(this, obj);
  3347. }, [_wanketeacherDesktopIconInfo[i]])
  3348. }, _frag); //
  3349. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3352. }
  3353. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3354. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3355. _content = $$("div", {
  3356. className: "U_MD_D_KO",
  3357. "onmousedown": U.UF.C.closure(function (obj) {
  3358. //防止拖動圖標即打開了桌面應用
  3359. U.MD.D.click(this, obj);
  3360. }, [_wankeAdminDesktopIconInfo[i]]),
  3361. "onclick": U.UF.C.closure(function (obj) {
  3362. //防止拖動圖標即打開了桌面應用
  3363. U.MD.D.click(this, obj);
  3364. }, [_wankeAdminDesktopIconInfo[i]])
  3365. }, _frag); //
  3366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3369. }
  3370. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3371. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3372. if (_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3373. continue
  3374. }
  3375. _content = $$("div", {
  3376. className: "U_MD_D_KO",
  3377. "onmousedown": U.UF.C.closure(function (obj) {
  3378. //防止拖動圖標即打開了桌面應用
  3379. U.MD.D.click(this, obj);
  3380. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3381. "onclick": U.UF.C.closure(function (obj) {
  3382. //防止拖動圖標即打開了桌面應用
  3383. U.MD.D.click(this, obj);
  3384. }, [_scnuaiTeacherDeskIconInfo[i]])
  3385. }, _frag); //
  3386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3389. }
  3390. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3391. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3392. if (_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher') {
  3393. continue
  3394. }
  3395. _content = $$("div", {
  3396. className: "U_MD_D_KO",
  3397. "onmousedown": U.UF.C.closure(function (obj) {
  3398. //防止拖動圖標即打開了桌面應用
  3399. U.MD.D.click(this, obj);
  3400. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3401. "onclick": U.UF.C.closure(function (obj) {
  3402. //防止拖動圖標即打開了桌面應用
  3403. U.MD.D.click(this, obj);
  3404. }, [_BSDNSteacherDesktopIconInfo[i]])
  3405. }, _frag); //
  3406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3409. }
  3410. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3411. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3412. _content = $$("div", {
  3413. className: "U_MD_D_KO",
  3414. "onmousedown": U.UF.C.closure(function (obj) {
  3415. //防止拖動圖標即打開了桌面應用
  3416. U.MD.D.click(this, obj);
  3417. }, [_scnuaiAdminDeskIconInfo[i]]),
  3418. "onclick": U.UF.C.closure(function (obj) {
  3419. //防止拖動圖標即打開了桌面應用
  3420. U.MD.D.click(this, obj);
  3421. }, [_scnuaiAdminDeskIconInfo[i]])
  3422. }, _frag); //
  3423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3426. }
  3427. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3428. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3429. if (_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3430. continue
  3431. }
  3432. _content = $$("div", {
  3433. className: "U_MD_D_KO",
  3434. "onmousedown": U.UF.C.closure(function (obj) {
  3435. //防止拖動圖標即打開了桌面應用
  3436. U.MD.D.click(this, obj);
  3437. }, [_jccssylTeacherDeskIconInfo[i]]),
  3438. "onclick": U.UF.C.closure(function (obj) {
  3439. //防止拖動圖標即打開了桌面應用
  3440. U.MD.D.click(this, obj);
  3441. }, [_jccssylTeacherDeskIconInfo[i]])
  3442. }, _frag); //
  3443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3446. }
  3447. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3448. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3449. if (_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3450. continue
  3451. }
  3452. _content = $$("div", {
  3453. className: "U_MD_D_KO",
  3454. "onmousedown": U.UF.C.closure(function (obj) {
  3455. //防止拖動圖標即打開了桌面應用
  3456. U.MD.D.click(this, obj);
  3457. }, [_caleTeacherDeskIconInfo[i]]),
  3458. "onclick": U.UF.C.closure(function (obj) {
  3459. //防止拖動圖標即打開了桌面應用
  3460. U.MD.D.click(this, obj);
  3461. }, [_caleTeacherDeskIconInfo[i]])
  3462. }, _frag); //
  3463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3466. }
  3467. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3468. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖動圖標即打開了桌面應用
  3473. U.MD.D.click(this, obj);
  3474. }, [_tpcOrganizerDeskIconInfo[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖動圖標即打開了桌面應用
  3477. U.MD.D.click(this, obj);
  3478. }, [_tpcOrganizerDeskIconInfo[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3483. }
  3484. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3485. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3486. if (_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖動圖標即打開了桌面應用
  3493. U.MD.D.click(this, obj);
  3494. }, [_tpcTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖動圖標即打開了桌面應用
  3497. U.MD.D.click(this, obj);
  3498. }, [_tpcTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3505. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3506. if (_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher') {
  3507. continue
  3508. }
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖動圖標即打開了桌面應用
  3513. U.MD.D.click(this, obj);
  3514. }, [_teacherDesktopIconInfo2[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖動圖標即打開了桌面應用
  3517. U.MD.D.click(this, obj);
  3518. }, [_teacherDesktopIconInfo2[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3523. }
  3524. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3525. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3526. if (_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3527. continue
  3528. }
  3529. _content = $$("div", {
  3530. className: "U_MD_D_KO",
  3531. "onmousedown": U.UF.C.closure(function (obj) {
  3532. //防止拖動圖標即打開了桌面應用
  3533. U.MD.D.click(this, obj);
  3534. }, [_thuioeTeacherDeskIconInfo[i]]),
  3535. "onclick": U.UF.C.closure(function (obj) {
  3536. //防止拖動圖標即打開了桌面應用
  3537. U.MD.D.click(this, obj);
  3538. }, [_thuioeTeacherDeskIconInfo[i]])
  3539. }, _frag); //
  3540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3543. }
  3544. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3545. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3546. if (_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3547. continue
  3548. }
  3549. _content = $$("div", {
  3550. className: "U_MD_D_KO",
  3551. "onmousedown": U.UF.C.closure(function (obj) {
  3552. //防止拖動圖標即打開了桌面應用
  3553. U.MD.D.click(this, obj);
  3554. }, [_lotechTeacherDeskIconInfo[i]]),
  3555. "onclick": U.UF.C.closure(function (obj) {
  3556. //防止拖動圖標即打開了桌面應用
  3557. U.MD.D.click(this, obj);
  3558. }, [_lotechTeacherDeskIconInfo[i]])
  3559. }, _frag); //
  3560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3563. }//
  3564. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3565. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3566. if (_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3567. continue
  3568. }
  3569. _content = $$("div", {
  3570. className: "U_MD_D_KO",
  3571. "onmousedown": U.UF.C.closure(function (obj) {
  3572. //防止拖動圖標即打開了桌面應用
  3573. U.MD.D.click(this, obj);
  3574. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3575. "onclick": U.UF.C.closure(function (obj) {
  3576. //防止拖動圖標即打開了桌面應用
  3577. U.MD.D.click(this, obj);
  3578. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3579. }, _frag); //
  3580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3583. }
  3584. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3585. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3586. if (_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies') {
  3587. continue
  3588. }
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖動圖標即打開了桌面應用
  3593. U.MD.D.click(this, obj);
  3594. }, [_siesTeacherDeskIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖動圖標即打開了桌面應用
  3597. U.MD.D.click(this, obj);
  3598. }, [_siesTeacherDeskIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3605. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3606. if (_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3607. continue
  3608. }
  3609. _content = $$("div", {
  3610. className: "U_MD_D_KO",
  3611. "onmousedown": U.UF.C.closure(function (obj) {
  3612. //防止拖動圖標即打開了桌面應用
  3613. U.MD.D.click(this, obj);
  3614. }, [_guzmsTeacherDeskIconInfo[i]]),
  3615. "onclick": U.UF.C.closure(function (obj) {
  3616. //防止拖動圖標即打開了桌面應用
  3617. U.MD.D.click(this, obj);
  3618. }, [_guzmsTeacherDeskIconInfo[i]])
  3619. }, _frag); //
  3620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3623. }
  3624. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3625. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3626. if (_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3627. continue
  3628. }
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖動圖標即打開了桌面應用
  3633. U.MD.D.click(this, obj);
  3634. }, [_longhuaTeacherDeskIconInfo[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖動圖標即打開了桌面應用
  3637. U.MD.D.click(this, obj);
  3638. }, [_longhuaTeacherDeskIconInfo[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3643. }
  3644. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3645. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3646. if (_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3647. continue
  3648. }
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖動圖標即打開了桌面應用
  3653. U.MD.D.click(this, obj);
  3654. }, [_ytyTeacherDeskIconInfo[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖動圖標即打開了桌面應用
  3657. U.MD.D.click(this, obj);
  3658. }, [_ytyTeacherDeskIconInfo[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3665. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3666. if (_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖動圖標即打開了桌面應用
  3673. U.MD.D.click(this, obj);
  3674. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖動圖標即打開了桌面應用
  3677. U.MD.D.click(this, obj);
  3678. }, [_yunhaiTeacherDeskIconInfo[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3683. } //_hkStudentDeskIconInfo
  3684. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3685. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3686. if (_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3687. continue
  3688. }
  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. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖動圖標即打開了桌面應用
  3697. U.MD.D.click(this, obj);
  3698. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3703. }
  3704. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3705. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3706. if (_role === 0 && _ricohTeacherDeskIconInfo[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. }, [_ricohTeacherDeskIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖動圖標即打開了桌面應用
  3717. U.MD.D.click(this, obj);
  3718. }, [_ricohTeacherDeskIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3725. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3726. if (_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3727. continue
  3728. }
  3729. _content = $$("div", {
  3730. className: "U_MD_D_KO",
  3731. "onmousedown": U.UF.C.closure(function (obj) {
  3732. //防止拖動圖標即打開了桌面應用
  3733. U.MD.D.click(this, obj);
  3734. }, [_hkTeacherDeskIconInfo[i]]),
  3735. "onclick": U.UF.C.closure(function (obj) {
  3736. //防止拖動圖標即打開了桌面應用
  3737. U.MD.D.click(this, obj);
  3738. }, [_hkTeacherDeskIconInfo[i]])
  3739. }, _frag); //
  3740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3743. }
  3744. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3745. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3746. if (_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3747. continue
  3748. }
  3749. _content = $$("div", {
  3750. className: "U_MD_D_KO",
  3751. "onmousedown": U.UF.C.closure(function (obj) {
  3752. //防止拖動圖標即打開了桌面應用
  3753. U.MD.D.click(this, obj);
  3754. }, [_tycyTeacherDeskIconInfo[i]]),
  3755. "onclick": U.UF.C.closure(function (obj) {
  3756. //防止拖動圖標即打開了桌面應用
  3757. U.MD.D.click(this, obj);
  3758. }, [_tycyTeacherDeskIconInfo[i]])
  3759. }, _frag); //
  3760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3763. }
  3764. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3765. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3766. if (_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3767. continue
  3768. }
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖動圖標即打開了桌面應用
  3773. U.MD.D.click(this, obj);
  3774. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖動圖標即打開了桌面應用
  3777. U.MD.D.click(this, obj);
  3778. }, [_ckcpsTeacherDeskIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3783. }
  3784. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3785. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3786. if (_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖動圖標即打開了桌面應用
  3793. U.MD.D.click(this, obj);
  3794. }, [_hkaceTeacherDeskIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖動圖標即打開了桌面應用
  3797. U.MD.D.click(this, obj);
  3798. }, [_hkaceTeacherDeskIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3805. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3806. if (_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3807. continue
  3808. }
  3809. _content = $$("div", {
  3810. className: "U_MD_D_KO",
  3811. "onmousedown": U.UF.C.closure(function (obj) {
  3812. //防止拖動圖標即打開了桌面應用
  3813. U.MD.D.click(this, obj);
  3814. }, [_cocobizTeacherDeskIconInfo[i]]),
  3815. "onclick": U.UF.C.closure(function (obj) {
  3816. //防止拖動圖標即打開了桌面應用
  3817. U.MD.D.click(this, obj);
  3818. }, [_cocobizTeacherDeskIconInfo[i]])
  3819. }, _frag); //
  3820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3823. }
  3824. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3825. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3826. if (_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3827. continue
  3828. }
  3829. _content = $$("div", {
  3830. className: "U_MD_D_KO",
  3831. "onmousedown": U.UF.C.closure(function (obj) {
  3832. //防止拖動圖標即打開了桌面應用
  3833. U.MD.D.click(this, obj);
  3834. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3835. "onclick": U.UF.C.closure(function (obj) {
  3836. //防止拖動圖標即打開了桌面應用
  3837. U.MD.D.click(this, obj);
  3838. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3839. }, _frag); //
  3840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3843. }
  3844. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3845. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3846. _content = $$("div", {
  3847. className: "U_MD_D_KO",
  3848. "onmousedown": U.UF.C.closure(function (obj) {
  3849. //防止拖動圖標即打開了桌面應用
  3850. U.MD.D.click(this, obj);
  3851. }, [_gdjgAdminDeskIconInfo[i]]),
  3852. "onclick": U.UF.C.closure(function (obj) {
  3853. //防止拖動圖標即打開了桌面應用
  3854. U.MD.D.click(this, obj);
  3855. }, [_gdjgAdminDeskIconInfo[i]])
  3856. }, _frag); //
  3857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3860. }
  3861. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3862. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3863. if (_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3864. continue
  3865. }
  3866. _content = $$("div", {
  3867. className: "U_MD_D_KO",
  3868. "onmousedown": U.UF.C.closure(function (obj) {
  3869. //防止拖動圖標即打開了桌面應用
  3870. U.MD.D.click(this, obj);
  3871. }, [_gdjgTeacherDeskIconInfo[i]]),
  3872. "onclick": U.UF.C.closure(function (obj) {
  3873. //防止拖動圖標即打開了桌面應用
  3874. U.MD.D.click(this, obj);
  3875. }, [_gdjgTeacherDeskIconInfo[i]])
  3876. }, _frag); //
  3877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3880. }
  3881. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3882. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3883. if (_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3884. continue
  3885. }
  3886. _content = $$("div", {
  3887. className: "U_MD_D_KO",
  3888. "onmousedown": U.UF.C.closure(function (obj) {
  3889. //防止拖動圖標即打開了桌面應用
  3890. U.MD.D.click(this, obj);
  3891. }, [_szherTeacherDeskIconInfo[i]]),
  3892. "onclick": U.UF.C.closure(function (obj) {
  3893. //防止拖動圖標即打開了桌面應用
  3894. U.MD.D.click(this, obj);
  3895. }, [_szherTeacherDeskIconInfo[i]])
  3896. }, _frag); //
  3897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3900. }
  3901. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3902. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3903. _content = $$("div", {
  3904. className: "U_MD_D_KO",
  3905. "onmousedown": U.UF.C.closure(function (obj) {
  3906. //防止拖動圖標即打開了桌面應用
  3907. U.MD.D.click(this, obj);
  3908. }, [_heyuannAdminDeskIconInfo[i]]),
  3909. "onclick": U.UF.C.closure(function (obj) {
  3910. //防止拖動圖標即打開了桌面應用
  3911. U.MD.D.click(this, obj);
  3912. }, [_heyuannAdminDeskIconInfo[i]])
  3913. }, _frag); //
  3914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3917. }
  3918. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3919. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3920. if (_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3921. continue
  3922. }
  3923. _content = $$("div", {
  3924. className: "U_MD_D_KO",
  3925. "onmousedown": U.UF.C.closure(function (obj) {
  3926. //防止拖動圖標即打開了桌面應用
  3927. U.MD.D.click(this, obj);
  3928. }, [_heyuanTeacherDeskIconInfo[i]]),
  3929. "onclick": U.UF.C.closure(function (obj) {
  3930. //防止拖動圖標即打開了桌面應用
  3931. U.MD.D.click(this, obj);
  3932. }, [_heyuanTeacherDeskIconInfo[i]])
  3933. }, _frag); //
  3934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3937. } //
  3938. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3939. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  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. }, [_dseiAdminDeskIconInfo[i]]),
  3946. "onclick": U.UF.C.closure(function (obj) {
  3947. //防止拖動圖標即打開了桌面應用
  3948. U.MD.D.click(this, obj);
  3949. }, [_dseiAdminDeskIconInfo[i]])
  3950. }, _frag); //
  3951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3954. }
  3955. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3956. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3957. if (_role === 0 && _dseiTeacherDeskIconInfo[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. }, [_dseiTeacherDeskIconInfo[i]]),
  3966. "onclick": U.UF.C.closure(function (obj) {
  3967. //防止拖動圖標即打開了桌面應用
  3968. U.MD.D.click(this, obj);
  3969. }, [_dseiTeacherDeskIconInfo[i]])
  3970. }, _frag); //
  3971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3974. } //
  3975. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3976. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3977. _content = $$("div", {
  3978. className: "U_MD_D_KO",
  3979. "onmousedown": U.UF.C.closure(function (obj) {
  3980. //防止拖動圖標即打開了桌面應用
  3981. U.MD.D.click(this, obj);
  3982. }, [_chjyjAdminDeskIconInfo[i]]),
  3983. "onclick": U.UF.C.closure(function (obj) {
  3984. //防止拖動圖標即打開了桌面應用
  3985. U.MD.D.click(this, obj);
  3986. }, [_chjyjAdminDeskIconInfo[i]])
  3987. }, _frag); //
  3988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3991. }//
  3992. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3993. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3994. if (_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3995. continue
  3996. }
  3997. _content = $$("div", {
  3998. className: "U_MD_D_KO",
  3999. "onmousedown": U.UF.C.closure(function (obj) {
  4000. //防止拖動圖標即打開了桌面應用
  4001. U.MD.D.click(this, obj);
  4002. }, [_chjyjTeacherDeskIconInfo[i]]),
  4003. "onclick": U.UF.C.closure(function (obj) {
  4004. //防止拖動圖標即打開了桌面應用
  4005. U.MD.D.click(this, obj);
  4006. }, [_chjyjTeacherDeskIconInfo[i]])
  4007. }, _frag); //
  4008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  4010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  4011. }
  4012. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  4013. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  4014. _content = $$("div", {
  4015. className: "U_MD_D_KO",
  4016. "onmousedown": U.UF.C.closure(function (obj) {
  4017. //防止拖動圖標即打開了桌面應用
  4018. U.MD.D.click(this, obj);
  4019. }, [_szjkyAdminDeskIconInfo[i]]),
  4020. "onclick": U.UF.C.closure(function (obj) {
  4021. //防止拖動圖標即打開了桌面應用
  4022. U.MD.D.click(this, obj);
  4023. }, [_szjkyAdminDeskIconInfo[i]])
  4024. }, _frag); //
  4025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  4027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  4028. }//
  4029. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  4030. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  4031. if (_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4032. continue
  4033. }
  4034. _content = $$("div", {
  4035. className: "U_MD_D_KO",
  4036. "onmousedown": U.UF.C.closure(function (obj) {
  4037. //防止拖動圖標即打開了桌面應用
  4038. U.MD.D.click(this, obj);
  4039. }, [_szjkyTeacherDeskIconInfo[i]]),
  4040. "onclick": U.UF.C.closure(function (obj) {
  4041. //防止拖動圖標即打開了桌面應用
  4042. U.MD.D.click(this, obj);
  4043. }, [_szjkyTeacherDeskIconInfo[i]])
  4044. }, _frag); //
  4045. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4046. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  4047. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4048. }
  4049. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  4050. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  4051. _content = $$("div", {
  4052. className: "U_MD_D_KO",
  4053. "onmousedown": U.UF.C.closure(function (obj) {
  4054. //防止拖動圖標即打開了桌面應用
  4055. U.MD.D.click(this, obj);
  4056. }, [_x020201AdminDeskIconInfo[i]]),
  4057. "onclick": U.UF.C.closure(function (obj) {
  4058. //防止拖動圖標即打開了桌面應用
  4059. U.MD.D.click(this, obj);
  4060. }, [_x020201AdminDeskIconInfo[i]])
  4061. }, _frag); //
  4062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  4064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  4065. }//
  4066. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  4067. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  4068. if (_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4069. continue
  4070. }
  4071. _content = $$("div", {
  4072. className: "U_MD_D_KO",
  4073. "onmousedown": U.UF.C.closure(function (obj) {
  4074. //防止拖動圖標即打開了桌面應用
  4075. U.MD.D.click(this, obj);
  4076. }, [_x020201TeacherDeskIconInfo[i]]),
  4077. "onclick": U.UF.C.closure(function (obj) {
  4078. //防止拖動圖標即打開了桌面應用
  4079. U.MD.D.click(this, obj);
  4080. }, [_x020201TeacherDeskIconInfo[i]])
  4081. }, _frag); //
  4082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  4084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  4085. }
  4086. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4087. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4088. _content = $$("div", {
  4089. className: "U_MD_D_KO",
  4090. "onmousedown": U.UF.C.closure(function (obj) {
  4091. //防止拖動圖標即打開了桌面應用
  4092. U.MD.D.click(this, obj);
  4093. }, [_SCNUETAdminDeskIconInfo[i]]),
  4094. "onclick": U.UF.C.closure(function (obj) {
  4095. //防止拖動圖標即打開了桌面應用
  4096. U.MD.D.click(this, obj);
  4097. }, [_SCNUETAdminDeskIconInfo[i]])
  4098. }, _frag); //
  4099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4102. }//
  4103. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4104. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4105. if (_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4106. continue
  4107. }
  4108. _content = $$("div", {
  4109. className: "U_MD_D_KO",
  4110. "onmousedown": U.UF.C.closure(function (obj) {
  4111. //防止拖動圖標即打開了桌面應用
  4112. U.MD.D.click(this, obj);
  4113. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4114. "onclick": U.UF.C.closure(function (obj) {
  4115. //防止拖動圖標即打開了桌面應用
  4116. U.MD.D.click(this, obj);
  4117. }, [_SCNUETTeacherDeskIconInfo[i]])
  4118. }, _frag); //
  4119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4122. }
  4123. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4124. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4125. _content = $$("div", {
  4126. className: "U_MD_D_KO",
  4127. "onmousedown": U.UF.C.closure(function (obj) {
  4128. //防止拖動圖標即打開了桌面應用
  4129. U.MD.D.click(this, obj);
  4130. }, [_futianAdminDeskIconInfo[i]]),
  4131. "onclick": U.UF.C.closure(function (obj) {
  4132. //防止拖動圖標即打開了桌面應用
  4133. U.MD.D.click(this, obj);
  4134. }, [_futianAdminDeskIconInfo[i]])
  4135. }, _frag); //
  4136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4139. }
  4140. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4141. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4142. if (_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4143. continue
  4144. }
  4145. _content = $$("div", {
  4146. className: "U_MD_D_KO",
  4147. "onmousedown": U.UF.C.closure(function (obj) {
  4148. //防止拖動圖標即打開了桌面應用
  4149. U.MD.D.click(this, obj);
  4150. }, [_futianTeacherDeskIconInfo[i]]),
  4151. "onclick": U.UF.C.closure(function (obj) {
  4152. //防止拖動圖標即打開了桌面應用
  4153. U.MD.D.click(this, obj);
  4154. }, [_futianTeacherDeskIconInfo[i]])
  4155. }, _frag); //
  4156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4159. }
  4160. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4161. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4162. if (_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher') {
  4163. continue
  4164. }
  4165. _content = $$("div", {
  4166. className: "U_MD_D_KO",
  4167. "onmousedown": U.UF.C.closure(function (obj) {
  4168. //防止拖動圖標即打開了桌面應用
  4169. U.MD.D.click(this, obj);
  4170. }, [_MingdeTeacherDeskIcon[i]]),
  4171. "onclick": U.UF.C.closure(function (obj) {
  4172. //防止拖動圖標即打開了桌面應用
  4173. U.MD.D.click(this, obj);
  4174. }, [_MingdeTeacherDeskIcon[i]])
  4175. }, _frag); //
  4176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4179. }
  4180. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4181. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4182. _content = $$("div", {
  4183. className: "U_MD_D_KO",
  4184. "onmousedown": U.UF.C.closure(function (obj) {
  4185. //防止拖動圖標即打開了桌面應用
  4186. U.MD.D.click(this, obj);
  4187. }, [_lhsAdminDesktopIconInfo[i]]),
  4188. "onclick": U.UF.C.closure(function (obj) {
  4189. //防止拖動圖標即打開了桌面應用
  4190. U.MD.D.click(this, obj);
  4191. }, [_lhsAdminDesktopIconInfo[i]])
  4192. }, _frag); //
  4193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4196. }
  4197. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4198. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4199. if (_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4200. continue
  4201. }
  4202. _content = $$("div", {
  4203. className: "U_MD_D_KO",
  4204. "onmousedown": U.UF.C.closure(function (obj) {
  4205. //防止拖動圖標即打開了桌面應用
  4206. U.MD.D.click(this, obj);
  4207. }, [_lhsteacherDesktopIconInfo[i]]),
  4208. "onclick": U.UF.C.closure(function (obj) {
  4209. //防止拖動圖標即打開了桌面應用
  4210. U.MD.D.click(this, obj);
  4211. }, [_lhsteacherDesktopIconInfo[i]])
  4212. }, _frag); //
  4213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4216. }
  4217. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4218. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4219. if (_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher') {
  4220. continue
  4221. }
  4222. _content = $$("div", {
  4223. className: "U_MD_D_KO",
  4224. "onmousedown": U.UF.C.closure(function (obj) {
  4225. //防止拖動圖標即打開了桌面應用
  4226. U.MD.D.click(this, obj);
  4227. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4228. "onclick": U.UF.C.closure(function (obj) {
  4229. //防止拖動圖標即打開了桌面應用
  4230. U.MD.D.click(this, obj);
  4231. }, [_zhoujiateacherDesktopIconInfo[i]])
  4232. }, _frag); //
  4233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4236. }
  4237. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4238. for (i = 0; i < _hanDeskIcon.length; i++) {
  4239. if (_role === 0 && _hanDeskIcon[i].Url == 'testTeacher') {
  4240. continue
  4241. }
  4242. _content = $$("div", {
  4243. className: "U_MD_D_KO",
  4244. "onmousedown": U.UF.C.closure(function (obj) {
  4245. //防止拖動圖標即打開了桌面應用
  4246. U.MD.D.click(this, obj);
  4247. }, [_hanDeskIcon[i]]),
  4248. "onclick": U.UF.C.closure(function (obj) {
  4249. //防止拖動圖標即打開了桌面應用
  4250. U.MD.D.click(this, obj);
  4251. }, [_hanDeskIcon[i]])
  4252. }, _frag); //
  4253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4256. }
  4257. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4258. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4259. if (_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher') {
  4260. continue
  4261. }
  4262. _content = $$("div", {
  4263. className: "U_MD_D_KO",
  4264. "onmousedown": U.UF.C.closure(function (obj) {
  4265. //防止拖動圖標即打開了桌面應用
  4266. U.MD.D.click(this, obj);
  4267. }, [_orgStemDeskIcon[i]]),
  4268. "onclick": U.UF.C.closure(function (obj) {
  4269. //防止拖動圖標即打開了桌面應用
  4270. U.MD.D.click(this, obj);
  4271. }, [_orgStemDeskIcon[i]])
  4272. }, _frag); //
  4273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4276. }
  4277. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4278. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4279. if (_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher') {
  4280. continue
  4281. }
  4282. _content = $$("div", {
  4283. className: "U_MD_D_KO",
  4284. "onmousedown": U.UF.C.closure(function (obj) {
  4285. //防止拖動圖標即打開了桌面應用
  4286. U.MD.D.click(this, obj);
  4287. }, [_szulsDeskIcon[i]]),
  4288. "onclick": U.UF.C.closure(function (obj) {
  4289. //防止拖動圖標即打開了桌面應用
  4290. U.MD.D.click(this, obj);
  4291. }, [_szulsDeskIcon[i]])
  4292. }, _frag); //
  4293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4296. }
  4297. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4298. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4299. if (_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher') {
  4300. continue
  4301. }
  4302. _content = $$("div", {
  4303. className: "U_MD_D_KO",
  4304. "onmousedown": U.UF.C.closure(function (obj) {
  4305. //防止拖動圖標即打開了桌面應用
  4306. U.MD.D.click(this, obj);
  4307. }, [_orgDesktopIconInfo[i]]),
  4308. "onclick": U.UF.C.closure(function (obj) {
  4309. //防止拖動圖標即打開了桌面應用
  4310. U.MD.D.click(this, obj);
  4311. }, [_orgDesktopIconInfo[i]])
  4312. }, _frag); //
  4313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4316. }
  4317. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4318. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4319. if (_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher') {
  4320. continue
  4321. }
  4322. _content = $$("div", {
  4323. className: "U_MD_D_KO",
  4324. "onmousedown": U.UF.C.closure(function (obj) {
  4325. //防止拖動圖標即打開了桌面應用
  4326. U.MD.D.click(this, obj);
  4327. }, [_schoolDesktopIconInfo[i]]),
  4328. "onclick": U.UF.C.closure(function (obj) {
  4329. //防止拖動圖標即打開了桌面應用
  4330. U.MD.D.click(this, obj);
  4331. }, [_schoolDesktopIconInfo[i]])
  4332. }, _frag); //
  4333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4336. }
  4337. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4338. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4339. if (_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4340. continue
  4341. }
  4342. _content = $$("div", {
  4343. className: "U_MD_D_KO",
  4344. "onmousedown": U.UF.C.closure(function (obj) {
  4345. //防止拖動圖標即打開了桌面應用
  4346. U.MD.D.click(this, obj);
  4347. }, [_GMteacherDesktopIconInfo[i]]),
  4348. "onclick": U.UF.C.closure(function (obj) {
  4349. //防止拖動圖標即打開了桌面應用
  4350. U.MD.D.click(this, obj);
  4351. }, [_GMteacherDesktopIconInfo[i]])
  4352. }, _frag); //
  4353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4356. }
  4357. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4358. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4359. if (_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4360. continue
  4361. }
  4362. _content = $$("div", {
  4363. className: "U_MD_D_KO",
  4364. "onmousedown": U.UF.C.closure(function (obj) {
  4365. //防止拖動圖標即打開了桌面應用
  4366. U.MD.D.click(this, obj);
  4367. }, [_SONGteacherDesktopIconInfo[i]]),
  4368. "onclick": U.UF.C.closure(function (obj) {
  4369. //防止拖動圖標即打開了桌面應用
  4370. U.MD.D.click(this, obj);
  4371. }, [_SONGteacherDesktopIconInfo[i]])
  4372. }, _frag); //
  4373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4376. }
  4377. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4378. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4379. _content = $$("div", {
  4380. className: "U_MD_D_KO",
  4381. "onmousedown": U.UF.C.closure(function (obj) {
  4382. //防止拖動圖標即打開了桌面應用
  4383. U.MD.D.click(this, obj);
  4384. }, [_GMstudentDesktopIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖動圖標即打開了桌面應用
  4387. U.MD.D.click(this, obj);
  4388. }, [_GMstudentDesktopIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4395. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4396. if (_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4397. continue
  4398. }
  4399. _content = $$("div", {
  4400. className: "U_MD_D_KO",
  4401. "onmousedown": U.UF.C.closure(function (obj) {
  4402. //防止拖動圖標即打開了桌面應用
  4403. U.MD.D.click(this, obj);
  4404. }, [_tcTeacherDeskIconInfo[i]]),
  4405. "onclick": U.UF.C.closure(function (obj) {
  4406. //防止拖動圖標即打開了桌面應用
  4407. U.MD.D.click(this, obj);
  4408. }, [_tcTeacherDeskIconInfo[i]])
  4409. }, _frag); //
  4410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4413. }
  4414. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4415. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4416. if (_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4417. continue
  4418. }
  4419. _content = $$("div", {
  4420. className: "U_MD_D_KO",
  4421. "onmousedown": U.UF.C.closure(function (obj) {
  4422. //防止拖動圖標即打開了桌面應用
  4423. U.MD.D.click(this, obj);
  4424. }, [_tcOrganizerDeskIconInfo[i]]),
  4425. "onclick": U.UF.C.closure(function (obj) {
  4426. //防止拖動圖標即打開了桌面應用
  4427. U.MD.D.click(this, obj);
  4428. }, [_tcOrganizerDeskIconInfo[i]])
  4429. }, _frag); //
  4430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4433. }
  4434. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4435. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4436. if (_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4437. continue
  4438. }
  4439. _content = $$("div", {
  4440. className: "U_MD_D_KO",
  4441. "onmousedown": U.UF.C.closure(function (obj) {
  4442. //防止拖動圖標即打開了桌面應用
  4443. U.MD.D.click(this, obj);
  4444. }, [_szscTeacherDeskIconInfo[i]]),
  4445. "onclick": U.UF.C.closure(function (obj) {
  4446. //防止拖動圖標即打開了桌面應用
  4447. U.MD.D.click(this, obj);
  4448. }, [_szscTeacherDeskIconInfo[i]])
  4449. }, _frag); //
  4450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4453. }
  4454. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4455. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4456. if (_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4457. continue
  4458. }
  4459. _content = $$("div", {
  4460. className: "U_MD_D_KO",
  4461. "onmousedown": U.UF.C.closure(function (obj) {
  4462. //防止拖動圖標即打開了桌面應用
  4463. U.MD.D.click(this, obj);
  4464. }, [_szscOrganizerDeskIconInfo[i]]),
  4465. "onclick": U.UF.C.closure(function (obj) {
  4466. //防止拖動圖標即打開了桌面應用
  4467. U.MD.D.click(this, obj);
  4468. }, [_szscOrganizerDeskIconInfo[i]])
  4469. }, _frag); //
  4470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4473. }
  4474. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4475. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4476. if (_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4477. continue
  4478. }
  4479. _content = $$("div", {
  4480. className: "U_MD_D_KO",
  4481. "onmousedown": U.UF.C.closure(function (obj) {
  4482. //防止拖動圖標即打開了桌面應用
  4483. U.MD.D.click(this, obj);
  4484. }, [_nsfxTeacherDeskIconInfo[i]]),
  4485. "onclick": U.UF.C.closure(function (obj) {
  4486. //防止拖動圖標即打開了桌面應用
  4487. U.MD.D.click(this, obj);
  4488. }, [_nsfxTeacherDeskIconInfo[i]])
  4489. }, _frag); //
  4490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4493. }
  4494. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4495. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4496. if (_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4497. continue
  4498. }
  4499. _content = $$("div", {
  4500. className: "U_MD_D_KO",
  4501. "onmousedown": U.UF.C.closure(function (obj) {
  4502. //防止拖動圖標即打開了桌面應用
  4503. U.MD.D.click(this, obj);
  4504. }, [_stiaTeacherDeskIconInfo[i]]),
  4505. "onclick": U.UF.C.closure(function (obj) {
  4506. //防止拖動圖標即打開了桌面應用
  4507. U.MD.D.click(this, obj);
  4508. }, [_stiaTeacherDeskIconInfo[i]])
  4509. }, _frag); //
  4510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4513. }
  4514. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4515. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4516. if (_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4517. continue
  4518. }
  4519. _content = $$("div", {
  4520. className: "U_MD_D_KO",
  4521. "onmousedown": U.UF.C.closure(function (obj) {
  4522. //防止拖動圖標即打開了桌面應用
  4523. U.MD.D.click(this, obj);
  4524. }, [_szdjgTeacherDeskIconInfo[i]]),
  4525. "onclick": U.UF.C.closure(function (obj) {
  4526. //防止拖動圖標即打開了桌面應用
  4527. U.MD.D.click(this, obj);
  4528. }, [_szdjgTeacherDeskIconInfo[i]])
  4529. }, _frag); //
  4530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4533. }
  4534. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4535. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4536. if (_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4537. continue
  4538. }
  4539. _content = $$("div", {
  4540. className: "U_MD_D_KO",
  4541. "onmousedown": U.UF.C.closure(function (obj) {
  4542. //防止拖動圖標即打開了桌面應用
  4543. U.MD.D.click(this, obj);
  4544. }, [_x010607TeacherDeskIconInfo[i]]),
  4545. "onclick": U.UF.C.closure(function (obj) {
  4546. //防止拖動圖標即打開了桌面應用
  4547. U.MD.D.click(this, obj);
  4548. }, [_x010607TeacherDeskIconInfo[i]])
  4549. }, _frag); //
  4550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4553. }
  4554. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4555. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4556. if (_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4557. continue
  4558. }
  4559. _content = $$("div", {
  4560. className: "U_MD_D_KO",
  4561. "onmousedown": U.UF.C.closure(function (obj) {
  4562. //防止拖動圖標即打開了桌面應用
  4563. U.MD.D.click(this, obj);
  4564. }, [_xhlyTeacherDeskIconInfo[i]]),
  4565. "onclick": U.UF.C.closure(function (obj) {
  4566. //防止拖動圖標即打開了桌面應用
  4567. U.MD.D.click(this, obj);
  4568. }, [_xhlyTeacherDeskIconInfo[i]])
  4569. }, _frag); //
  4570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4573. }
  4574. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4575. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4576. if (_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4577. continue
  4578. }
  4579. _content = $$("div", {
  4580. className: "U_MD_D_KO",
  4581. "onmousedown": U.UF.C.closure(function (obj) {
  4582. //防止拖動圖標即打開了桌面應用
  4583. U.MD.D.click(this, obj);
  4584. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4585. "onclick": U.UF.C.closure(function (obj) {
  4586. //防止拖動圖標即打開了桌面應用
  4587. U.MD.D.click(this, obj);
  4588. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4589. }, _frag); //
  4590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4593. }
  4594. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4595. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4596. if (_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4597. continue
  4598. }
  4599. _content = $$("div", {
  4600. className: "U_MD_D_KO",
  4601. "onmousedown": U.UF.C.closure(function (obj) {
  4602. //防止拖動圖標即打開了桌面應用
  4603. U.MD.D.click(this, obj);
  4604. }, [_x010503TeacherDeskIconInfo[i]]),
  4605. "onclick": U.UF.C.closure(function (obj) {
  4606. //防止拖動圖標即打開了桌面應用
  4607. U.MD.D.click(this, obj);
  4608. }, [_x010503TeacherDeskIconInfo[i]])
  4609. }, _frag); //
  4610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4613. }
  4614. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4615. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4616. if (_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4617. continue
  4618. }
  4619. _content = $$("div", {
  4620. className: "U_MD_D_KO",
  4621. "onmousedown": U.UF.C.closure(function (obj) {
  4622. //防止拖動圖標即打開了桌面應用
  4623. U.MD.D.click(this, obj);
  4624. }, [_x010504TeacherDeskIconInfo[i]]),
  4625. "onclick": U.UF.C.closure(function (obj) {
  4626. //防止拖動圖標即打開了桌面應用
  4627. U.MD.D.click(this, obj);
  4628. }, [_x010504TeacherDeskIconInfo[i]])
  4629. }, _frag); //
  4630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4633. }
  4634. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4635. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4636. if (_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4637. continue
  4638. }
  4639. _content = $$("div", {
  4640. className: "U_MD_D_KO",
  4641. "onmousedown": U.UF.C.closure(function (obj) {
  4642. //防止拖動圖標即打開了桌面應用
  4643. U.MD.D.click(this, obj);
  4644. }, [_x010505TeacherDeskIconInfo[i]]),
  4645. "onclick": U.UF.C.closure(function (obj) {
  4646. //防止拖動圖標即打開了桌面應用
  4647. U.MD.D.click(this, obj);
  4648. }, [_x010505TeacherDeskIconInfo[i]])
  4649. }, _frag); //
  4650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4653. }
  4654. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4655. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4656. if (_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4657. continue
  4658. }
  4659. _content = $$("div", {
  4660. className: "U_MD_D_KO",
  4661. "onmousedown": U.UF.C.closure(function (obj) {
  4662. //防止拖動圖標即打開了桌面應用
  4663. U.MD.D.click(this, obj);
  4664. }, [_x010404TeacherDeskIconInfo[i]]),
  4665. "onclick": U.UF.C.closure(function (obj) {
  4666. //防止拖動圖標即打開了桌面應用
  4667. U.MD.D.click(this, obj);
  4668. }, [_x010404TeacherDeskIconInfo[i]])
  4669. }, _frag); //
  4670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4673. }
  4674. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4675. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4676. if (_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4677. continue
  4678. }
  4679. _content = $$("div", {
  4680. className: "U_MD_D_KO",
  4681. "onmousedown": U.UF.C.closure(function (obj) {
  4682. //防止拖動圖標即打開了桌面應用
  4683. U.MD.D.click(this, obj);
  4684. }, [_x010204TeacherDeskIconInfo[i]]),
  4685. "onclick": U.UF.C.closure(function (obj) {
  4686. //防止拖動圖標即打開了桌面應用
  4687. U.MD.D.click(this, obj);
  4688. }, [_x010204TeacherDeskIconInfo[i]])
  4689. }, _frag); //
  4690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4693. }
  4694. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4695. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4696. if (_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4697. continue
  4698. }
  4699. _content = $$("div", {
  4700. className: "U_MD_D_KO",
  4701. "onmousedown": U.UF.C.closure(function (obj) {
  4702. //防止拖動圖標即打開了桌面應用
  4703. U.MD.D.click(this, obj);
  4704. }, [_x320101TeacherDeskIconInfo[i]]),
  4705. "onclick": U.UF.C.closure(function (obj) {
  4706. //防止拖動圖標即打開了桌面應用
  4707. U.MD.D.click(this, obj);
  4708. }, [_x320101TeacherDeskIconInfo[i]])
  4709. }, _frag); //
  4710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4713. }
  4714. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4715. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4716. if (_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4717. continue
  4718. }
  4719. _content = $$("div", {
  4720. className: "U_MD_D_KO",
  4721. "onmousedown": U.UF.C.closure(function (obj) {
  4722. //防止拖動圖標即打開了桌面應用
  4723. U.MD.D.click(this, obj);
  4724. }, [_trailTeacherDeskIconInfo[i]]),
  4725. "onclick": U.UF.C.closure(function (obj) {
  4726. //防止拖動圖標即打開了桌面應用
  4727. U.MD.D.click(this, obj);
  4728. }, [_trailTeacherDeskIconInfo[i]])
  4729. }, _frag); //
  4730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4733. }
  4734. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4735. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4736. if (_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4737. continue
  4738. }
  4739. _content = $$("div", {
  4740. className: "U_MD_D_KO",
  4741. "onmousedown": U.UF.C.closure(function (obj) {
  4742. //防止拖動圖標即打開了桌面應用
  4743. U.MD.D.click(this, obj);
  4744. }, [_trialTeacherDeskIconInfo[i]]),
  4745. "onclick": U.UF.C.closure(function (obj) {
  4746. //防止拖動圖標即打開了桌面應用
  4747. U.MD.D.click(this, obj);
  4748. }, [_trialTeacherDeskIconInfo[i]])
  4749. }, _frag); //
  4750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4753. }
  4754. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4755. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4756. if (_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4757. continue
  4758. }
  4759. _content = $$("div", {
  4760. className: "U_MD_D_KO",
  4761. "onmousedown": U.UF.C.closure(function (obj) {
  4762. //防止拖動圖標即打開了桌面應用
  4763. U.MD.D.click(this, obj);
  4764. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4765. "onclick": U.UF.C.closure(function (obj) {
  4766. //防止拖動圖標即打開了桌面應用
  4767. U.MD.D.click(this, obj);
  4768. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4769. }, _frag); //
  4770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4773. }
  4774. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4775. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4776. if (_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4777. continue
  4778. }
  4779. _content = $$("div", {
  4780. className: "U_MD_D_KO",
  4781. "onmousedown": U.UF.C.closure(function (obj) {
  4782. //防止拖動圖標即打開了桌面應用
  4783. U.MD.D.click(this, obj);
  4784. }, [_szsyTeacherDeskIconInfo[i]]),
  4785. "onclick": U.UF.C.closure(function (obj) {
  4786. //防止拖動圖標即打開了桌面應用
  4787. U.MD.D.click(this, obj);
  4788. }, [_szsyTeacherDeskIconInfo[i]])
  4789. }, _frag); //
  4790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4793. }
  4794. } else if ((_type == 1 || _type == 4) && _org == "eed08ac6-7269-11f0-9c7b-005056924926") {
  4795. for (i = 0; i < _PREPAITeacherDeskIcon.length; i++) {
  4796. if (_role === 0 && _PREPAITeacherDeskIcon[i].Url == 'testTeacher') {
  4797. continue
  4798. }
  4799. _content = $$("div", {
  4800. className: "U_MD_D_KO",
  4801. "onmousedown": U.UF.C.closure(function (obj) {
  4802. //防止拖動圖標即打開了桌面應用
  4803. U.MD.D.click(this, obj);
  4804. }, [_PREPAITeacherDeskIcon[i]]),
  4805. "onclick": U.UF.C.closure(function (obj) {
  4806. //防止拖動圖標即打開了桌面應用
  4807. U.MD.D.click(this, obj);
  4808. }, [_PREPAITeacherDeskIcon[i]])
  4809. }, _frag); //
  4810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAITeacherDeskIcon[i].style }, _iconcontent);
  4812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAITeacherDeskIcon[i].Name }, _iconcontent);
  4813. }
  4814. } else if ((_type == 1 || _type == 4) && _org == "cf30095b-87d5-11f0-9c7b-005056924926") {
  4815. for (i = 0; i < _zlteacherDeskIconInfo.length; i++) {
  4816. if (_role === 0 && _zlteacherDeskIconInfo[i].Url == 'testTeacher') {
  4817. continue
  4818. }
  4819. _content = $$("div", {
  4820. className: "U_MD_D_KO",
  4821. "onmousedown": U.UF.C.closure(function (obj) {
  4822. //防止拖動圖標即打開了桌面應用
  4823. U.MD.D.click(this, obj);
  4824. }, [_zlteacherDeskIconInfo[i]]),
  4825. "onclick": U.UF.C.closure(function (obj) {
  4826. //防止拖動圖標即打開了桌面應用
  4827. U.MD.D.click(this, obj);
  4828. }, [_zlteacherDeskIconInfo[i]])
  4829. }, _frag); //
  4830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlteacherDeskIconInfo[i].style }, _iconcontent);
  4832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlteacherDeskIconInfo[i].Name }, _iconcontent);
  4833. }
  4834. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4835. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4836. if (_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4837. continue
  4838. }
  4839. _content = $$("div", {
  4840. className: "U_MD_D_KO",
  4841. "onmousedown": U.UF.C.closure(function (obj) {
  4842. //防止拖動圖標即打開了桌面應用
  4843. U.MD.D.click(this, obj);
  4844. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4845. "onclick": U.UF.C.closure(function (obj) {
  4846. //防止拖動圖標即打開了桌面應用
  4847. U.MD.D.click(this, obj);
  4848. }, [_demoCocoTeacherDeskIconInfo[i]])
  4849. }, _frag); //
  4850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4853. }
  4854. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4855. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4856. if (_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4857. continue
  4858. }
  4859. _content = $$("div", {
  4860. className: "U_MD_D_KO",
  4861. "onmousedown": U.UF.C.closure(function (obj) {
  4862. //防止拖動圖標即打開了桌面應用
  4863. U.MD.D.click(this, obj);
  4864. }, [_x010608TeacherDeskIconInfo[i]]),
  4865. "onclick": U.UF.C.closure(function (obj) {
  4866. //防止拖動圖標即打開了桌面應用
  4867. U.MD.D.click(this, obj);
  4868. }, [_x010608TeacherDeskIconInfo[i]])
  4869. }, _frag); //
  4870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4873. }
  4874. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4875. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4876. if (_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4877. continue
  4878. }
  4879. _content = $$("div", {
  4880. className: "U_MD_D_KO",
  4881. "onmousedown": U.UF.C.closure(function (obj) {
  4882. //防止拖動圖標即打開了桌面應用
  4883. U.MD.D.click(this, obj);
  4884. }, [_x010611TeacherDeskIconInfo[i]]),
  4885. "onclick": U.UF.C.closure(function (obj) {
  4886. //防止拖動圖標即打開了桌面應用
  4887. U.MD.D.click(this, obj);
  4888. }, [_x010611TeacherDeskIconInfo[i]])
  4889. }, _frag); //
  4890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4893. }
  4894. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4895. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4896. if (_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4897. continue
  4898. }
  4899. _content = $$("div", {
  4900. className: "U_MD_D_KO",
  4901. "onmousedown": U.UF.C.closure(function (obj) {
  4902. //防止拖動圖標即打開了桌面應用
  4903. U.MD.D.click(this, obj);
  4904. }, [_x010612TeacherDeskIconInfo[i]]),
  4905. "onclick": U.UF.C.closure(function (obj) {
  4906. //防止拖動圖標即打開了桌面應用
  4907. U.MD.D.click(this, obj);
  4908. }, [_x010612TeacherDeskIconInfo[i]])
  4909. }, _frag); //
  4910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4913. }
  4914. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4915. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4916. if (_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4917. continue
  4918. }
  4919. _content = $$("div", {
  4920. className: "U_MD_D_KO",
  4921. "onmousedown": U.UF.C.closure(function (obj) {
  4922. //防止拖動圖標即打開了桌面應用
  4923. U.MD.D.click(this, obj);
  4924. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4925. "onclick": U.UF.C.closure(function (obj) {
  4926. //防止拖動圖標即打開了桌面應用
  4927. U.MD.D.click(this, obj);
  4928. }, [_tianyuanTeacherDeskIconInfo[i]])
  4929. }, _frag); //
  4930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4933. }
  4934. } else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4935. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  4936. if (_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher') {
  4937. continue
  4938. }
  4939. _content = $$("div", {
  4940. className: "U_MD_D_KO",
  4941. "onmousedown": U.UF.C.closure(function (obj) {
  4942. //防止拖動圖標即打開了桌面應用
  4943. U.MD.D.click(this, obj);
  4944. }, [_MOAITeacherDeskIcon[i]]),
  4945. "onclick": U.UF.C.closure(function (obj) {
  4946. //防止拖動圖標即打開了桌面應用
  4947. U.MD.D.click(this, obj);
  4948. }, [_MOAITeacherDeskIcon[i]])
  4949. }, _frag); //
  4950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  4952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  4953. }
  4954. } else {
  4955. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4956. if (_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  4957. continue
  4958. }
  4959. _content = $$("div", {
  4960. className: "U_MD_D_KO",
  4961. "onmousedown": U.UF.C.closure(function (obj) {
  4962. //防止拖動圖標即打開了桌面應用
  4963. U.MD.D.click(this, obj);
  4964. }, [_teacherDesktopIconInfo[i]]),
  4965. "onclick": U.UF.C.closure(function (obj) {
  4966. //防止拖動圖標即打開了桌面應用
  4967. U.MD.D.click(this, obj);
  4968. }, [_teacherDesktopIconInfo[i]])
  4969. }, _frag); //
  4970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4973. }
  4974. }
  4975. } else {
  4976. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4977. _content = $$("div", {
  4978. className: "U_MD_D_KO",
  4979. style: { 'width': '124px', 'height': '145px' },
  4980. "onmousedown": U.UF.C.closure(function (obj) {
  4981. //防止拖動圖標即打開了桌面應用
  4982. U.MD.D.click(this, obj);
  4983. }, [_easyDesktopIconInfo[i]]),
  4984. "onclick": U.UF.C.closure(function (obj) {
  4985. //防止拖動圖標即打開了桌面應用
  4986. U.MD.D.click(this, obj);
  4987. }, [_easyDesktopIconInfo[i]])
  4988. }, _frag); //
  4989. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4992. }
  4993. }
  4994. if (type == 1) {
  4995. //加載好後給圖標定位
  4996. U.MD.D.iconPostion($(_frag).Child());
  4997. } else {
  4998. //加載好後給圖標定位
  4999. U.MD.D.iconPostion2($(_frag).Child());
  5000. }
  5001. //把圖標加載到頁面
  5002. el.appendChild(_frag);
  5003. if(_type == 2){
  5004. U.selectEl(".U_MD_D_RW").css("display", "none");
  5005. }
  5006. }
  5007. /**
  5008. * 顯示任務欄
  5009. *
  5010. * @param {element} 桌面元素
  5011. */
  5012. U.MD.D.I.displayTaskbar = function (el) {
  5013. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  5014. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  5015. //任務欄位置變化
  5016. U.selectEl(el).css({ "bottom": "0px" });
  5017. //桌面位置變話
  5018. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  5019. }
  5020. }
  5021. //#region 桌面圖標拖動邏輯
  5022. /**
  5023. * 桌面排列圖標
  5024. *
  5025. * @param {element} 桌面元素
  5026. * @param {object} 上下相距的距離
  5027. * @param {object} 左右相距的距離
  5028. * @return {object} 命名空間
  5029. */
  5030. U.MD.D.iconPostion = function (childs, top, left) {
  5031. var i; //用於循環處理
  5032. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  5033. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  5034. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  5035. for (i = 0; i < childs.length; i++) {
  5036. //如果豎排top超過了範圍處理
  5037. if (top + 95 > US.height - 10) {
  5038. //left超過了頁面範圍處理,則嚮上重疊打印處理
  5039. if ((left + 180) > US.width) {
  5040. top -= 110;
  5041. left -= 90;
  5042. }
  5043. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  5044. else {
  5045. left += 90;
  5046. top = 15;
  5047. };
  5048. }
  5049. //給圖標的位置賦值
  5050. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  5051. if (i < childs.length - 1) {
  5052. //頁面圖標每次嚮下加95
  5053. top += 95;
  5054. }
  5055. }
  5056. //返回最後調用的圖標的位置
  5057. return [top, left];
  5058. }
  5059. /**
  5060. * 桌面排列圖標
  5061. *
  5062. * @param {element} 桌面元素
  5063. * @param {object} 上下相距的距離
  5064. * @param {object} 左右相距的距離
  5065. * @return {object} 命名空間
  5066. */
  5067. U.MD.D.iconPostion2 = function (childs, top, left) {
  5068. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  5069. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  5070. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  5071. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  5072. for (i = 0; i < childs.length; i++) {
  5073. //如果豎排top超過了範圍處理
  5074. if (left + 150 > US.width - 10) {
  5075. //left超過了頁面範圍處理,則嚮上重疊打印處理
  5076. if ((top + 180) > US.Height) {
  5077. top -= 150;
  5078. left -= 150;
  5079. }
  5080. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  5081. else {
  5082. top += 150;
  5083. left = ol;
  5084. };
  5085. }
  5086. //給圖標的位置賦值
  5087. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  5088. if (i < childs.length - 1) {
  5089. //頁面圖標每次嚮下加95
  5090. left += 150;
  5091. }
  5092. }
  5093. //返回最後調用的圖標的位置
  5094. return [top, left];
  5095. }
  5096. /**
  5097. * 桌面點擊事件邏輯
  5098. *
  5099. * @param {element} 桌面元素
  5100. * @param {object} 上下相距的距離
  5101. * @param {object} 左右相距的距離
  5102. * @return {object} 命名空間
  5103. */
  5104. U.MD.D.click = function (el, obj) {
  5105. var _buttonnumber = event.button; //點擊的按鈕的事件值
  5106. var _userinfo = US.userInfo;
  5107. U.UF.EV.stopBubble(); //阻止嚮上冒泡
  5108. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  5109. if (_buttonnumber < 2) {
  5110. //如果是click事件的處理
  5111. if (event.type == "click") {
  5112. //如果元素在mousemove事件中沒有移動則出發click事件
  5113. if (!U.MD.D.I.IsDrag) {
  5114. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5115. U.alert("請先登錄您的賬號!");
  5116. setTimeout(() => {
  5117. U.MD.U.L.login();
  5118. }, 2000);
  5119. } else {
  5120. //打開應用處理
  5121. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5122. }
  5123. }
  5124. }
  5125. //如果是mouse事件的處理
  5126. else {
  5127. if (US.Config.type == '1') {
  5128. //拖動處理,添加拖動和拖動結束事件
  5129. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5130. }
  5131. }
  5132. U.MD.D.I.IsDrag = false;
  5133. }
  5134. }
  5135. /**
  5136. * 拖動的處理
  5137. *
  5138. */
  5139. U.MD.D.iconMove = function () {
  5140. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  5141. U.MD.D.I.IsDrag = true;
  5142. }
  5143. /**
  5144. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  5145. *
  5146. * @param {element} 拖動的元素
  5147. * @return {object} 命名空間
  5148. */
  5149. U.MD.D.iconUp = function (el) {
  5150. var _top = 15,
  5151. _left = 20,
  5152. _margin,
  5153. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  5154. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  5155. if (_positioninfo["OT"] > 15) {
  5156. //網狀的形式定位,如果差超過了55,那麼嚮下定位,否則嚮上定位
  5157. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5158. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5159. }
  5160. if (_positioninfo["OL"] > 20) {
  5161. //網狀的形式定位,如果差超過了90,那麼嚮右定位,否則嚮左定位
  5162. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5163. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5164. }
  5165. //while循環判斷麼一個重疊的元素
  5166. do {
  5167. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素嚮下定位
  5168. _top = _positioninfo[0] + 95; //得到定位後的top
  5169. _left = _positioninfo[1]; //得到定位後的left
  5170. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5171. }
  5172. /**
  5173. * 判斷拖動後圖標是否重疊
  5174. *
  5175. * @param {element} 拖動的元素
  5176. * @param {element} 桌面所有的元素
  5177. * @param {array} 拖動元素的位置
  5178. ----------[0] 上 top
  5179. ----------[1] 左 left
  5180. * @return {object} 命名空間
  5181. */
  5182. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5183. //循環所有的圖標
  5184. for (var i = 0; i < childs.length; i++) {
  5185. //判斷有沒有和該圖標誒子重疊的元素
  5186. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5187. return childs[i]; //如果有返回
  5188. }
  5189. }
  5190. }
  5191. //#endregion
  5192. //#endregion
  5193. //#region 桌面應用
  5194. /**
  5195. * 打開應用
  5196. *
  5197. * @param {string} 類型
  5198. -----------------Disk 網盤繫統
  5199. -----------------PDisk 學習繫統網盤
  5200. -----------------Poto 圖片
  5201. -----------------Video 視頻
  5202. -----------------Music 音樂
  5203. -----------------Word word
  5204. -----------------Excel excel
  5205. -----------------Txt 記事本
  5206. -----------------PB 學習繫統
  5207. -----------------Blog 朋友圈繫統
  5208. -----------------FTP ftp繫統
  5209. -----------------Group 好友群
  5210. -----------------SY 首頁繫統
  5211. -----------------Set 個人設置
  5212. -----------------XSet 繫統設置
  5213. -----------------App 我們所有的app
  5214. -----------------BC c.1473.cn 平臺
  5215. -----------------CWeb d.1473.cn 變成平臺
  5216. -----------------其他的外聯繫統 我們統一用iframe打開
  5217. * @param {array} 類型
  5218. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  5219. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  5220. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  5221. 如果第一個參數為其他,則無第二個參數
  5222. * @returns {array}
  5223. */
  5224. window.addEventListener('message', function (e) { // 監聽 message 事件
  5225. // alert(e.data.type);
  5226. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  5227. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5228. //3是展示全部階段 2學生 1老師 4專家
  5229. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  5230. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5231. //3是展示全部階段 2學生 1老師 4專家
  5232. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  5233. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5234. //3是展示全部階段 2學生 1老師 4專家
  5235. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  5236. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5237. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  5238. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5239. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  5240. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5241. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  5242. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5243. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  5244. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5245. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  5246. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5247. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  5248. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5249. //3是展示全部階段 2學生 1老師 4專家
  5250. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  5251. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5252. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  5253. U.MD.D.I.selectUser();
  5254. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5255. var _formel = document.getElementById("study");
  5256. U.UF.F.windowZooming(_formel);
  5257. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5258. var _formel = document.getElementById("studyDetail");
  5259. U.UF.F.windowZooming(_formel);
  5260. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5261. var _formel = document.getElementById("studyDetail");
  5262. U.UF.F.windowZooming(_formel);
  5263. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5264. var _formel = document.getElementById("studentStudy");
  5265. U.UF.F.windowZooming(_formel);
  5266. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5267. // var _formel = document.getElementById("study");
  5268. //如果最大化了,那麼就把他縮小
  5269. // if (_formel.ismaximize) {
  5270. // return;
  5271. // }
  5272. // U.UF.F.windowZooming(_formel);
  5273. // U.UF.F.topWindow(_formel);
  5274. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5275. // var _formel = document.getElementById("studyDetail");
  5276. //如果最大化了,那麼就把他縮小
  5277. // if (_formel.ismaximize) {
  5278. // return;
  5279. // }
  5280. // U.UF.F.windowZooming(_formel);
  5281. // U.UF.F.topWindow(_formel);
  5282. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5283. // var _formel = document.getElementById("studentStudy");
  5284. // if (_formel.ismaximize) {
  5285. // return;
  5286. // }
  5287. // U.UF.F.windowZooming(_formel);
  5288. // U.UF.F.topWindow(_formel);
  5289. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5290. var _formel = document.getElementById("study");
  5291. // if (_formel.ismaximize) {
  5292. // return;
  5293. // }
  5294. // U.UF.F.windowZooming(_formel);
  5295. U.UF.F.topWindow(_formel);
  5296. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5297. var _formel = document.getElementById("studentIndex");
  5298. U.UF.F.windowZooming(_formel);
  5299. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5300. var _formel = document.getElementById("studyDetailS");
  5301. U.UF.F.windowZooming(_formel);
  5302. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5303. var _formel = document.getElementById("studioIndex");
  5304. U.UF.F.windowZooming(_formel);
  5305. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5306. var _formel = document.getElementById("studyDetailStudio");
  5307. U.UF.F.windowZooming(_formel);
  5308. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5309. var _formel = document.getElementById("studyDetailStudio");
  5310. U.UF.F.windowZooming(_formel);
  5311. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5312. var _formel = document.getElementById("studyDetailNT");
  5313. U.UF.F.windowZooming(_formel);
  5314. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5315. var _formel = document.getElementById("studyDetailS");
  5316. U.UF.F.windowZooming(_formel);
  5317. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5318. var _formel = document.getElementById("studyDetailS");
  5319. U.UF.F.topWindow(_formel);
  5320. } else if (e.data.tools && e.data.tools == "1") {
  5321. // U.MD.D.I.openApplication("whiteboard")
  5322. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5323. } else if (e.data.tools && e.data.tools == "2") {
  5324. U.MD.D.I.openApplication("note")
  5325. } else if (e.data.tools && e.data.tools == "3") {
  5326. // U.MD.D.I.openApplication("mind")
  5327. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5328. } else if (e.data.tools && e.data.tools == "4") {
  5329. U.MD.D.I.openApplication("investigation")
  5330. } else if (e.data.tools && e.data.tools == "6") {
  5331. // U.MD.D.I.openApplication("doc")
  5332. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5333. } else if (e.data.tools && e.data.tools == "7") {
  5334. // U.MD.D.I.openApplication("mindNetwork")
  5335. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5336. } else if (e.data.tools && e.data.tools == "8") {
  5337. U.MD.D.I.openApplication("library")
  5338. } else if (e.data.tools && e.data.tools == "17") {
  5339. U.MD.D.I.openApplication("stuLibrary")
  5340. } else if (e.data.tools && e.data.tools == "18") {
  5341. U.MD.D.I.openApplication("train")
  5342. } else if (e.data.tools && e.data.tools == "21") {
  5343. U.MD.D.I.openApplication("program")
  5344. } else if (e.data.tools && e.data.tools == "22") {
  5345. U.MD.D.I.openApplication("AIprogram2")
  5346. } else if (e.data.tools && e.data.tools == "23") {
  5347. U.MD.D.I.openApplication("Pythonprogram")
  5348. } else if (e.data.tools && e.data.tools == "24") {
  5349. U.MD.D.I.openApplication("AIprogram")
  5350. } else if (e.data.tools && e.data.tools == "25") {
  5351. U.MD.D.I.openApplication("sys")
  5352. } else if (e.data.tools && e.data.tools == "26") {
  5353. // U.MD.D.I.openApplication("courseDesign")
  5354. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5355. } else if (e.data.tools && e.data.tools == "31") {
  5356. U.MD.D.I.openApplication("netWorkPanel")
  5357. } else if (e.data.tools && e.data.tools == "32") {
  5358. U.MD.D.I.openApplication("codeEdit")
  5359. } else if (e.data.tools && e.data.tools == "57") {
  5360. U.MD.D.I.openApplication("CocoPi")
  5361. } else if (e.data.tools && e.data.tools == "63") {
  5362. U.MD.D.I.openApplication("Wood")
  5363. } else if (e.data.tools && e.data.tools == "58") {
  5364. U.MD.D.I.openApplication("car")
  5365. } else if (e.data.tools && e.data.tools == "59") {
  5366. U.MD.D.I.openApplication("lineSearch")
  5367. } else if (e.data.tools && e.data.tools == "60") {
  5368. U.MD.D.I.openApplication("deepLearning")
  5369. } else if (e.data.tools && e.data.tools == "61") {
  5370. U.MD.D.I.openApplication("allHistory")
  5371. } else if (e.data.tools && e.data.tools == "28") {
  5372. U.MD.D.I.openApplication("translation")
  5373. } else if (e.data.tools && e.data.tools == "37") {
  5374. U.MD.D.I.openApplication("mohe")
  5375. } else if (e.data.tools && e.data.tools == "38") {
  5376. U.MD.D.I.openApplication("24game")
  5377. } else if (e.data.tools && e.data.tools == "39") {
  5378. U.MD.D.I.openApplication("GeoGebra")
  5379. } else if (e.data.tools && e.data.tools == "43") {
  5380. U.MD.D.I.openApplication("studentEvaluate")
  5381. } else if (e.data.tools && e.data.tools == "44") {
  5382. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5383. } else if (e.data.tools && e.data.tools == "46") {
  5384. U.MD.D.I.openApplication("project")
  5385. } else if (e.data.tools && e.data.tools == "71") {
  5386. U.MD.D.I.openApplication("aigptCourse")
  5387. } else if (e.data.tools && e.data.tools == "72") {
  5388. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5389. } else if (e.data.tools && e.data.tools == "1s") {
  5390. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5391. } else if (e.data.tools && e.data.tools == "3s") {
  5392. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5393. } else if (e.data.tools && e.data.tools == "6s") {
  5394. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5395. } else if (e.data.tools && e.data.tools == "1studio") {
  5396. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5397. } else if (e.data.tools && e.data.tools == "3studio") {
  5398. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5399. } else if (e.data.tools && e.data.tools == "6studio") {
  5400. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5401. } else if (e.data.tools && e.data.tools == "3y") {
  5402. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5403. } else if (e.data.tools && e.data.tools == "73y") {
  5404. U.MD.D.I.openApplicationYu("ppt", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5405. } else if (e.data.tools && e.data.tools == "1y") {
  5406. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5407. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5408. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5409. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5410. U.MD.D.I.openApplication("AIAnalyse")
  5411. } else if (e.data.tools && e.data.tools == "1teacher") {
  5412. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5413. } else if (e.data.tools && e.data.tools == "3teacher") {
  5414. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5415. } else if (e.data.tools && e.data.tools == "7teacher") {
  5416. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5417. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5418. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5419. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5420. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5421. } else if (e.data.tools && e.data.tools == "1E") {
  5422. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5423. } else if (e.data.tools && e.data.tools == "3E") {
  5424. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5425. } else if (e.data.tools && e.data.tools == "57y") {
  5426. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5427. } else if (e.data.tools && e.data.tools == "57u") {
  5428. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5429. } else if (e.data.tools && e.data.tools == "57teacher") {
  5430. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5431. } else if (e.data.tools && e.data.tools == "64") {
  5432. U.MD.D.I.openApplication("AIChat")
  5433. } else if (e.data.tools && e.data.tools == "66") {
  5434. U.MD.D.I.openApplication("formulaEdi")
  5435. } else if (e.data.tools && e.data.tools == "67") {
  5436. U.MD.D.I.openApplication("molStr")
  5437. } else if (e.data.tools && e.data.tools == "68") {
  5438. U.MD.D.I.openApplication("timeAxis")
  5439. } else if (e.data.tools && e.data.tools == "openCourse") {
  5440. let _data = {
  5441. typea: e.data.typea || '',
  5442. typeb: e.data.typeb || '',
  5443. typed: e.data.typed || '',
  5444. }
  5445. U.MD.D.I.openInApplication("index", _data)
  5446. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5447. let _data = {
  5448. classid: e.data.classid || '',
  5449. }
  5450. U.MD.D.I.openInApplication("dataClass", _data)
  5451. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5452. let _data = {
  5453. cid: e.data.cid || '',
  5454. gid: e.data.gid || '',
  5455. }
  5456. U.MD.D.I.openInApplication("opencCscl", _data)
  5457. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5458. U.MD.D.I.openApplication("dataBoardTest")
  5459. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5460. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5461. } else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5462. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5463. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5464. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5465. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5466. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5467. } else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5468. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5469. } else if (e.data.tools && e.data.tools == "openCoursePptUpdate") {
  5470. U.MD.D.I.openInApplication("openCoursePptUpdate", e.data.cid)
  5471. } else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5472. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5473. } else if (e.data.tools && e.data.tools == "loginSz") {
  5474. U.MD.D.I.openInApplication("loginSz")
  5475. } else if (e.data.tools && e.data.tools == "classroom_observation_board") {
  5476. if ($('#classroom_observation_board')[0]) {
  5477. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5478. }
  5479. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5480. } else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment") {
  5481. if ($('#classroom_observation_ob_comment')[0]) {
  5482. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5483. }
  5484. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5485. } else if (e.data.tools && e.data.tools == "logout") {
  5486. U.MD.U.LO.logoutSystem()
  5487. } else if (e.data.tools && e.data.tools == "getLogin") {
  5488. let _iframe = $('#UI_Login')[0];
  5489. if (_iframe) {
  5490. var userInfo = US.userInfo;
  5491. var type = 2
  5492. if (userInfo && userInfo.userid) {
  5493. type = 1
  5494. }
  5495. _contentWindow = _iframe.contentWindow;
  5496. _contentWindow.postMessage({ tools: "getLogin", type: type }, "*")
  5497. }
  5498. }
  5499. });
  5500. U.MD.D.I.selectUser = function () {
  5501. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5502. if (res.value[0].length > 0) {
  5503. US.userInfo = res.value[0][0];
  5504. $(".userName")[0].innerHTML = US.userInfo.username;
  5505. }
  5506. }, [], { "type": "GET", "withCredentials": true });
  5507. }
  5508. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5509. var _userinfo = US.userInfo, //登錄用戶信息
  5510. _userid = US.userInfo.userid, //登錄用戶id
  5511. _oid = _userinfo.organizeid,
  5512. _type = US.userInfo.type,
  5513. _org = US.userInfo.org,
  5514. _role = US.userInfo.role,
  5515. _classId = US.userInfo.classid;
  5516. if (_type == 4) {
  5517. tType = 4
  5518. }
  5519. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5520. if (opArray.includes(str)) {
  5521. let _str = str
  5522. if (str == 'appStore') {
  5523. _str = "cocoFlow"
  5524. } else if (str == "futureClass") {
  5525. _str = "cocoNote"
  5526. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5527. _str = "IntelligentForm"
  5528. } else if (str == "testStudent" || str == "testStudentSies") {
  5529. _str = "TeacherCenter"
  5530. }
  5531. try {
  5532. if (data) {
  5533. U.MD.D.addOp3('1', "", { type: _str + 'Open', cid: data }, "success")
  5534. } else {
  5535. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5536. }
  5537. } catch (error) {
  5538. console.log(error);
  5539. }
  5540. }
  5541. switch (str) {
  5542. case "studyDetailNT": //無終端模式
  5543. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5544. setTimeout(() => {
  5545. U.MD.U.L.login();
  5546. }, 2000);
  5547. } else {
  5548. _formdiv = new U.UF.UI.form(
  5549. "課程詳情",
  5550. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5551. "id": "studyDetailNT",
  5552. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //創建窗體
  5557. _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); } }
  5558. break;
  5559. }
  5560. case "studyDetail":
  5561. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5562. setTimeout(() => {
  5563. U.MD.U.L.login();
  5564. }, 2000);
  5565. } else {
  5566. _formdiv = new U.UF.UI.form(
  5567. "課程詳情",
  5568. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5569. "id": "studyDetail",
  5570. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //創建窗體
  5575. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5576. break;
  5577. }
  5578. case "studyDetailTrain":
  5579. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5580. setTimeout(() => {
  5581. U.MD.U.L.login();
  5582. }, 2000);
  5583. } else {
  5584. _formdiv = new U.UF.UI.form(
  5585. "培訓詳情",
  5586. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5587. "id": "studyDetailTrain",
  5588. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //創建窗體
  5593. _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); } }
  5594. break;
  5595. }
  5596. case "studyDetailS":
  5597. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5598. setTimeout(() => {
  5599. U.MD.U.L.login();
  5600. }, 2000);
  5601. } else {
  5602. _formdiv = new U.UF.UI.form(
  5603. "項目詳情",
  5604. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5605. "id": "studyDetailS",
  5606. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //創建窗體
  5611. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5612. break;
  5613. }
  5614. case "studyDetailStudio":
  5615. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5616. setTimeout(() => {
  5617. U.MD.U.L.login();
  5618. }, 2000);
  5619. } else {
  5620. _formdiv = new U.UF.UI.form(
  5621. "工作詳情",
  5622. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5623. "id": "studyDetailStudio",
  5624. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, { "style": { "height": "36px" } }).form; //創建窗體
  5629. _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); } }
  5630. break;
  5631. }
  5632. case "studyDetailS5":
  5633. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5634. setTimeout(() => {
  5635. U.MD.U.L.login();
  5636. }, 2000);
  5637. } else {
  5638. _formdiv = new U.UF.UI.form(
  5639. "項目詳情",
  5640. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5641. "id": "studyDetailS",
  5642. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //創建窗體
  5647. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5648. break;
  5649. }
  5650. case "studyDetailGM":
  5651. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5652. setTimeout(() => {
  5653. U.MD.U.L.login();
  5654. }, 2000);
  5655. } else {
  5656. _formdiv = new U.UF.UI.form(
  5657. "課程詳情",
  5658. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5659. "id": "studyDetail",
  5660. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5661. "onresize": function () { }
  5662. }, {
  5663. closecallback: function () { }
  5664. }, { "style": { "height": "36px" } }).form; //創建窗體
  5665. _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); } }
  5666. break;
  5667. }
  5668. case "hanUrl":
  5669. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5670. setTimeout(() => {
  5671. U.MD.U.L.login();
  5672. }, 2000);
  5673. } else {
  5674. _formdiv = new U.UF.UI.form(
  5675. "漢字宮",
  5676. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  5677. "id": "hanUrl",
  5678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //創建窗體
  5683. _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); } }
  5684. break;
  5685. }
  5686. case "index":
  5687. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5688. setTimeout(() => {
  5689. U.MD.U.L.login();
  5690. }, 2000);
  5691. } else {
  5692. _formdiv = new U.UF.UI.form(
  5693. "課程中心",
  5694. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5695. "id": "study",
  5696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5697. "onresize": function () { }
  5698. }, {
  5699. closecallback: function () { }
  5700. }, { "style": { "height": "36px" } }).form; //創建窗體
  5701. _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); } }
  5702. break;
  5703. }
  5704. case "dataClass":
  5705. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5706. setTimeout(() => {
  5707. U.MD.U.L.login();
  5708. }, 2000);
  5709. } else {
  5710. _formdiv = new U.UF.UI.form(
  5711. "數據報告",
  5712. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5713. "id": "dataClass",
  5714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //創建窗體
  5719. _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); } }
  5720. break;
  5721. }
  5722. case "opencCscl":
  5723. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5724. setTimeout(() => {
  5725. U.MD.U.L.login();
  5726. }, 2000);
  5727. } else {
  5728. _formdiv = new U.UF.UI.form(
  5729. "協同建構",
  5730. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5731. "id": "futureClass",
  5732. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5736. }, { "style": { "height": "36px" } }).form; //創建窗體
  5737. _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); } }
  5738. break;
  5739. }
  5740. case "openCourseUpdate":
  5741. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5742. setTimeout(() => {
  5743. U.MD.U.L.login();
  5744. }, 2000);
  5745. } else {
  5746. _formdiv = new U.UF.UI.form(
  5747. "課程管理",
  5748. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5749. "id": "openCourseUpdate",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //創建窗體
  5755. break;
  5756. }
  5757. case "openNewCourseUpdate":
  5758. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5759. setTimeout(() => {
  5760. U.MD.U.L.login();
  5761. }, 2000);
  5762. } else {
  5763. _formdiv = new U.UF.UI.form(
  5764. "課程管理",
  5765. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5766. "id": "openCourseUpdate",
  5767. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //創建窗體
  5772. break;
  5773. }
  5774. case "openCoursePptUpdate":
  5775. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5776. setTimeout(() => {
  5777. U.MD.U.L.login();
  5778. }, 2000);
  5779. } else {
  5780. _formdiv = new U.UF.UI.form(
  5781. "課程管理",
  5782. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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/#/pptEasy?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5783. "id": "openCourseUpdate",
  5784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5785. "onresize": function () { }
  5786. }, {
  5787. closecallback: function () { }
  5788. }, { "style": { "height": "36px" } }).form; //創建窗體
  5789. break;
  5790. }
  5791. case "openCourseEUpdate":
  5792. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5793. setTimeout(() => {
  5794. U.MD.U.L.login();
  5795. }, 2000);
  5796. } else {
  5797. _formdiv = new U.UF.UI.form(
  5798. "課程管理",
  5799. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5800. "id": "openCourseUpdate",
  5801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //創建窗體
  5806. break;
  5807. }
  5808. case "openCourseAiUpdate":
  5809. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5810. setTimeout(() => {
  5811. U.MD.U.L.login();
  5812. }, 2000);
  5813. } else {
  5814. _formdiv = new U.UF.UI.form(
  5815. "課程管理",
  5816. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5817. "id": "openCourseUpdate",
  5818. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5819. "onresize": function () { }
  5820. }, {
  5821. closecallback: function () { }
  5822. }, { "style": { "height": "36px" } }).form; //創建窗體
  5823. break;
  5824. }
  5825. case "openCourseAiUpdate2":
  5826. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5827. setTimeout(() => {
  5828. U.MD.U.L.login();
  5829. }, 2000);
  5830. } else {
  5831. _formdiv = new U.UF.UI.form(
  5832. "課程管理",
  5833. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5834. "id": "openCourseUpdate",
  5835. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5836. "onresize": function () { }
  5837. }, {
  5838. closecallback: function () { }
  5839. }, { "style": { "height": "36px" } }).form; //創建窗體
  5840. break;
  5841. }
  5842. case "openCourseNewUpdate":
  5843. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5844. setTimeout(() => {
  5845. U.MD.U.L.login();
  5846. }, 2000);
  5847. } else {
  5848. _formdiv = new U.UF.UI.form(
  5849. "課程管理",
  5850. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5851. "id": "openCourseUpdate",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //創建窗體
  5857. break;
  5858. }
  5859. case "inviteLoginSz":
  5860. _formdiv = new U.UF.UI.form(
  5861. "隨機碼登錄",
  5862. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5863. "id": "loginSz",
  5864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5865. "onresize": function () { }
  5866. }, {
  5867. closecallback: function () { }
  5868. }, { "style": { "height": "36px" } }).form; //創建窗體
  5869. break;
  5870. case "loginSz":
  5871. _formdiv = new U.UF.UI.form(
  5872. "教師登錄",
  5873. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5874. "id": "loginSz",
  5875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5876. "onresize": function () { }
  5877. }, {
  5878. closecallback: function () { }
  5879. }, { "style": { "height": "36px" } }).form; //創建窗體
  5880. break;
  5881. case "teacher":
  5882. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5883. setTimeout(() => {
  5884. U.MD.U.L.login();
  5885. }, 2000);
  5886. } else {
  5887. _formdiv = new U.UF.UI.form(
  5888. "教師管理",
  5889. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5890. "id": "teacher",
  5891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //創建窗體
  5896. break;
  5897. }
  5898. case "dataBoardSZArea":
  5899. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5900. setTimeout(() => {
  5901. U.MD.U.L.login();
  5902. }, 2000);
  5903. } else {
  5904. _formdiv = new U.UF.UI.form(
  5905. "綜合數據看板",
  5906. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5907. "id": "dataBoardSZArea",
  5908. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //創建窗體
  5913. break;
  5914. }
  5915. case "dataBoardSZCity":
  5916. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5917. setTimeout(() => {
  5918. U.MD.U.L.login();
  5919. }, 2000);
  5920. } else {
  5921. _formdiv = new U.UF.UI.form(
  5922. "綜合數據看板",
  5923. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5924. "id": "dataBoardSZCity",
  5925. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //創建窗體
  5930. break;
  5931. }
  5932. case "classroom_observation_board":
  5933. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5934. setTimeout(() => {
  5935. U.MD.U.L.login();
  5936. }, 2000);
  5937. } else {
  5938. _formdiv = new U.UF.UI.form(
  5939. "課堂觀察",
  5940. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5941. "id": "classroom_observation_board",
  5942. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5943. "onresize": function () { }
  5944. }, {
  5945. closecallback: function () { }
  5946. }, { "style": { "height": "36px" } }).form; //創建窗體
  5947. break;
  5948. }
  5949. case "classroom_observation_ob_comment":
  5950. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5951. setTimeout(() => {
  5952. U.MD.U.L.login();
  5953. }, 2000);
  5954. } else {
  5955. _formdiv = new U.UF.UI.form(
  5956. "課堂審核",
  5957. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5958. "id": "classroom_observation_ob_comment",
  5959. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5960. "onresize": function () { }
  5961. }, {
  5962. closecallback: function () { }
  5963. }, { "style": { "height": "36px" } }).form; //創建窗體
  5964. break;
  5965. }
  5966. case "gptConfig":
  5967. _formdiv = new U.UF.UI.form(
  5968. data.name ? data.name : "應用中心",
  5969. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5970. "id": "gptConfig" + data.id,
  5971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5972. "onresize": function () { }
  5973. }, {
  5974. closecallback: function () { }
  5975. }, { "style": { "height": "36px" } }).form; //創建窗體
  5976. break;
  5977. case "testDetail":
  5978. _formdiv = new U.UF.UI.form(
  5979. "表單填寫",
  5980. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5981. "id": "testDetail" + data,
  5982. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5983. "onresize": function () { }
  5984. }, {
  5985. closecallback: function () { }
  5986. }, { "style": { "height": "36px" } }).form; //創建窗體
  5987. break;
  5988. }
  5989. }
  5990. U.MD.D.I.openApplication = function (str, obj, info) {
  5991. obj = obj || {};
  5992. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5993. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5994. _userinfo = US.userInfo, //登錄用戶信息
  5995. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5996. _oid = obj.organizeid || _userinfo.organizeid,
  5997. _type = US.userInfo.type,
  5998. _org = obj.org || US.userInfo.org,
  5999. _role = US.userInfo.role,
  6000. _classId = US.userInfo.classid,
  6001. _TscreenType = 1
  6002. _screenType = 2,
  6003. _SscreenType = 3;
  6004. let iframeBool = true
  6005. if (U.UF.UI.form.allForm[str]) {
  6006. iframeBool = false
  6007. }
  6008. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  6009. return;
  6010. }
  6011. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  6012. if (opArray.includes(str)) {
  6013. let _str = str
  6014. if (str == 'appStore') {
  6015. _str = "cocoFlow"
  6016. } else if (str == "futureClass") {
  6017. _str = "cocoNote"
  6018. } else if (str == "testTeacher" || str == "testTeacherSies") {
  6019. _str = "IntelligentForm"
  6020. } else if (str == "testStudent" || str == "testStudentSies") {
  6021. _str = "TeacherCenter"
  6022. }
  6023. try {
  6024. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  6025. } catch (error) {
  6026. console.log(error);
  6027. }
  6028. }
  6029. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6030. switch (str) {
  6031. case "studnetProject": //好友打開
  6032. _formdiv = new U.UF.UI.form(
  6033. "我的項目",
  6034. $$("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 }), {
  6035. "id": "studnetProject",
  6036. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6037. "onresize": function () { }
  6038. }, {
  6039. closecallback: function () { }
  6040. }, { "style": { "height": "36px" } }).form; //創建窗體
  6041. _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); } }
  6042. break;
  6043. case "studentEvaluate": //好友打開
  6044. _formdiv = new U.UF.UI.form(
  6045. "我的評價",
  6046. $$("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 }), {
  6047. "id": "studentEvaluate",
  6048. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6049. "onresize": function () { }
  6050. }, {
  6051. closecallback: function () { }
  6052. }, { "style": { "height": "36px" } }).form; //創建窗體
  6053. _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); } }
  6054. break;
  6055. case "my":
  6056. _formdiv = new U.UF.UI.form(
  6057. "我的資料",
  6058. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6059. "id": "my",
  6060. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6061. "onresize": function () { }
  6062. }, {
  6063. closecallback: function () { }
  6064. }, { "style": { "height": "36px" } }).form; //創建窗體
  6065. _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); } }
  6066. break;
  6067. case "program":
  6068. _formdiv = new U.UF.UI.form(
  6069. "編程平臺",
  6070. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6071. "id": "program",
  6072. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6073. "onresize": function () { }
  6074. }, {
  6075. closecallback: function () { }
  6076. }, { "style": { "height": "36px" } }).form; //創建窗體
  6077. _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); } }
  6078. break;
  6079. case "library":
  6080. _formdiv = new U.UF.UI.form(
  6081. "素材庫",
  6082. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6083. "id": "library",
  6084. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6085. "onresize": function () { }
  6086. }, {
  6087. closecallback: function () { }
  6088. }, { "style": { "height": "36px" } }).form; //創建窗體
  6089. _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); } }
  6090. break;
  6091. case "whiteboard":
  6092. _formdiv = new U.UF.UI.form(
  6093. "電子白闆",
  6094. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6095. "id": "whiteboard",
  6096. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6097. "onresize": function () { }
  6098. }, {
  6099. closecallback: function () { }
  6100. }, { "style": { "height": "36px" } }).form; //創建窗體
  6101. _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); } }
  6102. break;
  6103. case "investigation":
  6104. _formdiv = new U.UF.UI.form(
  6105. "問卷調查",
  6106. $$("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 }), {
  6107. "id": "investigation",
  6108. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6109. "onresize": function () { }
  6110. }, {
  6111. closecallback: function () { }
  6112. }, { "style": { "height": "36px" } }).form; //創建窗體
  6113. _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); } }
  6114. break;
  6115. case "note":
  6116. _formdiv = new U.UF.UI.form(
  6117. "便簽分類",
  6118. $$("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 }), {
  6119. "id": "note",
  6120. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6121. "onresize": function () { }
  6122. }, {
  6123. closecallback: function () { }
  6124. }, { "style": { "height": "36px" } }).form; //創建窗體
  6125. _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); } }
  6126. break;
  6127. // case "score":
  6128. // _formdiv = new U.UF.UI.form(
  6129. // "量規評分",
  6130. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6131. // "id": "score",
  6132. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6133. // "onresize": function() {}
  6134. // }, {
  6135. // closecallback: function() {}
  6136. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6137. // _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); } }
  6138. // break;
  6139. case "mind":
  6140. _formdiv = new U.UF.UI.form(
  6141. "思維導圖",
  6142. $$("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"
  6143. "id": "mind",
  6144. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6145. "onresize": function () { }
  6146. }, {
  6147. closecallback: function () { }
  6148. }, { "style": { "height": "36px" } }).form; //創建窗體
  6149. _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); } }
  6150. break;
  6151. case "doc":
  6152. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6156. "id": "doc",
  6157. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //創建窗體
  6162. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6163. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6164. // })
  6165. _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); } }
  6166. break;
  6167. case "studentStudy":
  6168. _formdiv = new U.UF.UI.form(
  6169. "課程中心",
  6170. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6171. "id": "studentStudy",
  6172. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6173. "onresize": function () { }
  6174. }, {
  6175. closecallback: function () { }
  6176. }, { "style": { "height": "36px" } }).form; //創建窗體
  6177. _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); } }
  6178. break;
  6179. case "train": //好友打開
  6180. _formdiv = new U.UF.UI.form(
  6181. "訓練平臺",
  6182. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6183. "id": "train",
  6184. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6185. "onresize": function () { }
  6186. }, {
  6187. closecallback: function () { }
  6188. }, { "style": { "height": "36px" } }).form; //創建窗體
  6189. _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); } }
  6190. break;
  6191. case "mindNetwork": //好友打開
  6192. _formdiv = new U.UF.UI.form(
  6193. "思維網格",
  6194. $$("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 }), {
  6195. "id": "mindNetwork",
  6196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6197. "onresize": function () { }
  6198. }, {
  6199. closecallback: function () { }
  6200. }, { "style": { "height": "36px" } }).form; //創建窗體
  6201. _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); } }
  6202. break;
  6203. case "studentClassRoom": //好友打開
  6204. _formdiv = new U.UF.UI.form(
  6205. "實時課堂",
  6206. $$("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 }), {
  6207. "id": "studentClassRoom",
  6208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, { "style": { "height": "36px" } }).form; //創建窗體
  6213. _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); } }
  6214. setTimeout(() => {
  6215. U.UF.F.windowZooming(_formdiv)
  6216. }, 0);
  6217. break;
  6218. }
  6219. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6220. switch (str) {
  6221. case "studnetProject": //好友打開
  6222. _formdiv = new U.UF.UI.form(
  6223. "我的項目",
  6224. $$("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 }), {
  6225. "id": "studnetProject",
  6226. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6227. "onresize": function () { }
  6228. }, {
  6229. closecallback: function () { }
  6230. }, { "style": { "height": "36px" } }).form; //創建窗體
  6231. _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); } }
  6232. break;
  6233. case "studentEvaluate": //好友打開
  6234. _formdiv = new U.UF.UI.form(
  6235. "我的評價",
  6236. $$("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 }), {
  6237. "id": "studentEvaluate",
  6238. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6239. "onresize": function () { }
  6240. }, {
  6241. closecallback: function () { }
  6242. }, { "style": { "height": "36px" } }).form; //創建窗體
  6243. _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); } }
  6244. break;
  6245. case "my":
  6246. _formdiv = new U.UF.UI.form(
  6247. "我的資料",
  6248. $$("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 }), {
  6249. "id": "my",
  6250. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //創建窗體
  6255. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6256. break;
  6257. case "program":
  6258. _formdiv = new U.UF.UI.form(
  6259. "編程平臺",
  6260. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6261. "id": "program",
  6262. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //創建窗體
  6267. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6268. break;
  6269. case "library":
  6270. _formdiv = new U.UF.UI.form(
  6271. "素材庫",
  6272. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6273. "id": "library",
  6274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //創建窗體
  6279. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材庫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6280. break;
  6281. case "whiteboard":
  6282. _formdiv = new U.UF.UI.form(
  6283. "電子白闆",
  6284. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6285. "id": "whiteboard",
  6286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //創建窗體
  6291. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "電子白闆", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6292. break;
  6293. case "investigation":
  6294. _formdiv = new U.UF.UI.form(
  6295. "問卷調查",
  6296. $$("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 }), {
  6297. "id": "investigation",
  6298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //創建窗體
  6303. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "問卷調查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6304. break;
  6305. case "note":
  6306. _formdiv = new U.UF.UI.form(
  6307. "便簽分類",
  6308. $$("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 }), {
  6309. "id": "note",
  6310. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //創建窗體
  6315. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便簽分類", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6316. break;
  6317. // case "score":
  6318. // _formdiv = new U.UF.UI.form(
  6319. // "量規評分",
  6320. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6321. // "id": "score",
  6322. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6323. // "onresize": function() {}
  6324. // }, {
  6325. // closecallback: function() {}
  6326. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6327. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量規評分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6328. // break;
  6329. case "mind":
  6330. _formdiv = new U.UF.UI.form(
  6331. "思維導圖",
  6332. $$("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"
  6333. "id": "mind",
  6334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //創建窗體
  6339. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6340. break;
  6341. case "doc":
  6342. // U.MD.D.I.isRoom();
  6343. _formdiv = new U.UF.UI.form(
  6344. "協同文檔",
  6345. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6346. "id": "doc",
  6347. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6348. "onresize": function () { }
  6349. }, {
  6350. closecallback: function () { }
  6351. }, { "style": { "height": "36px" } }).form; //創建窗體
  6352. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6353. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6354. })
  6355. _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); } }
  6356. break;
  6357. case "train": //好友打開
  6358. _formdiv = new U.UF.UI.form(
  6359. "訓練平臺",
  6360. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6361. "id": "train",
  6362. "style": { "width": "90%", "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/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6368. break;
  6369. case "studentStudy":
  6370. _formdiv = new U.UF.UI.form(
  6371. "課程中心",
  6372. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6373. "id": "studentStudy",
  6374. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6380. break;
  6381. case "mindNetwork": //好友打開
  6382. _formdiv = new U.UF.UI.form(
  6383. "思維網格",
  6384. $$("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 }), {
  6385. "id": "mindNetwork",
  6386. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6392. break;
  6393. case "studentClassRoom": //好友打開
  6394. _formdiv = new U.UF.UI.form(
  6395. "實時課堂",
  6396. $$("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 }), {
  6397. "id": "studentClassRoom",
  6398. "style": { "width": "90%", "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/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6404. setTimeout(() => {
  6405. U.UF.F.windowZooming(_formdiv)
  6406. }, 0);
  6407. break;
  6408. }
  6409. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6410. //選擇應用處理
  6411. switch (str) {
  6412. case "project": //好友打開
  6413. _formdiv = new U.UF.UI.form(
  6414. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  6415. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  6416. "id": "project",
  6417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //創建窗體
  6422. _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); } }
  6423. break;
  6424. case "student":
  6425. _formdiv = new U.UF.UI.form(
  6426. "學生管理",
  6427. $$("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 }), {
  6428. "id": "student",
  6429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //創建窗體
  6434. _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); } }
  6435. break;
  6436. case "evaluate":
  6437. _formdiv = new U.UF.UI.form(
  6438. "學生評價",
  6439. $$("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 }), {
  6440. "id": "evaluate",
  6441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //創建窗體
  6446. _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); } }
  6447. break;
  6448. case "sys":
  6449. _formdiv = new U.UF.UI.form(
  6450. "目標管理",
  6451. $$("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 }), {
  6452. "id": "sys",
  6453. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //創建窗體
  6458. _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); } }
  6459. break;
  6460. case "courseDesign":
  6461. _formdiv = new U.UF.UI.form(
  6462. "項目設計",
  6463. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6464. "id": "courseDesign",
  6465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //創建窗體
  6470. _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); } }
  6471. break;
  6472. case "program":
  6473. _formdiv = new U.UF.UI.form(
  6474. "編程平臺",
  6475. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6476. "id": "program",
  6477. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //創建窗體
  6482. _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); } }
  6483. break;
  6484. case "class":
  6485. _formdiv = new U.UF.UI.form(
  6486. "班級管理",
  6487. $$("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 }), {
  6488. "id": "class",
  6489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //創建窗體
  6494. _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); } }
  6495. break;
  6496. case "Grade":
  6497. _formdiv = new U.UF.UI.form(
  6498. "年級管理",
  6499. $$("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 }), {
  6500. "id": "Grade",
  6501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () { }
  6505. }, { "style": { "height": "36px" } }).form; //創建窗體
  6506. _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); } }
  6507. break;
  6508. case "teacherOffice":
  6509. _formdiv = new U.UF.UI.form(
  6510. "教研室",
  6511. $$("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 }), {
  6512. "id": "teacherOffice",
  6513. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6514. "onresize": function () { }
  6515. }, {
  6516. closecallback: function () { }
  6517. }, { "style": { "height": "36px" } }).form; //創建窗體
  6518. _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); } }
  6519. break;
  6520. case "my":
  6521. _formdiv = new U.UF.UI.form(
  6522. "我的資料",
  6523. $$("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 }), {
  6524. "id": "my",
  6525. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //創建窗體
  6530. _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); } }
  6531. break;
  6532. case "notice":
  6533. _formdiv = new U.UF.UI.form(
  6534. "通知公告",
  6535. $$("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 }), {
  6536. "id": "notice",
  6537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6538. "onresize": function () { }
  6539. }, {
  6540. closecallback: function () { }
  6541. }, { "style": { "height": "36px" } }).form; //創建窗體
  6542. _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); } }
  6543. break;
  6544. case "library":
  6545. _formdiv = new U.UF.UI.form(
  6546. "素材庫",
  6547. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6548. "id": "library",
  6549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6550. "onresize": function () { }
  6551. }, {
  6552. closecallback: function () { }
  6553. }, { "style": { "height": "36px" } }).form; //創建窗體
  6554. _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); } }
  6555. break;
  6556. case "whiteboard":
  6557. _formdiv = new U.UF.UI.form(
  6558. "電子白闆",
  6559. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6560. "id": "whiteboard",
  6561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6562. "onresize": function () { }
  6563. }, {
  6564. closecallback: function () { }
  6565. }, { "style": { "height": "36px" } }).form; //創建窗體
  6566. _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); } }
  6567. break;
  6568. case "investigation":
  6569. _formdiv = new U.UF.UI.form(
  6570. "問卷調查",
  6571. $$("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 }), {
  6572. "id": "investigation",
  6573. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //創建窗體
  6578. _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); } }
  6579. break;
  6580. case "note":
  6581. _formdiv = new U.UF.UI.form(
  6582. "便簽分類",
  6583. $$("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 }), {
  6584. "id": "note",
  6585. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //創建窗體
  6590. _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); } }
  6591. break;
  6592. // case "score":
  6593. // _formdiv = new U.UF.UI.form(
  6594. // "量規評分",
  6595. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6596. // "id": "score",
  6597. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6598. // "onresize": function() {}
  6599. // }, {
  6600. // closecallback: function() {}
  6601. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6602. // _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); } }
  6603. // break;
  6604. case "mind":
  6605. _formdiv = new U.UF.UI.form(
  6606. "思維導圖",
  6607. $$("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"
  6608. "id": "mind",
  6609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6610. "onresize": function () { }
  6611. }, {
  6612. closecallback: function () { }
  6613. }, { "style": { "height": "36px" } }).form; //創建窗體
  6614. _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); } }
  6615. break;
  6616. case "doc":
  6617. // U.MD.D.I.isRoom();
  6618. _formdiv = new U.UF.UI.form(
  6619. "協同文檔",
  6620. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6621. "id": "doc",
  6622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, { "style": { "height": "36px" } }).form; //創建窗體
  6627. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6628. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6629. })
  6630. _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); } }
  6631. break;
  6632. case "study":
  6633. _formdiv = new U.UF.UI.form(
  6634. "課程中心",
  6635. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6636. "id": "study",
  6637. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6638. "onresize": function () { }
  6639. }, {
  6640. closecallback: function () { }
  6641. }, { "style": { "height": "36px" } }).form; //創建窗體
  6642. _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); } }
  6643. break;
  6644. case "mindNetwork": //好友打開
  6645. _formdiv = new U.UF.UI.form(
  6646. "思維網格",
  6647. $$("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 }), {
  6648. "id": "mindNetwork",
  6649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6650. "onresize": function () { }
  6651. }, {
  6652. closecallback: function () { }
  6653. }, { "style": { "height": "36px" } }).form; //創建窗體
  6654. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6655. break;
  6656. case "train": //好友打開
  6657. _formdiv = new U.UF.UI.form(
  6658. "訓練平臺",
  6659. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6660. "id": "mindNetwork",
  6661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6662. "onresize": function () { }
  6663. }, {
  6664. closecallback: function () { }
  6665. }, { "style": { "height": "36px" } }).form; //創建窗體
  6666. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6667. break;
  6668. case "teacherClassRoom": //好友打開
  6669. _formdiv = new U.UF.UI.form(
  6670. "實時課堂",
  6671. $$("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 }), {
  6672. "id": "teacherClassRoom",
  6673. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6674. "onresize": function () { }
  6675. }, {
  6676. closecallback: function () { }
  6677. }, { "style": { "height": "36px" } }).form; //創建窗體
  6678. _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); } }
  6679. setTimeout(() => {
  6680. U.UF.F.windowZooming(_formdiv)
  6681. }, 0);
  6682. break;
  6683. }
  6684. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6685. switch (str) {
  6686. case "project": //好友打開
  6687. _formdiv = new U.UF.UI.form(
  6688. "課程管理",
  6689. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  6690. "id": "project",
  6691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6692. "onresize": function () { }
  6693. }, {
  6694. closecallback: function () { }
  6695. }, { "style": { "height": "36px" } }).form; //創建窗體
  6696. _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); } }
  6697. break;
  6698. case "evaluate":
  6699. _formdiv = new U.UF.UI.form(
  6700. "學生評價",
  6701. $$("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 }), {
  6702. "id": "evaluate",
  6703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6704. "onresize": function () { }
  6705. }, {
  6706. closecallback: function () { }
  6707. }, { "style": { "height": "36px" } }).form; //創建窗體
  6708. _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); } }
  6709. break;
  6710. case "notice":
  6711. _formdiv = new U.UF.UI.form(
  6712. "通知公告",
  6713. $$("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 }), {
  6714. "id": "notice",
  6715. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6716. "onresize": function () { }
  6717. }, {
  6718. closecallback: function () { }
  6719. }, { "style": { "height": "36px" } }).form; //創建窗體
  6720. _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); } }
  6721. break;
  6722. case "stuLibrary":
  6723. _formdiv = new U.UF.UI.form(
  6724. "學習資料",
  6725. $$("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 }), {
  6726. "id": "stuLibrary",
  6727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6728. "onresize": function () { }
  6729. }, {
  6730. closecallback: function () { }
  6731. }, { "style": { "height": "36px" } }).form; //創建窗體
  6732. _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); } }
  6733. break;
  6734. case "program":
  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": "https://x.cocorobo.cn" }), {
  6738. "id": "program",
  6739. "style": { "width": "70%", "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/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6745. break;
  6746. case "whiteboard":
  6747. _formdiv = new U.UF.UI.form(
  6748. "電子白闆",
  6749. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6750. "id": "whiteboard",
  6751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6752. "onresize": function () { }
  6753. }, {
  6754. closecallback: function () { }
  6755. }, { "style": { "height": "36px" } }).form; //創建窗體
  6756. _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); } }
  6757. break;
  6758. case "investigation":
  6759. _formdiv = new U.UF.UI.form(
  6760. "問卷調查",
  6761. $$("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 }), {
  6762. "id": "investigation",
  6763. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6764. "onresize": function () { }
  6765. }, {
  6766. closecallback: function () { }
  6767. }, { "style": { "height": "36px" } }).form; //創建窗體
  6768. _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); } }
  6769. break;
  6770. case "mind":
  6771. _formdiv = new U.UF.UI.form(
  6772. "思維導圖",
  6773. $$("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"
  6774. "id": "mind",
  6775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6776. "onresize": function () { }
  6777. }, {
  6778. closecallback: function () { }
  6779. }, { "style": { "height": "36px" } }).form; //創建窗體
  6780. _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); } }
  6781. break;
  6782. case "doc":
  6783. // U.MD.D.I.isRoom();
  6784. _formdiv = new U.UF.UI.form(
  6785. "協同文檔",
  6786. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6787. "id": "doc",
  6788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //創建窗體
  6793. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6794. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6795. })
  6796. _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); } }
  6797. break;
  6798. case "study":
  6799. _formdiv = new U.UF.UI.form(
  6800. "課程中心",
  6801. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6802. "id": "study",
  6803. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6804. "onresize": function () { }
  6805. }, {
  6806. closecallback: function () { }
  6807. }, { "style": { "height": "36px" } }).form; //創建窗體
  6808. _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); } }
  6809. break;
  6810. case "mindNetwork": //好友打開
  6811. _formdiv = new U.UF.UI.form(
  6812. "思維網格",
  6813. $$("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 }), {
  6814. "id": "mindNetwork",
  6815. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6816. "onresize": function () { }
  6817. }, {
  6818. closecallback: function () { }
  6819. }, { "style": { "height": "36px" } }).form; //創建窗體
  6820. _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); } }
  6821. break;
  6822. case "train": //好友打開
  6823. _formdiv = new U.UF.UI.form(
  6824. "訓練平臺",
  6825. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6826. "id": "train",
  6827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6828. "onresize": function () { }
  6829. }, {
  6830. closecallback: function () { }
  6831. }, { "style": { "height": "36px" } }).form; //創建窗體
  6832. _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); } }
  6833. break;
  6834. case "sys":
  6835. _formdiv = new U.UF.UI.form(
  6836. "目標管理",
  6837. $$("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 }), {
  6838. "id": "sys",
  6839. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6840. "onresize": function () { }
  6841. }, {
  6842. closecallback: function () { }
  6843. }, { "style": { "height": "36px" } }).form; //創建窗體
  6844. _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); } }
  6845. break;
  6846. case "courseDesign":
  6847. _formdiv = new U.UF.UI.form(
  6848. "項目設計",
  6849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6850. "id": "courseDesign",
  6851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6852. "onresize": function () { }
  6853. }, {
  6854. closecallback: function () { }
  6855. }, { "style": { "height": "36px" } }).form; //創建窗體
  6856. _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); } }
  6857. break;
  6858. }
  6859. } else if (!_type) {
  6860. switch (str) {
  6861. case "my":
  6862. _formdiv = new U.UF.UI.form(
  6863. "我的資料",
  6864. $$("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 }), {
  6865. "id": "my",
  6866. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6867. "onresize": function () { }
  6868. }, {
  6869. closecallback: function () { }
  6870. }, { "style": { "height": "36px" } }).form; //創建窗體
  6871. _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); } }
  6872. break;
  6873. }
  6874. }
  6875. switch (str) {
  6876. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6877. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6878. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6879. case "formulaEdi": //公式編輯
  6880. _formdiv = new U.UF.UI.form(
  6881. "公式編輯",
  6882. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6883. "id": "formulaEdi",
  6884. "style": { "width": "70%", "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/formulaEdi.png)" }, "name": "公式編輯", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6890. break;
  6891. case "molStr": //分子結構
  6892. _formdiv = new U.UF.UI.form(
  6893. "分子結構",
  6894. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6895. "id": "molStr",
  6896. "style": { "width": "70%", "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/molStr.png)" }, "name": "分子結構", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6902. break;
  6903. case "timeAxis": //時間軸
  6904. _formdiv = new U.UF.UI.form(
  6905. "時間軸",
  6906. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6907. "id": "timeAxis",
  6908. "style": { "width": "70%", "height": "90%", "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/timeAxis.png)" }, "name": "時間軸", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6914. break;
  6915. case "AIprogram2": //AI體驗
  6916. _formdiv = new U.UF.UI.form(
  6917. "AI體驗",
  6918. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6919. "id": "AIprogram2",
  6920. "style": { "width": "70%", "height": "90%", "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/AIprogram2.png)" }, "name": "AI體驗", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6926. break;
  6927. case "Pythonprogram": //python編程
  6928. _formdiv = new U.UF.UI.form(
  6929. "Python編程",
  6930. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6931. "id": "Pythonprogram",
  6932. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6933. "onresize": function () { }
  6934. }, {
  6935. closecallback: function () { }
  6936. }, { "style": { "height": "36px" } }).form; //創建窗體
  6937. _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); } }
  6938. break;
  6939. case "AIprogram": //ai編程
  6940. _formdiv = new U.UF.UI.form(
  6941. "AI編程平臺",
  6942. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6943. "id": "AIprogram",
  6944. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6945. "onresize": function () { }
  6946. }, {
  6947. closecallback: function () { }
  6948. }, { "style": { "height": "36px" } }).form; //創建窗體
  6949. _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); } }
  6950. break;
  6951. case "CocoPi": //CocoPi
  6952. _formdiv = new U.UF.UI.form(
  6953. "CocoPi",
  6954. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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" }), {
  6955. "id": "CocoPi",
  6956. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6957. "onresize": function () { }
  6958. }, {
  6959. closecallback: function () { }
  6960. }, { "style": { "height": "36px" } }).form; //創建窗體
  6961. _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); } }
  6962. break;
  6963. case "Wood": //Wood
  6964. _formdiv = new U.UF.UI.form(
  6965. "海龜編程",
  6966. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  6967. "id": "Wood",
  6968. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6969. "onresize": function () { }
  6970. }, {
  6971. closecallback: function () { }
  6972. }, { "style": { "height": "36px" } }).form; //創建窗體
  6973. _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); } }
  6974. break;
  6975. case "car": //模擬駕駛
  6976. _formdiv = new U.UF.UI.form(
  6977. "模擬駕駛",
  6978. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  6979. "id": "car",
  6980. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6981. "onresize": function () { }
  6982. }, {
  6983. closecallback: function () { }
  6984. }, { "style": { "height": "36px" } }).form; //創建窗體
  6985. _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); } }
  6986. break;
  6987. case "lineSearch": //路徑搜索
  6988. _formdiv = new U.UF.UI.form(
  6989. "路徑搜索",
  6990. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/" }), {
  6991. "id": "lineSearch",
  6992. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6993. "onresize": function () { }
  6994. }, {
  6995. closecallback: function () { }
  6996. }, { "style": { "height": "36px" } }).form; //創建窗體
  6997. _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); } }
  6998. break;
  6999. case "deepLearning": //深度學習
  7000. _formdiv = new U.UF.UI.form(
  7001. "深度學習",
  7002. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#" }), {
  7003. "id": "deepLearning",
  7004. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7005. "onresize": function () { }
  7006. }, {
  7007. closecallback: function () { }
  7008. }, { "style": { "height": "36px" } }).form; //創建窗體
  7009. _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); } }
  7010. break;
  7011. case "allHistory": //深度學習
  7012. _formdiv = new U.UF.UI.form(
  7013. "全歷史",
  7014. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  7015. "id": "allHistory",
  7016. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7017. "onresize": function () { }
  7018. }, {
  7019. closecallback: function () { }
  7020. }, { "style": { "height": "36px" } }).form; //創建窗體
  7021. _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); } }
  7022. break;
  7023. case "chatPDF": //ai編程
  7024. _formdiv = new U.UF.UI.form(
  7025. "chatPDF",
  7026. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  7027. "id": "chatPDF",
  7028. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7029. "onresize": function () { }
  7030. }, {
  7031. closecallback: function () { }
  7032. }, { "style": { "height": "36px" } }).form; //創建窗體
  7033. _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); } }
  7034. break;
  7035. case "resources": //國家教育
  7036. _formdiv = new U.UF.UI.form(
  7037. "國家教育",
  7038. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  7039. "id": "resources",
  7040. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7041. "onresize": function () { }
  7042. }, {
  7043. closecallback: function () { }
  7044. }, { "style": { "height": "36px" } }).form; //創建窗體
  7045. _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); } }
  7046. break;
  7047. case "codeEdit": //源碼編輯
  7048. _formdiv = new U.UF.UI.form(
  7049. "源碼編輯",
  7050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  7051. "id": "codeEdit",
  7052. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7053. "onresize": function () { }
  7054. }, {
  7055. closecallback: function () { }
  7056. }, { "style": { "height": "36px" } }).form; //創建窗體
  7057. _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); } }
  7058. break; //
  7059. case "MindMap": //MindMap
  7060. _formdiv = new U.UF.UI.form(
  7061. "MindMap",
  7062. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  7063. "id": "MindMap",
  7064. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7065. "onresize": function () { }
  7066. }, {
  7067. closecallback: function () { }
  7068. }, { "style": { "height": "36px" } }).form; //創建窗體
  7069. _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); } }
  7070. break;
  7071. case "netWorkPanel": //netWorkPanel
  7072. _formdiv = new U.UF.UI.form(
  7073. "netWorkPanel",
  7074. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  7075. "id": "netWorkPanel",
  7076. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7077. "onresize": function () { }
  7078. }, {
  7079. closecallback: function () { }
  7080. }, { "style": { "height": "36px" } }).form; //創建窗體
  7081. _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); } }
  7082. break;
  7083. case "GeoGebra": //GeoGebra
  7084. _formdiv = new U.UF.UI.form(
  7085. "GeoGebra",
  7086. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  7087. "id": "GeoGebra",
  7088. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7089. "onresize": function () { }
  7090. }, {
  7091. closecallback: function () { }
  7092. }, { "style": { "height": "36px" } }).form; //創建窗體
  7093. _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); } }
  7094. break;
  7095. case "translation": //翻譯
  7096. _formdiv = new U.UF.UI.form(
  7097. "翻譯",
  7098. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7099. "id": "translation",
  7100. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7101. "onresize": function () { }
  7102. }, {
  7103. closecallback: function () { }
  7104. }, { "style": { "height": "36px" } }).form; //創建窗體
  7105. _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); } }
  7106. break;
  7107. case "mohe": //魔盒
  7108. _formdiv = new U.UF.UI.form(
  7109. "魔盒識字",
  7110. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7111. "id": "mohe",
  7112. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7113. "onresize": function () { }
  7114. }, {
  7115. closecallback: function () { }
  7116. }, { "style": { "height": "36px" } }).form; //創建窗體
  7117. _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); } }
  7118. break;
  7119. case "24game": //24點
  7120. _formdiv = new U.UF.UI.form(
  7121. "24點",
  7122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7123. "id": "24game",
  7124. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7125. "onresize": function () { }
  7126. }, {
  7127. closecallback: function () { }
  7128. }, { "style": { "height": "36px" } }).form; //創建窗體
  7129. _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); } }
  7130. break;
  7131. case "case":
  7132. _formdiv = new U.UF.UI.form(
  7133. "課程進展",
  7134. $$("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 }), {
  7135. "id": "case",
  7136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7137. "onresize": function () { }
  7138. }, {
  7139. closecallback: function () { }
  7140. }, { "style": { "height": "36px" } }).form; //創建窗體
  7141. _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); } }
  7142. break;
  7143. case "snf":
  7144. _formdiv = new U.UF.UI.form(
  7145. "賽諾梵",
  7146. $$("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" }), {
  7147. "id": "snf",
  7148. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7149. "onresize": function () { }
  7150. }, {
  7151. closecallback: function () { }
  7152. }, { "style": { "height": "36px" } }).form; //創建窗體
  7153. _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); } }
  7154. break;
  7155. case "hanFamily":
  7156. _formdiv = new U.UF.UI.form(
  7157. "漢字家族",
  7158. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7159. "id": "hanFamily",
  7160. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7161. "onresize": function () { }
  7162. }, {
  7163. closecallback: function () { }
  7164. }, { "style": { "height": "36px" } }).form; //創建窗體
  7165. _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); } }
  7166. break;
  7167. case "hanClassics":
  7168. _formdiv = new U.UF.UI.form(
  7169. "國學經典",
  7170. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7171. "id": "hanClassics",
  7172. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7173. "onresize": function () { }
  7174. }, {
  7175. closecallback: function () { }
  7176. }, { "style": { "height": "36px" } }).form; //創建窗體
  7177. _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); } }
  7178. break;
  7179. case "hanTraining":
  7180. _formdiv = new U.UF.UI.form(
  7181. "筆畫訓練",
  7182. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7183. "id": "hanTraining",
  7184. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7185. "onresize": function () { }
  7186. }, {
  7187. closecallback: function () { }
  7188. }, { "style": { "height": "36px" } }).form; //創建窗體
  7189. _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); } }
  7190. break;
  7191. case "hanClass":
  7192. _formdiv = new U.UF.UI.form(
  7193. "書法課堂",
  7194. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7195. "id": "hanClass",
  7196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7197. "onresize": function () { }
  7198. }, {
  7199. closecallback: function () { }
  7200. }, { "style": { "height": "36px" } }).form; //創建窗體
  7201. _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); } }
  7202. break;
  7203. case "han":
  7204. _formdiv = new U.UF.UI.form(
  7205. "漢字宮",
  7206. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7207. "id": "han",
  7208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7209. "onresize": function () { }
  7210. }, {
  7211. closecallback: function () { }
  7212. }, { "style": { "height": "36px" } }).form; //創建窗體
  7213. _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); } }
  7214. break;
  7215. case "projectGM": //課程管理
  7216. _formdiv = new U.UF.UI.form(
  7217. "課程管理",
  7218. $$("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 }), {
  7219. "id": "projectGM",
  7220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7221. "onresize": function () { }
  7222. }, {
  7223. closecallback: function () { }
  7224. }, { "style": { "height": "36px" } }).form; //創建窗體
  7225. _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); } }
  7226. break;
  7227. case "studyGM": //課程中心
  7228. _formdiv = new U.UF.UI.form(
  7229. "課程中心",
  7230. $$("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
  7231. "id": "study",
  7232. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7233. "onresize": function () { }
  7234. }, {
  7235. closecallback: function () { }
  7236. }, { "style": { "height": "36px" } }).form; //創建窗體
  7237. _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); } }
  7238. break;
  7239. // studentGM
  7240. case "studentGM": //學生管理
  7241. _formdiv = new U.UF.UI.form(
  7242. "學生管理",
  7243. $$("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 }), {
  7244. "id": "studentGM",
  7245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7246. "onresize": function () { }
  7247. }, {
  7248. closecallback: function () { }
  7249. }, { "style": { "height": "36px" } }).form; //創建窗體
  7250. _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); } }
  7251. break;
  7252. case "evaluateGM": //學生評價
  7253. _formdiv = new U.UF.UI.form(
  7254. "學生評價",
  7255. $$("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 }), {
  7256. "id": "evaluateGM",
  7257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7258. "onresize": function () { }
  7259. }, {
  7260. closecallback: function () { }
  7261. }, { "style": { "height": "36px" } }).form; //創建窗體
  7262. _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); } }
  7263. break;
  7264. // classGM
  7265. case "classGM": //班級管理
  7266. _formdiv = new U.UF.UI.form(
  7267. "班級管理",
  7268. $$("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 }), {
  7269. "id": "classGM",
  7270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, { "style": { "height": "36px" } }).form; //創建窗體
  7275. _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); } }
  7276. break;
  7277. // dataGM
  7278. case "dataGM":
  7279. _formdiv = new U.UF.UI.form(
  7280. "我的資料",
  7281. $$("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 }), {
  7282. "id": "dataGM",
  7283. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7284. "onresize": function () { }
  7285. }, {
  7286. closecallback: function () { }
  7287. }, { "style": { "height": "36px" } }).form; //創建窗體
  7288. _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); } }
  7289. break;
  7290. // caseGM
  7291. case "caseGM": //課程進展
  7292. _formdiv = new U.UF.UI.form(
  7293. "課程進展",
  7294. $$("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 }), {
  7295. "id": "caseGM",
  7296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7297. "onresize": function () { }
  7298. }, {
  7299. closecallback: function () { }
  7300. }, { "style": { "height": "36px" } }).form; //創建窗體
  7301. _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); } }
  7302. break;
  7303. // meterialGM
  7304. case "meterialGM": //素材庫
  7305. _formdiv = new U.UF.UI.form(
  7306. "素材庫",
  7307. $$("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 }), {
  7308. "id": "meterialGM",
  7309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7310. "onresize": function () { }
  7311. }, {
  7312. closecallback: function () { }
  7313. }, { "style": { "height": "36px" } }).form; //創建窗體
  7314. _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); } }
  7315. break;
  7316. // evaluateSGM
  7317. case "evaluateSGM": //我的評價
  7318. _formdiv = new U.UF.UI.form(
  7319. "我的評價",
  7320. $$("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 }), {
  7321. "id": "evaluateSGM",
  7322. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7323. "onresize": function () { }
  7324. }, {
  7325. closecallback: function () { }
  7326. }, { "style": { "height": "36px" } }).form; //創建窗體
  7327. _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); } }
  7328. break;
  7329. case "jupyter": //jupyter
  7330. _formdiv = new U.UF.UI.form(
  7331. "jupyter",
  7332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7333. "id": "jupyter",
  7334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7335. "onresize": function () { }
  7336. }, {
  7337. closecallback: function () { }
  7338. }, { "style": { "height": "36px" } }).form; //創建窗體
  7339. _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); } }
  7340. break;
  7341. case "number": //數字實驗室
  7342. _formdiv = new U.UF.UI.form(
  7343. "數字實驗室",
  7344. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7345. "id": "number",
  7346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7347. "onresize": function () { }
  7348. }, {
  7349. closecallback: function () { }
  7350. }, { "style": { "height": "36px" } }).form; //創建窗體
  7351. _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); } }
  7352. break;
  7353. case "studentCourse": //項目管理 學生
  7354. _formdiv = new U.UF.UI.form(
  7355. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  7356. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7357. "id": "studentCourse",
  7358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7359. "onresize": function () { }
  7360. }, {
  7361. closecallback: function () { }
  7362. }, { "style": { "height": "36px" } }).form; //創建窗體
  7363. _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); } }
  7364. break;
  7365. case "studentCourseS": //項目管理 老師
  7366. _formdiv = new U.UF.UI.form(
  7367. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  7368. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7369. "id": "studentCourseS",
  7370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7371. "onresize": function () { }
  7372. }, {
  7373. closecallback: function () { }
  7374. }, { "style": { "height": "36px" } }).form; //創建窗體
  7375. _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); } }
  7376. break;
  7377. case "studentIndex": //項目中心
  7378. _formdiv = new U.UF.UI.form(
  7379. "項目中心",
  7380. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7381. "id": "studentIndex",
  7382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7383. "onresize": function () { }
  7384. }, {
  7385. closecallback: function () { }
  7386. }, { "style": { "height": "36px" } }).form; //創建窗體
  7387. _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); } }
  7388. break;
  7389. case "CaseDesignS":
  7390. _formdiv = new U.UF.UI.form(
  7391. "項目進展",
  7392. $$("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 }), {
  7393. "id": "case",
  7394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7395. "onresize": function () { }
  7396. }, {
  7397. closecallback: function () { }
  7398. }, { "style": { "height": "36px" } }).form; //創建窗體
  7399. _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); } }
  7400. break;
  7401. case "tcStudent": //騰訊學生管理
  7402. _formdiv = new U.UF.UI.form(
  7403. "學生管理",
  7404. $$("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 }), {
  7405. "id": "tcStudent",
  7406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7407. "onresize": function () { }
  7408. }, {
  7409. closecallback: function () { }
  7410. }, { "style": { "height": "36px" } }).form; //創建窗體
  7411. _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); } }
  7412. break;
  7413. case "tcSchool": //騰訊學校管理
  7414. _formdiv = new U.UF.UI.form(
  7415. "學校管理",
  7416. $$("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 }), {
  7417. "id": "tcSchool",
  7418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7419. "onresize": function () { }
  7420. }, {
  7421. closecallback: function () { }
  7422. }, { "style": { "height": "36px" } }).form; //創建窗體
  7423. _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); } }
  7424. break;
  7425. case "tcTeacher": //騰訊學校管理
  7426. _formdiv = new U.UF.UI.form(
  7427. "教師管理",
  7428. $$("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 }), {
  7429. "id": "tcTeacher",
  7430. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7431. "onresize": function () { }
  7432. }, {
  7433. closecallback: function () { }
  7434. }, { "style": { "height": "36px" } }).form; //創建窗體
  7435. _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); } }
  7436. break;
  7437. case "teacher":
  7438. _formdiv = new U.UF.UI.form(
  7439. "教師管理",
  7440. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7441. "id": "teacher",
  7442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7443. "onresize": function () { }
  7444. }, {
  7445. closecallback: function () { }
  7446. }, { "style": { "height": "36px" } }).form; //創建窗體
  7447. _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); } }
  7448. break;
  7449. case "tcData": //騰訊我的資料
  7450. _formdiv = new U.UF.UI.form(
  7451. "我的資料",
  7452. $$("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 }), {
  7453. "id": "tcData",
  7454. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7455. "onresize": function () { }
  7456. }, {
  7457. closecallback: function () { }
  7458. }, { "style": { "height": "36px" } }).form; //創建窗體
  7459. _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); } }
  7460. break;
  7461. case "tcNotice": //騰訊消息通知
  7462. _formdiv = new U.UF.UI.form(
  7463. "消息通知",
  7464. $$("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 }), {
  7465. "id": "tcNotice",
  7466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7467. "onresize": function () { }
  7468. }, {
  7469. closecallback: function () { }
  7470. }, { "style": { "height": "36px" } }).form; //創建窗體
  7471. _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); } }
  7472. break;
  7473. case "myReport": //好友打開
  7474. _formdiv = new U.UF.UI.form(
  7475. "我的評價",
  7476. $$("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 }), {
  7477. "id": "myReport",
  7478. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7479. "onresize": function () { }
  7480. }, {
  7481. closecallback: function () { }
  7482. }, { "style": { "height": "36px" } }).form; //創建窗體
  7483. _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); } }
  7484. break;
  7485. case "learnAna": //好友打開
  7486. _formdiv = new U.UF.UI.form(
  7487. "學習分析",
  7488. $$("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 }), {
  7489. "id": "learnAna",
  7490. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7491. "onresize": function () { }
  7492. }, {
  7493. closecallback: function () { }
  7494. }, { "style": { "height": "36px" } }).form; //創建窗體
  7495. _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); } }
  7496. break;
  7497. case "AIChat": //AI共創
  7498. _formdiv = new U.UF.UI.form(
  7499. "AI共創",
  7500. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  7501. "id": "AIChat",
  7502. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7503. "onresize": function () { }
  7504. }, {
  7505. istop: true,
  7506. closecallback: function () { $("#aichat_icon").remove(); },
  7507. narrowcallback: function () {
  7508. if (!$("#aichat_icon")[0]) {
  7509. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7510. }
  7511. },
  7512. }, { "style": { "height": "36px" } }).form; //創建窗體
  7513. _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); } }
  7514. break;
  7515. case "ainew": //AI共創
  7516. _formdiv = new U.UF.UI.form(
  7517. "AI協同",
  7518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  7519. "id": "ainew",
  7520. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7521. "onresize": function () { }
  7522. }, {
  7523. closecallback: function () { }
  7524. }, { "style": { "height": "36px" } }).form; //創建窗體
  7525. _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); } }
  7526. break;
  7527. case "gpt4": //gpt4
  7528. _formdiv = new U.UF.UI.form(
  7529. "AI助手",
  7530. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7531. "id": "gpt4",
  7532. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7533. "onresize": function () { }
  7534. }, {
  7535. closecallback: function () { }
  7536. }, { "style": { "height": "36px" } }).form; //創建窗體
  7537. _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); } }
  7538. break;
  7539. case "aigpt": //gpt4
  7540. _formdiv = new U.UF.UI.form(
  7541. "AI助手+",
  7542. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7543. "id": "aigpt",
  7544. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7545. "onresize": function () { }
  7546. }, {
  7547. closecallback: function () {
  7548. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7549. }
  7550. }, { "style": { "height": "36px" } }).form; //創建窗體
  7551. _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); } }
  7552. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7553. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7554. })
  7555. break;
  7556. case "aiKnowledge": //aiKnowledge
  7557. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  7558. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7559. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7560. }
  7561. _formdiv = new U.UF.UI.form(
  7562. "知識建構",
  7563. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7564. "id": "aiKnowledge",
  7565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7566. "onresize": function () { }
  7567. }, {
  7568. closecallback: function () { }
  7569. }, { "style": { "height": "36px" } }).form; //創建窗體
  7570. _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); } }
  7571. break;
  7572. case "futureClass": //AI共創
  7573. _formdiv = new U.UF.UI.form(
  7574. "協同建構",
  7575. $$("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
  7576. "id": "synergyCourse",
  7577. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7578. "onresize": function () { }
  7579. }, {
  7580. closecallback: function () {
  7581. $("iframe", _formdiv)[0].contentWindow.loginout();
  7582. }
  7583. }, { "style": { "height": "36px" } }).form; //創建窗體
  7584. _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); } }
  7585. break;
  7586. case "aiagent": //ai agent
  7587. _formdiv = new U.UF.UI.form(
  7588. "AI Agent",
  7589. $$("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" }), {
  7590. "id": "AIAgent",
  7591. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7592. "onresize": function () { }
  7593. }, {
  7594. closecallback: function () { }
  7595. }, { "style": { "height": "36px" } }).form; //創建窗體
  7596. _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); } }
  7597. break;
  7598. case "dataBoard": //數據看闆
  7599. _formdiv = new U.UF.UI.form(
  7600. "數據看闆",
  7601. $$("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 }), {
  7602. "id": "dataBoard",
  7603. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7604. "onresize": function () { }
  7605. }, {
  7606. closecallback: function () { }
  7607. }, { "style": { "height": "36px" } }).form; //創建窗體
  7608. _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); } }
  7609. break;
  7610. case "dataBoardSies": //數據融合
  7611. _formdiv = new U.UF.UI.form(
  7612. "數據融合",
  7613. $$("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 }), {
  7614. "id": "dataBoardSies",
  7615. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7616. "onresize": function () { }
  7617. }, {
  7618. closecallback: function () { }
  7619. }, { "style": { "height": "36px" } }).form; //創建窗體
  7620. _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); } }
  7621. break;
  7622. case "dataBoardNew": //數據看闆
  7623. _formdiv = new U.UF.UI.form(
  7624. "綜合看闆",
  7625. $$("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 }), {
  7626. "id": "dataBoardNew",
  7627. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7628. "onresize": function () { }
  7629. }, {
  7630. closecallback: function () { }
  7631. }, { "style": { "height": "36px" } }).form; //創建窗體
  7632. _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); } }
  7633. break;
  7634. case "dataBoardTest": //數據看闆
  7635. _formdiv = new U.UF.UI.form(
  7636. "評測看闆",
  7637. $$("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 }), {
  7638. "id": "dataBoardTest",
  7639. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7640. "onresize": function () { }
  7641. }, {
  7642. closecallback: function () { }
  7643. }, { "style": { "height": "36px" } }).form; //創建窗體
  7644. _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); } }
  7645. break;
  7646. case "AIAnalyse": //AI共創
  7647. _formdiv = new U.UF.UI.form(
  7648. "AI分析",
  7649. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  7650. "id": "AIAnalyse",
  7651. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, { "style": { "height": "36px" } }).form; //創建窗體
  7656. _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); } }
  7657. break;
  7658. case "studioCourse": //AI共創
  7659. _formdiv = new U.UF.UI.form(
  7660. "工作管理",
  7661. $$("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 }), {
  7662. "id": "studioCourse",
  7663. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7664. "onresize": function () { }
  7665. }, {
  7666. closecallback: function () { }
  7667. }, { "style": { "height": "36px" } }).form; //創建窗體
  7668. _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); } }
  7669. break;
  7670. case "studioIndex": //AI共創
  7671. _formdiv = new U.UF.UI.form(
  7672. "工作中心",
  7673. $$("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 }), {
  7674. "id": "studioIndex",
  7675. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7676. "onresize": function () { }
  7677. }, {
  7678. closecallback: function () { }
  7679. }, { "style": { "height": "36px" } }).form; //創建窗體
  7680. _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); } }
  7681. break;
  7682. case "source":
  7683. _formdiv = new U.UF.UI.form(
  7684. "教學資源",
  7685. $$("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 }), {
  7686. "id": "source",
  7687. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7688. "onresize": function () { }
  7689. }, {
  7690. closecallback: function () { }
  7691. }, { "style": { "height": "36px" } }).form; //創建窗體
  7692. _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); } }
  7693. break;
  7694. case "testTeacher":
  7695. _formdiv = new U.UF.UI.form(
  7696. "智能錶單",
  7697. $$("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 }), {
  7698. "id": "testTeacher",
  7699. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7700. "onresize": function () { }
  7701. }, {
  7702. closecallback: function () { }
  7703. }, { "style": { "height": "36px" } }).form; //創建窗體
  7704. _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); } }
  7705. break;
  7706. case "testStudent":
  7707. _formdiv = new U.UF.UI.form(
  7708. "教師中心",
  7709. $$("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 }), {
  7710. "id": "testStudent",
  7711. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7712. "onresize": function () { }
  7713. }, {
  7714. closecallback: function () { }
  7715. }, { "style": { "height": "36px" } }).form; //創建窗體
  7716. _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); } }
  7717. break;
  7718. case "testTeacherSies":
  7719. _formdiv = new U.UF.UI.form(
  7720. "教師管理",
  7721. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7722. "id": "testTeacherSies",
  7723. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7724. "onresize": function () { }
  7725. }, {
  7726. closecallback: function () { }
  7727. }, { "style": { "height": "36px" } }).form; //創建窗體
  7728. _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); } }
  7729. break;
  7730. case "testStudentSies":
  7731. _formdiv = new U.UF.UI.form(
  7732. "教師中心",
  7733. $$("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 }), {
  7734. "id": "testStudentSies",
  7735. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7736. "onresize": function () { }
  7737. }, {
  7738. closecallback: function () { }
  7739. }, { "style": { "height": "36px" } }).form; //創建窗體
  7740. _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); } }
  7741. break;
  7742. case "ytpbl": //消息通知
  7743. _formdiv = new U.UF.UI.form(
  7744. "案例征集",
  7745. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7746. "id": "ytpbl",
  7747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7748. "onresize": function () { }
  7749. }, {
  7750. closecallback: function () { }
  7751. }, { "style": { "height": "36px" } }).form; //創建窗體
  7752. _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); } }
  7753. // 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");
  7754. break;
  7755. case "aiCourseResource": //人工智能窗體
  7756. _formdiv = new U.UF.UI.form(
  7757. false,
  7758. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7759. "id": "aiCourseResource",
  7760. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7761. "onresize": function () { },
  7762. "isdrag": false,
  7763. }, {
  7764. closecallback: function () { }
  7765. }, { "style": { "height": "36px" } }).form; //創建窗體
  7766. _taskbar = ''
  7767. break;
  7768. case "szdjgCocooroboX": //圖形化編程
  7769. _formdiv = new U.UF.UI.form(
  7770. "圖形化編程",
  7771. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  7772. "id": "szdjgCocooroboX",
  7773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7774. "onresize": function () { }
  7775. }, {
  7776. closecallback: function () { }
  7777. }, { "style": { "height": "36px" } }).form; //創建窗體
  7778. _taskbar = ''
  7779. break;
  7780. case "szdjgPython": //python編程
  7781. _formdiv = new U.UF.UI.form(
  7782. "Python編程",
  7783. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  7784. "id": "szdjgPython",
  7785. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7786. "onresize": function () { }
  7787. }, {
  7788. closecallback: function () { }
  7789. }, { "style": { "height": "36px" } }).form; //創建窗體
  7790. _taskbar = ''
  7791. break;
  7792. case "Record":
  7793. _formdiv = new U.UF.UI.form(
  7794. "觀察記錄",
  7795. $$("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 }), {
  7796. "id": "Record",
  7797. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7798. "onresize": function () { }
  7799. }, {
  7800. closecallback: function () { }
  7801. }, { "style": { "height": "36px" } }).form; //創建窗體
  7802. _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); } }
  7803. break;
  7804. case "aigptCourse":
  7805. _formdiv = new U.UF.UI.form(
  7806. "AI智能體",
  7807. $$("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' }), {
  7808. "id": "aigptCourse",
  7809. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7810. "onresize": function () { }
  7811. }, {
  7812. closecallback: function () { }
  7813. }, { "style": { "height": "36px" } }).form; //創建窗體
  7814. _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); } }
  7815. break;
  7816. case "classroomObservation":
  7817. _formdiv = new U.UF.UI.form(
  7818. "課堂觀察",
  7819. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7820. "id": "classroomObservation",
  7821. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7822. "onresize": function () { }
  7823. }, {
  7824. closecallback: function () { }
  7825. }, { "style": { "height": "36px" } }).form; //創建窗體
  7826. _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); } }
  7827. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7828. break;
  7829. case "pblCourse":
  7830. _formdiv = new U.UF.UI.form(
  7831. "學生PBL",
  7832. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7833. "id": "pblCourse",
  7834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7835. "onresize": function () { }
  7836. }, {
  7837. closecallback: function () { }
  7838. }, { "style": { "height": "36px" } }).form; //創建窗體
  7839. _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); } }
  7840. break;
  7841. case "appStore":
  7842. U.MD.D.addOp('', 'cocoflowOpen', '')
  7843. _formdiv = new U.UF.UI.form(
  7844. "CocoFlow",
  7845. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.hk/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7846. "id": "appStore",
  7847. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7848. "onresize": function () { }
  7849. }, {
  7850. closecallback: function () { }
  7851. }, { "style": { "height": "36px" } }).form; //創建窗體
  7852. _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); } }
  7853. break;
  7854. case "sassPlatform":
  7855. _formdiv = new U.UF.UI.form(
  7856. "Sass通用後臺管理",
  7857. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7858. "id": "sassPlatform",
  7859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7860. "onresize": function () { }
  7861. }, {
  7862. closecallback: function () { }
  7863. }, { "style": { "height": "36px" } }).form; //創建窗體
  7864. _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); } }
  7865. break;
  7866. case "EDU":
  7867. _formdiv = new U.UF.UI.form(
  7868. "EDU",
  7869. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7870. "id": "EDU",
  7871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7872. "onresize": function () { }
  7873. }, {
  7874. closecallback: function () { }
  7875. }, { "style": { "height": "36px" } }).form; //創建窗體
  7876. _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); } }
  7877. break;
  7878. case "knowledge":
  7879. _formdiv = new U.UF.UI.form(
  7880. "知識庫",
  7881. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7882. "id": "knowledge",
  7883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7884. "onresize": function () { }
  7885. }, {
  7886. closecallback: function () { }
  7887. }, { "style": { "height": "36px" } }).form; //創建窗體
  7888. _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); } }
  7889. break;
  7890. case "userExamine":
  7891. _formdiv = new U.UF.UI.form(
  7892. "賬號申請",
  7893. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7894. "id": "userExamine",
  7895. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7896. "onresize": function () { }
  7897. }, {
  7898. closecallback: function () { }
  7899. }, { "style": { "height": "36px" } }).form; //創建窗體
  7900. break;
  7901. case "cocoflowDeskTop": //cocoflowDeskTop
  7902. _formdiv = new U.UF.UI.form(
  7903. false,
  7904. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7905. "id": "cocoflowDeskTop",
  7906. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7907. "onresize": function () { },
  7908. }, {
  7909. closecallback: function () { },
  7910. "isdrag": false,
  7911. }, { "style": { "height": "36px" } }).form; //創建窗體
  7912. _taskbar = ''
  7913. break;
  7914. case "liyuanLogin": //liyuanLogin
  7915. _formdiv = new U.UF.UI.form(
  7916. false,
  7917. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.hk/#/login?org=" + _org + "&oid=" + _oid }), {
  7918. "id": "liyuanLogin",
  7919. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7920. "onresize": function () { },
  7921. }, {
  7922. closecallback: function () { },
  7923. isdrag: false,
  7924. isstretching: false,
  7925. isenlarge: false,
  7926. isnarrow: false
  7927. }, { "style": { "height": "36px" } }).form; //創建窗體
  7928. _taskbar = ''
  7929. break;
  7930. case "updatePaDialog":
  7931. _formdiv = new U.UF.UI.form(
  7932. "密碼修改",
  7933. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.hk/#/changePswd?userid=" + _userid }), {
  7934. "id": "updatePaDialog",
  7935. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7936. "onresize": function () { },
  7937. }, {
  7938. closecallback: function () { },
  7939. isclose: false,
  7940. isdrag: false,
  7941. isstretching: false,
  7942. isenlarge: false,
  7943. isnarrow: false
  7944. }, { "style": { "height": "36px" } }).form; //創建窗體
  7945. break;
  7946. }
  7947. //U.MD.D.I.openClick(str);
  7948. //如果有任務欄信息
  7949. if (_taskbar) {
  7950. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7951. }
  7952. if (iframeBool) {
  7953. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7954. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7955. // console.log("iframe進入");
  7956. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7957. // };
  7958. setTimeout(() => {
  7959. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7960. }, 2000);
  7961. }
  7962. }
  7963. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7964. var _formdiv, //創建任務欄時同時彈出的窗體元素。
  7965. _userinfo = US.userInfo, //登錄用戶信息
  7966. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解構賦值獲取用戶信息
  7967. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定義
  7968. let iframeBool = true;
  7969. let queryString = ''
  7970. if (array && array.length) {
  7971. const paramsMap = {
  7972. userid: _userid,
  7973. org: _org,
  7974. oid: _oid,
  7975. type: _type,
  7976. role: _role,
  7977. classId: _classId,
  7978. TscreenType: _TscreenType,
  7979. SscreenType: _SscreenType
  7980. };
  7981. const canshu = array
  7982. .filter(param => paramsMap[param] !== undefined)
  7983. .map(param => `${param}=${paramsMap[param]}`);
  7984. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查詢字符串
  7985. }
  7986. let _url = url + queryString
  7987. if (U.UF.UI.form.allForm[id]) {
  7988. iframeBool = false
  7989. }
  7990. _formdiv = new U.UF.UI.form(
  7991. false,
  7992. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  7993. {
  7994. "id": id,
  7995. "style": { "width": "100%", "height": "100%", "overflow": 'hidden', "position": 'unset', "boxShadow": "unset" },
  7996. "onresize": function () { },
  7997. },
  7998. {
  7999. closecallback: function () { },
  8000. isdrag: false,
  8001. isstretching: false,
  8002. isenlarge: false,
  8003. isnarrow: false
  8004. },
  8005. { "style": { "height": "36px" } },
  8006. undefined,
  8007. undefined,
  8008. dom
  8009. ).form
  8010. }
  8011. // U.MD.D.I.openClick = function(str){
  8012. // var click = '';
  8013. // switch(str){
  8014. // case 'friend':
  8015. // click = '我的好友';
  8016. // break;
  8017. // case 'domain':
  8018. // click = '域名管理';
  8019. // break;
  8020. // case 'disk':
  8021. // click = '我的雲盤';
  8022. // break;
  8023. // case 'word':
  8024. // click = 'Word';
  8025. // break;
  8026. // case 'excel':
  8027. // click = 'Execl';
  8028. // break;
  8029. // case 'txt':
  8030. // click = '文本文件';
  8031. // break;
  8032. // case 'lookupFriend':
  8033. // click = '查找好友';
  8034. // break;
  8035. // case 'ftp':
  8036. // click = 'FTP';
  8037. // break;
  8038. // case 'group':
  8039. // click = '群組';
  8040. // break;
  8041. // case 'set':
  8042. // click = '我的設置';
  8043. // break;
  8044. // case 'systemSet':
  8045. // click = '繫統設置';
  8046. // break;
  8047. // case 'boomYun':
  8048. // click = '互聯辦公';
  8049. // break;
  8050. // case 'xz':
  8051. // click = '雲端下載';
  8052. // break;
  8053. // case 'client':
  8054. // click = '有思瀏覽器';
  8055. // break;
  8056. // case 'backEndProgramming':
  8057. // click = '在線後臺編程';
  8058. // break;
  8059. // case 'frontEndProgramming':
  8060. // click = '在線前端編程';
  8061. // break;
  8062. // default: break;
  8063. // }
  8064. // if(U.MD.D.I.Ip && click){
  8065. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  8066. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  8067. // })
  8068. // }
  8069. // }
  8070. /**
  8071. *函數作用:ajax簡易函數,使用post格式
  8072. *@param url {data} 後臺地址
  8073. *@param data {data} 參數json
  8074. *@param fn {data} 回調函數
  8075. *
  8076. */
  8077. // U.MD.D.I.Mysqlrequest = function(url,fn){
  8078. // var xhr = new XMLHttpRequest();
  8079. // xhr.open("GET",url,true);
  8080. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  8081. // xhr.onreadystatechange = function(){
  8082. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8083. // fn.call(this,xhr.responseText);
  8084. // }
  8085. // };
  8086. // xhr.send();
  8087. // }
  8088. /*判斷是否是內網IP*/
  8089. // U.MD.D.I.isInnerIPFn = function(str){
  8090. // var curPageUrl = str;
  8091. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  8092. // curPageUrl =curPageUrl.replace(reg1,'');
  8093. // // console.log('curPageUrl-1 '+curPageUrl);
  8094. // var reg2 = /\:+/g;//替換冒號為一點
  8095. // curPageUrl =curPageUrl.replace(reg2,'.');
  8096. // // console.log('curPageUrl-2 '+curPageUrl);
  8097. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  8098. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8099. // if(curPageUrl[2] != '16'){
  8100. // return ipAddress;
  8101. // }else{
  8102. // return false;
  8103. // }
  8104. // }
  8105. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8106. // //compatibility for firefox and chrome
  8107. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8108. // var pc = new myPeerConnection({
  8109. // iceServers: []
  8110. // }),
  8111. // noop = function() {},
  8112. // localIPs = {},
  8113. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8114. // key;
  8115. // function iterateIP(ip) {
  8116. // if (!localIPs[ip]) onNewIP(ip);
  8117. // localIPs[ip] = true;
  8118. // }
  8119. // //create a bogus data channel
  8120. // pc.createDataChannel("");
  8121. // // create offer and set local description
  8122. // pc.createOffer().then(function(sdp) {
  8123. // sdp.sdp.split('\n').forEach(function(line) {
  8124. // if (line.indexOf('candidate') < 0) return;
  8125. // line.match(ipRegex).forEach(iterateIP);
  8126. // });
  8127. // pc.setLocalDescription(sdp, noop, noop);
  8128. // }).catch(function(reason) {
  8129. // // An error occurred, so handle the failure to connect
  8130. // });
  8131. // //sten for candidate events
  8132. // pc.onicecandidate = function(ice) {
  8133. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8134. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8135. // };
  8136. // }
  8137. // U.MD.D.I.getUserIpBool = function(callback){
  8138. // U.MD.D.I.getUserIP(function(ip){
  8139. // alert("Got IP! :" + ip);
  8140. // });
  8141. //}
  8142. //#endregion
  8143. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8144. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8145. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8146. _userinfo = US.userInfo, //登錄用戶信息
  8147. _userid = US.userInfo.userid //登錄用戶id
  8148. let _iframe;
  8149. let _cid = cid,
  8150. _stage = stage,
  8151. _task = task,
  8152. _tool = tool;
  8153. var _jie = $$("div", {
  8154. "style": {
  8155. "position": "absolute",
  8156. "bottom": "50px",
  8157. "right": "50px",
  8158. "zIndex": "9999",
  8159. "backgroundColor": "#2268bc",
  8160. "color": "#fff",
  8161. "padding": "12px 20px",
  8162. "cursor": "pointer",
  8163. "borderRadius": "4px",
  8164. },
  8165. "innerHTML": "提交作業"
  8166. })
  8167. let aTool = ''
  8168. let _loading = document.createElement('div')
  8169. _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;"
  8170. // _loading.id = "";
  8171. let _lchild = document.createElement('div')
  8172. let _limg = document.createElement('img')
  8173. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8174. _limg.style = "width: 26px;margin-right: 10px;"
  8175. _lchild.appendChild(_limg)
  8176. let _lspan = document.createElement('span')
  8177. _lspan.innerHTML = "上傳中..."
  8178. _lchild.appendChild(_lspan)
  8179. _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%);"
  8180. _loading.appendChild(_lchild)
  8181. var _box = $$('div', {
  8182. "style": {
  8183. "position": "relative",
  8184. "width": "100%",
  8185. "height": "100%",
  8186. },
  8187. })
  8188. _box.appendChild(_loading)
  8189. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8190. switch (str) {
  8191. case "whiteboard":
  8192. aTool = 1;
  8193. _iframe = $$("iframe", {
  8194. "frameborder": "no",
  8195. "border": "0",
  8196. "scrolling ": "no",
  8197. "style": {
  8198. "cssText": "border:0;width:100%;height:100%"
  8199. },
  8200. "src": "https://iwb.cocorobo.hk/"
  8201. })
  8202. _box.appendChild(_iframe);
  8203. _box.appendChild(_jie);
  8204. _formdiv = new U.UF.UI.form(
  8205. "電子白闆",
  8206. _box, {
  8207. "id": "whiteboard" + cid + stage + task + tool,
  8208. "style": {
  8209. "width": "90%",
  8210. "height": "90%",
  8211. "overflow": 'hidden'
  8212. },
  8213. "onresize": function () { }
  8214. }, {
  8215. closecallback: function () { }
  8216. }, {
  8217. "style": {
  8218. "height": "36px"
  8219. }
  8220. }).form; //創建窗體
  8221. _taskbar = {
  8222. "id": str + _formdiv.id,
  8223. "style": {
  8224. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8225. },
  8226. "name": "電子白闆",
  8227. "forms": _formdiv,
  8228. "click": function () {
  8229. U.MD.D.I.openApplication(str, obj, info);
  8230. }
  8231. }
  8232. break;
  8233. case "mind":
  8234. aTool = 3;
  8235. _iframe = $$("iframe", {
  8236. "frameborder": "no",
  8237. "border": "0",
  8238. "scrolling ": "no",
  8239. "style": {
  8240. "cssText": "border:0;width:100%;height:100%"
  8241. },
  8242. "src": "/kityminder-editor/dist/index.html"
  8243. })
  8244. _box.appendChild(_iframe);
  8245. _box.appendChild(_jie);
  8246. _formdiv = new U.UF.UI.form(
  8247. "思維導圖",
  8248. _box, { //"/jsmind/example/demo.html"
  8249. "id": "mind" + cid + stage + task + tool,
  8250. "style": {
  8251. "width": "90%",
  8252. "height": "90%",
  8253. "overflow": 'hidden'
  8254. },
  8255. "onresize": function () { }
  8256. }, {
  8257. closecallback: function () { }
  8258. }, {
  8259. "style": {
  8260. "height": "36px"
  8261. }
  8262. }).form; //創建窗體
  8263. _taskbar = {
  8264. "id": str + _formdiv.id,
  8265. "style": {
  8266. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8267. },
  8268. "name": "思維導圖",
  8269. "forms": _formdiv,
  8270. "click": function () {
  8271. U.MD.D.I.openApplication(str, obj, info);
  8272. }
  8273. }
  8274. break;
  8275. case "MindMap":
  8276. aTool = 3;
  8277. _iframe = $$("iframe", {
  8278. "frameborder": "no",
  8279. "border": "0",
  8280. "scrolling ": "no",
  8281. "style": {
  8282. "cssText": "border:0;width:100%;height:100%"
  8283. },
  8284. "src": "//cloud.cocorobo.hk/mind/"
  8285. })
  8286. _box.appendChild(_iframe);
  8287. _box.appendChild(_jie);
  8288. _formdiv = new U.UF.UI.form(
  8289. "思維導圖",
  8290. _box, { //"/jsmind/example/demo.html"
  8291. "id": "mind" + cid + stage + task + tool,
  8292. "style": {
  8293. "width": "90%",
  8294. "height": "90%",
  8295. "overflow": 'hidden'
  8296. },
  8297. "onresize": function () { }
  8298. }, {
  8299. closecallback: function () { }
  8300. }, {
  8301. "style": {
  8302. "height": "36px"
  8303. }
  8304. }).form; //創建窗體
  8305. _taskbar = {
  8306. "id": str + _formdiv.id,
  8307. "style": {
  8308. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8309. },
  8310. "name": "思維導圖",
  8311. "forms": _formdiv,
  8312. "click": function () {
  8313. U.MD.D.I.openApplication(str, obj, info);
  8314. }
  8315. }
  8316. break;
  8317. case "doc":
  8318. aTool = 6;
  8319. _iframe = $$("iframe", {
  8320. "frameborder": "no",
  8321. "border": "0",
  8322. "scrolling ": "no",
  8323. "style": {
  8324. "cssText": "border:0;width:100%;height:100%"
  8325. },
  8326. "src": "/Office/Word/WordEditArea.htm"
  8327. })
  8328. _box.appendChild(_iframe);
  8329. _box.appendChild(_jie);
  8330. _formdiv = new U.UF.UI.form(
  8331. "協同文檔",
  8332. _box, {
  8333. "id": "doc" + cid + stage + task + tool,
  8334. "style": {
  8335. "width": "90%",
  8336. "height": "90%",
  8337. "overflow": 'hidden'
  8338. },
  8339. "onresize": function () { }
  8340. }, {
  8341. closecallback: function () { }
  8342. }, {
  8343. "style": {
  8344. "height": "36px"
  8345. }
  8346. }).form; //創建窗體
  8347. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8348. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8349. })
  8350. _taskbar = {
  8351. "id": str + _formdiv.id,
  8352. "style": {
  8353. "backgroundImage": "url(/img/icon/doc.png)"
  8354. },
  8355. "name": "協同文檔",
  8356. "forms": _formdiv,
  8357. "click": function () {
  8358. U.MD.D.I.openApplication(str, obj, info);
  8359. }
  8360. }
  8361. break;
  8362. case "mindNetwork": //好友打開
  8363. aTool = 7;
  8364. _iframe = $$("iframe", {
  8365. "webkitallowfullscreen": "",
  8366. "mozallowfullscreen": "",
  8367. "allowfullscreen": "",
  8368. "frameborder": "no",
  8369. "border": "0",
  8370. "scrolling ": "no",
  8371. "style": {
  8372. "cssText": "border:0; width:100%; height:100%;"
  8373. },
  8374. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8375. })
  8376. _box.appendChild(_iframe);
  8377. _box.appendChild(_jie);
  8378. _formdiv = new U.UF.UI.form(
  8379. "思維網格",
  8380. _box, {
  8381. "id": "mindNetwork" + cid + stage + task + tool,
  8382. "style": {
  8383. "width": "90%",
  8384. "height": "90%",
  8385. "overflow": 'hidden'
  8386. },
  8387. "onresize": function () { }
  8388. }, {
  8389. closecallback: function () { }
  8390. }, {
  8391. "style": {
  8392. "height": "36px"
  8393. }
  8394. }).form; //創建窗體
  8395. _taskbar = {
  8396. "id": str + _formdiv.id,
  8397. "style": {
  8398. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8399. },
  8400. "name": "思維網格",
  8401. "forms": _formdiv,
  8402. "click": function () {
  8403. U.MD.D.I.openApplication(str, obj, info);
  8404. }
  8405. }
  8406. break;
  8407. case "courseDesign":
  8408. _iframe = $$("iframe", {
  8409. "webkitallowfullscreen": "",
  8410. "mozallowfullscreen": "",
  8411. "allowfullscreen": "",
  8412. "frameborder": "no",
  8413. "border": "0",
  8414. "scrolling ": "no",
  8415. "style": {
  8416. "cssText": "border:0; width:100%; height:100%;"
  8417. },
  8418. "src": "/course-design-vue"
  8419. })
  8420. _box.appendChild(_iframe);
  8421. _box.appendChild(_jie);
  8422. _formdiv = new U.UF.UI.form(
  8423. "項目設計",
  8424. _box, {
  8425. "id": "courseDesign" + cid + stage + task + tool,
  8426. "style": {
  8427. "width": "90%",
  8428. "height": "90%",
  8429. "overflow": 'hidden'
  8430. },
  8431. "onresize": function () { }
  8432. }, {
  8433. closecallback: function () { }
  8434. }, {
  8435. "style": {
  8436. "height": "36px"
  8437. }
  8438. }).form; //創建窗體
  8439. _taskbar = {
  8440. "id": str + _formdiv.id,
  8441. "style": {
  8442. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8443. },
  8444. "name": "項目設計",
  8445. "forms": _formdiv,
  8446. "click": function () {
  8447. U.MD.D.I.openApplication(str, obj, info);
  8448. }
  8449. }
  8450. break;
  8451. }
  8452. const script1 = document.createElement("script");
  8453. script1.type = "text/javascript";
  8454. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8455. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8456. const script2 = document.createElement("script");
  8457. script2.type = "text/javascript";
  8458. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8459. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8460. const script3 = document.createElement("script");
  8461. script3.type = "text/javascript";
  8462. script3.charset = "UTF-8";
  8463. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8464. const script4 = document.createElement("script");
  8465. script4.type = "text/javascript";
  8466. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8467. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8468. if (_iframe) {
  8469. if (str == 'doc') {
  8470. _iframe = _formdiv.querySelector('iframe')
  8471. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8472. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8473. _iframe.contentWindow.document.body.appendChild(script1);
  8474. _iframe.contentWindow.document.body.appendChild(script2);
  8475. // _iframe.contentWindow.document.body.appendChild(script3);
  8476. _iframe.contentWindow.document.body.appendChild(script4);
  8477. })
  8478. if (onloadListener) {
  8479. _iframe.contentDocument.location.reload()
  8480. } else {
  8481. _iframe.contentDocument.location.reload()
  8482. }
  8483. } else if (str == 'courseDesign') {
  8484. U.UF.DL.iframeLoad(_iframe, function () {
  8485. // _iframe.contentWindow.U.MD.O.W.load();
  8486. // _iframe.contentWindow.document.body.appendChild(script1);
  8487. _iframe.contentWindow.document.body.appendChild(script2);
  8488. _iframe.contentWindow.document.body.appendChild(script4);
  8489. })
  8490. } else if (str == 'mind') {
  8491. _iframe = _formdiv.querySelector('iframe')
  8492. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8493. //
  8494. _iframe.contentWindow.document.body.appendChild(script1);
  8495. _iframe.contentWindow.document.body.appendChild(script2);
  8496. _iframe.contentWindow.document.body.appendChild(script4);
  8497. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8498. })
  8499. if (onloadListener) {
  8500. _iframe.contentDocument.location.reload()
  8501. } else {
  8502. _iframe.contentDocument.location.reload()
  8503. }
  8504. } else if (str == 'whiteboard') {
  8505. _iframe = _formdiv.querySelector('iframe')
  8506. let onloadListener = _iframe.onload = () => {
  8507. _iframe.contentWindow.document.body.appendChild(script1);
  8508. _iframe.contentWindow.document.body.appendChild(script2);
  8509. _iframe.contentWindow.document.body.appendChild(script4);
  8510. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8511. };
  8512. // if (onloadListener) {
  8513. // try {
  8514. // _iframe.src += "?cocorobo="+new Date().getTime()
  8515. // _iframe.contentWindow.document.location.reload()
  8516. // } catch (error) {
  8517. // }
  8518. // } else {
  8519. // _iframe.contentDocument.location.reload()
  8520. // }
  8521. } else {
  8522. _iframe.onload = () => {
  8523. _iframe.contentWindow.document.body.appendChild(script1);
  8524. _iframe.contentWindow.document.body.appendChild(script2);
  8525. // _iframe.contentWindow.document.body.appendChild(script3);
  8526. _iframe.contentWindow.document.body.appendChild(script4);
  8527. };
  8528. }
  8529. _jie.onclick = async () => {
  8530. let text = ''
  8531. if (aTool == 1) {
  8532. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8533. } else if (aTool == 6) {
  8534. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8535. } else if (aTool == 3) {
  8536. text = await U.MD.D.I.getEditorContent(_iframe);
  8537. }
  8538. _loading.style.display = 'flex'
  8539. console.log(_loading);
  8540. var _ajs = _iframe.contentWindow.document.createElement("script");
  8541. _ajs.type = "text/javascript";
  8542. _ajs.innerHTML =
  8543. // 'console.log(' + _loading + ');\n' +
  8544. 'var _js = document.createElement("script");\n' +
  8545. '_js.type="text/javascript";\n' +
  8546. '_js.charset="UTF-8";\n' +
  8547. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8548. "_js.onload = function(){\n" +
  8549. ' var a = document.getElementsByTagName("img")\n' +
  8550. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8551. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8552. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8553. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8554. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8555. "beforeUpload_shishi(file," +
  8556. "'" +
  8557. _userid +
  8558. "'" +
  8559. ", " +
  8560. "'" +
  8561. _cid +
  8562. "'" +
  8563. ", " +
  8564. "'" +
  8565. _stage +
  8566. "'" +
  8567. ", " +
  8568. "'" +
  8569. _task +
  8570. "'" +
  8571. ", " +
  8572. "'" +
  8573. _tool +
  8574. "'" +
  8575. ", " +
  8576. "'" +
  8577. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8578. "'" +
  8579. ", " +
  8580. "'" +
  8581. aTool +
  8582. "'" +
  8583. ", " +
  8584. "`" +
  8585. text +
  8586. "`" +
  8587. ")\n" +
  8588. " });\n" +
  8589. "}\n" +
  8590. "document.head.appendChild(_js);\n";
  8591. _iframe.contentWindow.document.head.appendChild(_ajs);
  8592. }
  8593. }
  8594. //U.MD.D.I.openClick(str);
  8595. //如果有任務欄信息
  8596. // if (_taskbar) {
  8597. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8598. // }
  8599. }
  8600. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8601. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8602. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8603. _userinfo = US.userInfo, //登錄用戶信息
  8604. _userid = US.userInfo.userid //登錄用戶id
  8605. let _iframe;
  8606. let _cid = cid,
  8607. _stage = stage,
  8608. _task = task,
  8609. _tool = tool;
  8610. var _jie = $$("div", {
  8611. "style": {
  8612. "position": "absolute",
  8613. "bottom": "50px",
  8614. "right": "50px",
  8615. "zIndex": "9999",
  8616. "backgroundColor": "#2268bc",
  8617. "color": "#fff",
  8618. "padding": "12px 20px",
  8619. "cursor": "pointer",
  8620. "borderRadius": "4px",
  8621. },
  8622. "innerHTML": "提交作業"
  8623. })
  8624. let aTool = ''
  8625. let _loading = document.createElement('div')
  8626. _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;"
  8627. // _loading.id = "";
  8628. let _lchild = document.createElement('div')
  8629. let _limg = document.createElement('img')
  8630. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8631. _limg.style = "width: 26px;margin-right: 10px;"
  8632. _lchild.appendChild(_limg)
  8633. let _lspan = document.createElement('span')
  8634. _lspan.innerHTML = "上傳中..."
  8635. _lchild.appendChild(_lspan)
  8636. _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%);"
  8637. _loading.appendChild(_lchild)
  8638. let _box = $$('div', {
  8639. "style": {
  8640. "position": "relative",
  8641. "width": "100%",
  8642. "height": "100%",
  8643. },
  8644. })
  8645. _box.appendChild(_loading)
  8646. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8647. switch (str) {
  8648. case "whiteboard":
  8649. aTool = 1;
  8650. _iframe = $$("iframe", {
  8651. "frameborder": "no",
  8652. "border": "0",
  8653. "scrolling ": "no",
  8654. "style": {
  8655. "cssText": "border:0;width:100%;height:100%"
  8656. },
  8657. "src": "https://iwb.cocorobo.hk/"
  8658. })
  8659. _box.appendChild(_iframe);
  8660. _box.appendChild(_jie);
  8661. _formdiv = new U.UF.UI.form(
  8662. "電子白闆",
  8663. _box, {
  8664. "id": "whiteboard" + cid + stage + task + tool,
  8665. "style": {
  8666. "width": "90%",
  8667. "height": "90%",
  8668. "overflow": 'hidden'
  8669. },
  8670. "onresize": function () { }
  8671. }, {
  8672. closecallback: function () { }
  8673. }, {
  8674. "style": {
  8675. "height": "36px"
  8676. }
  8677. }).form; //創建窗體
  8678. _taskbar = {
  8679. "id": str + _formdiv.id,
  8680. "style": {
  8681. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8682. },
  8683. "name": "電子白闆",
  8684. "forms": _formdiv,
  8685. "click": function () {
  8686. U.MD.D.I.openApplication(str, obj, info);
  8687. }
  8688. }
  8689. break;
  8690. case "mind":
  8691. aTool = 3;
  8692. _iframe = $$("iframe", {
  8693. "frameborder": "no",
  8694. "border": "0",
  8695. "scrolling ": "no",
  8696. "style": {
  8697. "cssText": "border:0;width:100%;height:100%"
  8698. },
  8699. "src": "/kityminder-editor/dist/index.html"
  8700. })
  8701. _box.appendChild(_iframe);
  8702. _box.appendChild(_jie);
  8703. _formdiv = new U.UF.UI.form(
  8704. "思維導圖",
  8705. _box, { //"/jsmind/example/demo.html"
  8706. "id": "mind" + cid + stage + task + tool,
  8707. "style": {
  8708. "width": "90%",
  8709. "height": "90%",
  8710. "overflow": 'hidden'
  8711. },
  8712. "onresize": function () { }
  8713. }, {
  8714. closecallback: function () { }
  8715. }, {
  8716. "style": {
  8717. "height": "36px"
  8718. }
  8719. }).form; //創建窗體
  8720. _taskbar = {
  8721. "id": str + _formdiv.id,
  8722. "style": {
  8723. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8724. },
  8725. "name": "思維導圖",
  8726. "forms": _formdiv,
  8727. "click": function () {
  8728. U.MD.D.I.openApplication(str, obj, info);
  8729. }
  8730. }
  8731. break;
  8732. case "MindMap":
  8733. aTool = 3;
  8734. _iframe = $$("iframe", {
  8735. "frameborder": "no",
  8736. "border": "0",
  8737. "scrolling ": "no",
  8738. "style": {
  8739. "cssText": "border:0;width:100%;height:100%"
  8740. },
  8741. "src": "//cloud.cocorobo.hk/mind/"
  8742. })
  8743. _box.appendChild(_iframe);
  8744. _box.appendChild(_jie);
  8745. _formdiv = new U.UF.UI.form(
  8746. "思維導圖",
  8747. _box, { //"/jsmind/example/demo.html"
  8748. "id": "mind" + cid + stage + task + tool,
  8749. "style": {
  8750. "width": "90%",
  8751. "height": "90%",
  8752. "overflow": 'hidden'
  8753. },
  8754. "onresize": function () { }
  8755. }, {
  8756. closecallback: function () { }
  8757. }, {
  8758. "style": {
  8759. "height": "36px"
  8760. }
  8761. }).form; //創建窗體
  8762. _taskbar = {
  8763. "id": str + _formdiv.id,
  8764. "style": {
  8765. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8766. },
  8767. "name": "思維導圖",
  8768. "forms": _formdiv,
  8769. "click": function () {
  8770. U.MD.D.I.openApplication(str, obj, info);
  8771. }
  8772. }
  8773. break;
  8774. case "doc":
  8775. aTool = 6;
  8776. _iframe = $$("iframe", {
  8777. "frameborder": "no",
  8778. "border": "0",
  8779. "scrolling ": "no",
  8780. "style": {
  8781. "cssText": "border:0;width:100%;height:100%"
  8782. },
  8783. "src": "/Office/Word/WordEditArea.htm"
  8784. })
  8785. _box.appendChild(_iframe);
  8786. _box.appendChild(_jie);
  8787. _formdiv = new U.UF.UI.form(
  8788. "協同文檔",
  8789. _box, {
  8790. "id": "doc" + cid + stage + task + tool,
  8791. "style": {
  8792. "width": "90%",
  8793. "height": "90%",
  8794. "overflow": 'hidden'
  8795. },
  8796. "onresize": function () { }
  8797. }, {
  8798. closecallback: function () { }
  8799. }, {
  8800. "style": {
  8801. "height": "36px"
  8802. }
  8803. }).form; //創建窗體
  8804. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8805. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8806. })
  8807. _taskbar = {
  8808. "id": str + _formdiv.id,
  8809. "style": {
  8810. "backgroundImage": "url(/img/icon/doc.png)"
  8811. },
  8812. "name": "協同文檔",
  8813. "forms": _formdiv,
  8814. "click": function () {
  8815. U.MD.D.I.openApplication(str, obj, info);
  8816. }
  8817. }
  8818. break;
  8819. case "mindNetwork": //好友打開
  8820. aTool = 7;
  8821. _iframe = $$("iframe", {
  8822. "webkitallowfullscreen": "",
  8823. "mozallowfullscreen": "",
  8824. "allowfullscreen": "",
  8825. "frameborder": "no",
  8826. "border": "0",
  8827. "scrolling ": "no",
  8828. "style": {
  8829. "cssText": "border:0; width:100%; height:100%;"
  8830. },
  8831. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8832. })
  8833. _box.appendChild(_iframe);
  8834. _box.appendChild(_jie);
  8835. _formdiv = new U.UF.UI.form(
  8836. "思維網格",
  8837. _box, {
  8838. "id": "mindNetwork" + cid + stage + task + tool,
  8839. "style": {
  8840. "width": "90%",
  8841. "height": "90%",
  8842. "overflow": 'hidden'
  8843. },
  8844. "onresize": function () { }
  8845. }, {
  8846. closecallback: function () { }
  8847. }, {
  8848. "style": {
  8849. "height": "36px"
  8850. }
  8851. }).form; //創建窗體
  8852. _taskbar = {
  8853. "id": str + _formdiv.id,
  8854. "style": {
  8855. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8856. },
  8857. "name": "思維網格",
  8858. "forms": _formdiv,
  8859. "click": function () {
  8860. U.MD.D.I.openApplication(str, obj, info);
  8861. }
  8862. }
  8863. break;
  8864. case "courseDesign":
  8865. _iframe = $$("iframe", {
  8866. "webkitallowfullscreen": "",
  8867. "mozallowfullscreen": "",
  8868. "allowfullscreen": "",
  8869. "frameborder": "no",
  8870. "border": "0",
  8871. "scrolling ": "no",
  8872. "style": {
  8873. "cssText": "border:0; width:100%; height:100%;"
  8874. },
  8875. "src": "/course-design-vue"
  8876. })
  8877. _box.appendChild(_iframe);
  8878. _box.appendChild(_jie);
  8879. _formdiv = new U.UF.UI.form(
  8880. "項目設計",
  8881. _box, {
  8882. "id": "courseDesign" + cid + stage + task + tool,
  8883. "style": {
  8884. "width": "90%",
  8885. "height": "90%",
  8886. "overflow": 'hidden'
  8887. },
  8888. "onresize": function () { }
  8889. }, {
  8890. closecallback: function () { }
  8891. }, {
  8892. "style": {
  8893. "height": "36px"
  8894. }
  8895. }).form; //創建窗體
  8896. _taskbar = {
  8897. "id": str + _formdiv.id,
  8898. "style": {
  8899. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8900. },
  8901. "name": "項目設計",
  8902. "forms": _formdiv,
  8903. "click": function () {
  8904. U.MD.D.I.openApplication(str, obj, info);
  8905. }
  8906. }
  8907. break;
  8908. }
  8909. const script1 = document.createElement("script");
  8910. script1.type = "text/javascript";
  8911. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8912. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8913. const script2 = document.createElement("script");
  8914. script2.type = "text/javascript";
  8915. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8916. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8917. const script3 = document.createElement("script");
  8918. script3.type = "text/javascript";
  8919. script3.charset = "UTF-8";
  8920. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8921. const script4 = document.createElement("script");
  8922. script4.type = "text/javascript";
  8923. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8924. script4.src = window.origin + "/js/Common/jietu2E.js";
  8925. if (_iframe) {
  8926. if (str == 'doc') {
  8927. _iframe = _formdiv.querySelector('iframe')
  8928. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8929. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8930. _iframe.contentWindow.document.body.appendChild(script1);
  8931. _iframe.contentWindow.document.body.appendChild(script2);
  8932. // _iframe.contentWindow.document.body.appendChild(script3);
  8933. _iframe.contentWindow.document.body.appendChild(script4);
  8934. })
  8935. if (onloadListener) {
  8936. _iframe.contentDocument.location.reload()
  8937. } else {
  8938. _iframe.contentDocument.location.reload()
  8939. }
  8940. } else if (str == 'courseDesign') {
  8941. U.UF.DL.iframeLoad(_iframe, function () {
  8942. // _iframe.contentWindow.U.MD.O.W.load();
  8943. // _iframe.contentWindow.document.body.appendChild(script1);
  8944. _iframe.contentWindow.document.body.appendChild(script2);
  8945. _iframe.contentWindow.document.body.appendChild(script4);
  8946. })
  8947. } else if (str == 'mind') {
  8948. _iframe = _formdiv.querySelector('iframe')
  8949. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8950. //
  8951. _iframe.contentWindow.document.body.appendChild(script1);
  8952. _iframe.contentWindow.document.body.appendChild(script2);
  8953. _iframe.contentWindow.document.body.appendChild(script4);
  8954. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8955. })
  8956. if (onloadListener) {
  8957. _iframe.contentDocument.location.reload()
  8958. } else {
  8959. _iframe.contentDocument.location.reload()
  8960. }
  8961. } else if (str == 'whiteboard') {
  8962. _iframe = _formdiv.querySelector('iframe')
  8963. let onloadListener = _iframe.onload = () => {
  8964. _iframe.contentWindow.document.body.appendChild(script1);
  8965. _iframe.contentWindow.document.body.appendChild(script2);
  8966. _iframe.contentWindow.document.body.appendChild(script4);
  8967. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8968. };
  8969. // if (onloadListener) {
  8970. // try {
  8971. // _iframe.src += "?cocorobo="+new Date().getTime()
  8972. // _iframe.contentWindow.document.location.reload()
  8973. // } catch (error) {
  8974. // }
  8975. // } else {
  8976. // _iframe.contentDocument.location.reload()
  8977. // }
  8978. } else {
  8979. _iframe.onload = () => {
  8980. _iframe.contentWindow.document.body.appendChild(script1);
  8981. _iframe.contentWindow.document.body.appendChild(script2);
  8982. // _iframe.contentWindow.document.body.appendChild(script3);
  8983. _iframe.contentWindow.document.body.appendChild(script4);
  8984. };
  8985. }
  8986. _jie.onclick = async () => {
  8987. let text = ''
  8988. if (aTool == 1) {
  8989. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8990. } else if (aTool == 6) {
  8991. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8992. } else if (aTool == 3) {
  8993. text = await U.MD.D.I.getEditorContent(_iframe);
  8994. }
  8995. _loading.style.display = 'flex'
  8996. console.log(_loading);
  8997. var _ajs = _iframe.contentWindow.document.createElement("script");
  8998. _ajs.type = "text/javascript";
  8999. _ajs.innerHTML =
  9000. // 'console.log(' + _loading + ');\n' +
  9001. 'var _js = document.createElement("script");\n' +
  9002. '_js.type="text/javascript";\n' +
  9003. '_js.charset="UTF-8";\n' +
  9004. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9005. "_js.onload = function(){\n" +
  9006. ' var a = document.getElementsByTagName("img")\n' +
  9007. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9008. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9009. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9010. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9011. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9012. "beforeUpload_shishi(file," +
  9013. "'" +
  9014. _userid +
  9015. "'" +
  9016. ", " +
  9017. "'" +
  9018. _cid +
  9019. "'" +
  9020. ", " +
  9021. "'" +
  9022. _stage +
  9023. "'" +
  9024. ", " +
  9025. "'" +
  9026. _task +
  9027. "'" +
  9028. ", " +
  9029. "'" +
  9030. _tool +
  9031. "'" +
  9032. ", " +
  9033. "'" +
  9034. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  9035. "'" +
  9036. ", " +
  9037. "'" +
  9038. aTool +
  9039. "'" +
  9040. ", " +
  9041. "`" +
  9042. text +
  9043. "`" +
  9044. ")\n" +
  9045. " });\n" +
  9046. "}\n" +
  9047. "document.head.appendChild(_js);\n";
  9048. _iframe.contentWindow.document.head.appendChild(_ajs);
  9049. }
  9050. }
  9051. //U.MD.D.I.openClick(str);
  9052. //如果有任務欄信息
  9053. // if (_taskbar) {
  9054. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9055. // }
  9056. }
  9057. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  9058. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9059. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9060. _userid = student.userid, //登錄用戶id
  9061. _username = student.student //用戶名字
  9062. let _iframe;
  9063. let _cid = cid,
  9064. _stage = stage,
  9065. _task = task,
  9066. _tool = tool;
  9067. var _jie = $$("div", {
  9068. "style": {
  9069. "position": "absolute",
  9070. "bottom": "50px",
  9071. "right": "50px",
  9072. "zIndex": "9999",
  9073. "backgroundColor": "#2268bc",
  9074. "color": "#fff",
  9075. "padding": "12px 20px",
  9076. "cursor": "pointer",
  9077. "borderRadius": "4px",
  9078. },
  9079. "innerHTML": "提交作業"
  9080. })
  9081. let aTool = ''
  9082. let _loading = document.createElement('div')
  9083. _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;"
  9084. // _loading.id = "";
  9085. let _lchild = document.createElement('div')
  9086. let _limg = document.createElement('img')
  9087. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9088. _limg.style = "width: 26px;margin-right: 10px;"
  9089. _lchild.appendChild(_limg)
  9090. let _lspan = document.createElement('span')
  9091. _lspan.innerHTML = "上傳中..."
  9092. _lchild.appendChild(_lspan)
  9093. _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%);"
  9094. _loading.appendChild(_lchild)
  9095. var _box = $$('div', {
  9096. "style": {
  9097. "position": "relative",
  9098. "width": "100%",
  9099. "height": "100%",
  9100. },
  9101. })
  9102. _box.appendChild(_loading)
  9103. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9104. switch (str) {
  9105. case "whiteboard":
  9106. aTool = 1;
  9107. _iframe = $$("iframe", {
  9108. "frameborder": "no",
  9109. "border": "0",
  9110. "scrolling ": "no",
  9111. "style": {
  9112. "cssText": "border:0;width:100%;height:100%"
  9113. },
  9114. "src": "https://iwb.cocorobo.hk/"
  9115. })
  9116. _box.appendChild(_iframe);
  9117. _box.appendChild(_jie);
  9118. _formdiv = new U.UF.UI.form(
  9119. "電子白闆-" + _username,
  9120. _box, {
  9121. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9122. "style": {
  9123. "width": "90%",
  9124. "height": "90%",
  9125. "overflow": 'hidden'
  9126. },
  9127. "onresize": function () { }
  9128. }, {
  9129. closecallback: function () { }
  9130. }, {
  9131. "style": {
  9132. "height": "36px"
  9133. }
  9134. }).form; //創建窗體
  9135. _taskbar = {
  9136. "id": str + _formdiv.id,
  9137. "style": {
  9138. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9139. },
  9140. "name": "電子白闆",
  9141. "forms": _formdiv,
  9142. "click": function () {
  9143. U.MD.D.I.openApplication(str, obj, info);
  9144. }
  9145. }
  9146. break;
  9147. case "mind":
  9148. aTool = 3;
  9149. _iframe = $$("iframe", {
  9150. "frameborder": "no",
  9151. "border": "0",
  9152. "scrolling ": "no",
  9153. "style": {
  9154. "cssText": "border:0;width:100%;height:100%"
  9155. },
  9156. "src": "/kityminder-editor/dist/index.html"
  9157. })
  9158. _box.appendChild(_iframe);
  9159. _box.appendChild(_jie);
  9160. _formdiv = new U.UF.UI.form(
  9161. "思維導圖-" + _username,
  9162. _box, { //"/jsmind/example/demo.html"
  9163. "id": "mind" + cid + stage + task + tool + _userid,
  9164. "style": {
  9165. "width": "90%",
  9166. "height": "90%",
  9167. "overflow": 'hidden'
  9168. },
  9169. "onresize": function () { }
  9170. }, {
  9171. closecallback: function () { }
  9172. }, {
  9173. "style": {
  9174. "height": "36px"
  9175. }
  9176. }).form; //創建窗體
  9177. _taskbar = {
  9178. "id": str + _formdiv.id,
  9179. "style": {
  9180. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9181. },
  9182. "name": "思維導圖",
  9183. "forms": _formdiv,
  9184. "click": function () {
  9185. U.MD.D.I.openApplication(str, obj, info);
  9186. }
  9187. }
  9188. break;
  9189. case "MindMap":
  9190. aTool = 3;
  9191. _iframe = $$("iframe", {
  9192. "frameborder": "no",
  9193. "border": "0",
  9194. "scrolling ": "no",
  9195. "style": {
  9196. "cssText": "border:0;width:100%;height:100%"
  9197. },
  9198. "src": "//cloud.cocorobo.hk/mind/"
  9199. })
  9200. _box.appendChild(_iframe);
  9201. _box.appendChild(_jie);
  9202. _formdiv = new U.UF.UI.form(
  9203. "思維導圖-" + _username,
  9204. _box, { //"/jsmind/example/demo.html"
  9205. "id": "mind" + cid + stage + task + tool + _userid,
  9206. "style": {
  9207. "width": "90%",
  9208. "height": "90%",
  9209. "overflow": 'hidden'
  9210. },
  9211. "onresize": function () { }
  9212. }, {
  9213. closecallback: function () { }
  9214. }, {
  9215. "style": {
  9216. "height": "36px"
  9217. }
  9218. }).form; //創建窗體
  9219. _taskbar = {
  9220. "id": str + _formdiv.id,
  9221. "style": {
  9222. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9223. },
  9224. "name": "思維導圖",
  9225. "forms": _formdiv,
  9226. "click": function () {
  9227. U.MD.D.I.openApplication(str, obj, info);
  9228. }
  9229. }
  9230. break;
  9231. case "doc":
  9232. aTool = 6;
  9233. _iframe = $$("iframe", {
  9234. "frameborder": "no",
  9235. "border": "0",
  9236. "scrolling ": "no",
  9237. "style": {
  9238. "cssText": "border:0;width:100%;height:100%"
  9239. },
  9240. "src": "/Office/Word/WordEditArea.htm"
  9241. })
  9242. _box.appendChild(_iframe);
  9243. _box.appendChild(_jie);
  9244. _formdiv = new U.UF.UI.form(
  9245. "協同文檔-" + _username,
  9246. _box, {
  9247. "id": "doc" + cid + stage + task + tool + _userid,
  9248. "style": {
  9249. "width": "90%",
  9250. "height": "90%",
  9251. "overflow": 'hidden'
  9252. },
  9253. "onresize": function () { }
  9254. }, {
  9255. closecallback: function () { }
  9256. }, {
  9257. "style": {
  9258. "height": "36px"
  9259. }
  9260. }).form; //創建窗體
  9261. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9262. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9263. })
  9264. _taskbar = {
  9265. "id": str + _formdiv.id,
  9266. "style": {
  9267. "backgroundImage": "url(/img/icon/doc.png)"
  9268. },
  9269. "name": "協同文檔",
  9270. "forms": _formdiv,
  9271. "click": function () {
  9272. U.MD.D.I.openApplication(str, obj, info);
  9273. }
  9274. }
  9275. break;
  9276. case "mindNetwork": //好友打開
  9277. aTool = 7;
  9278. _iframe = $$("iframe", {
  9279. "webkitallowfullscreen": "",
  9280. "mozallowfullscreen": "",
  9281. "allowfullscreen": "",
  9282. "frameborder": "no",
  9283. "border": "0",
  9284. "scrolling ": "no",
  9285. "style": {
  9286. "cssText": "border:0; width:100%; height:100%;"
  9287. },
  9288. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9289. })
  9290. _box.appendChild(_iframe);
  9291. _box.appendChild(_jie);
  9292. _formdiv = new U.UF.UI.form(
  9293. "思維網格-" + _username,
  9294. _box, {
  9295. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9296. "style": {
  9297. "width": "90%",
  9298. "height": "90%",
  9299. "overflow": 'hidden'
  9300. },
  9301. "onresize": function () { }
  9302. }, {
  9303. closecallback: function () { }
  9304. }, {
  9305. "style": {
  9306. "height": "36px"
  9307. }
  9308. }).form; //創建窗體
  9309. _taskbar = {
  9310. "id": str + _formdiv.id,
  9311. "style": {
  9312. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9313. },
  9314. "name": "思維網格",
  9315. "forms": _formdiv,
  9316. "click": function () {
  9317. U.MD.D.I.openApplication(str, obj, info);
  9318. }
  9319. }
  9320. break;
  9321. case "courseDesign":
  9322. _iframe = $$("iframe", {
  9323. "webkitallowfullscreen": "",
  9324. "mozallowfullscreen": "",
  9325. "allowfullscreen": "",
  9326. "frameborder": "no",
  9327. "border": "0",
  9328. "scrolling ": "no",
  9329. "style": {
  9330. "cssText": "border:0; width:100%; height:100%;"
  9331. },
  9332. "src": "/course-design-vue"
  9333. })
  9334. _box.appendChild(_iframe);
  9335. _box.appendChild(_jie);
  9336. _formdiv = new U.UF.UI.form(
  9337. "項目設計-" + _username,
  9338. _box, {
  9339. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9340. "style": {
  9341. "width": "90%",
  9342. "height": "90%",
  9343. "overflow": 'hidden'
  9344. },
  9345. "onresize": function () { }
  9346. }, {
  9347. closecallback: function () { }
  9348. }, {
  9349. "style": {
  9350. "height": "36px"
  9351. }
  9352. }).form; //創建窗體
  9353. _taskbar = {
  9354. "id": str + _formdiv.id,
  9355. "style": {
  9356. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9357. },
  9358. "name": "項目設計",
  9359. "forms": _formdiv,
  9360. "click": function () {
  9361. U.MD.D.I.openApplication(str, obj, info);
  9362. }
  9363. }
  9364. break;
  9365. }
  9366. const script1 = document.createElement("script");
  9367. script1.type = "text/javascript";
  9368. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9369. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9370. const script2 = document.createElement("script");
  9371. script2.type = "text/javascript";
  9372. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9373. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9374. const script3 = document.createElement("script");
  9375. script3.type = "text/javascript";
  9376. script3.charset = "UTF-8";
  9377. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9378. const script4 = document.createElement("script");
  9379. script4.type = "text/javascript";
  9380. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9381. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  9382. if (_iframe) {
  9383. if (str == 'doc') {
  9384. _iframe = _formdiv.querySelector('iframe')
  9385. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9386. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9387. _iframe.contentWindow.document.body.appendChild(script1);
  9388. _iframe.contentWindow.document.body.appendChild(script2);
  9389. // _iframe.contentWindow.document.body.appendChild(script3);
  9390. _iframe.contentWindow.document.body.appendChild(script4);
  9391. })
  9392. if (onloadListener) {
  9393. _iframe.contentDocument.location.reload()
  9394. } else {
  9395. _iframe.contentDocument.location.reload()
  9396. }
  9397. } else if (str == 'courseDesign') {
  9398. U.UF.DL.iframeLoad(_iframe, function () {
  9399. // _iframe.contentWindow.U.MD.O.W.load();
  9400. // _iframe.contentWindow.document.body.appendChild(script1);
  9401. _iframe.contentWindow.document.body.appendChild(script2);
  9402. _iframe.contentWindow.document.body.appendChild(script4);
  9403. })
  9404. } else if (str == 'mind') {
  9405. _iframe = _formdiv.querySelector('iframe')
  9406. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9407. //
  9408. _iframe.contentWindow.document.body.appendChild(script1);
  9409. _iframe.contentWindow.document.body.appendChild(script2);
  9410. _iframe.contentWindow.document.body.appendChild(script4);
  9411. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9412. })
  9413. if (onloadListener) {
  9414. _iframe.contentDocument.location.reload()
  9415. } else {
  9416. _iframe.contentDocument.location.reload()
  9417. }
  9418. } else if (str == 'whiteboard') {
  9419. _iframe = _formdiv.querySelector('iframe')
  9420. let onloadListener = _iframe.onload = () => {
  9421. _iframe.contentWindow.document.body.appendChild(script1);
  9422. _iframe.contentWindow.document.body.appendChild(script2);
  9423. _iframe.contentWindow.document.body.appendChild(script4);
  9424. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9425. };
  9426. // if (onloadListener) {
  9427. // try {
  9428. // _iframe.src += "?cocorobo="+new Date().getTime()
  9429. // _iframe.contentWindow.document.location.reload()
  9430. // } catch (error) {
  9431. // }
  9432. // } else {
  9433. // _iframe.contentDocument.location.reload()
  9434. // }
  9435. } else {
  9436. _iframe.onload = () => {
  9437. _iframe.contentWindow.document.body.appendChild(script1);
  9438. _iframe.contentWindow.document.body.appendChild(script2);
  9439. // _iframe.contentWindow.document.body.appendChild(script3);
  9440. _iframe.contentWindow.document.body.appendChild(script4);
  9441. };
  9442. }
  9443. _jie.onclick = async () => {
  9444. let text = ''
  9445. if (aTool == 1) {
  9446. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9447. } else if (aTool == 6) {
  9448. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9449. } else if (aTool == 3) {
  9450. text = await U.MD.D.I.getEditorContent(_iframe);
  9451. }
  9452. _loading.style.display = 'flex'
  9453. console.log(_loading);
  9454. var _ajs = _iframe.contentWindow.document.createElement("script");
  9455. _ajs.type = "text/javascript";
  9456. _ajs.innerHTML =
  9457. // 'console.log(' + _loading + ');\n' +
  9458. 'var _js = document.createElement("script");\n' +
  9459. '_js.type="text/javascript";\n' +
  9460. '_js.charset="UTF-8";\n' +
  9461. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9462. "_js.onload = function(){\n" +
  9463. ' var a = document.getElementsByTagName("img")\n' +
  9464. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9465. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9466. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9467. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9468. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9469. "beforeUpload_shishi(file," +
  9470. "'" +
  9471. _userid +
  9472. "'" +
  9473. ", " +
  9474. "'" +
  9475. _cid +
  9476. "'" +
  9477. ", " +
  9478. "'" +
  9479. _stage +
  9480. "'" +
  9481. ", " +
  9482. "'" +
  9483. _task +
  9484. "'" +
  9485. ", " +
  9486. "'" +
  9487. _tool +
  9488. "'" +
  9489. ", " +
  9490. "'" +
  9491. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9492. "'" +
  9493. ", " +
  9494. "'" +
  9495. aTool +
  9496. "'" +
  9497. ", " +
  9498. "`" +
  9499. text +
  9500. "`" +
  9501. ")\n" +
  9502. " });\n" +
  9503. "}\n" +
  9504. "document.head.appendChild(_js);\n";
  9505. _iframe.contentWindow.document.head.appendChild(_ajs);
  9506. }
  9507. }
  9508. }
  9509. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9510. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9511. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9512. _userid = student.userid, //登錄用戶id
  9513. _username = student.student //用戶名字
  9514. let _iframe;
  9515. let _cid = cid,
  9516. _stage = stage,
  9517. _task = task,
  9518. _tool = tool;
  9519. var _jie = $$("div", {
  9520. "style": {
  9521. "position": "absolute",
  9522. "bottom": "50px",
  9523. "right": "50px",
  9524. "zIndex": "9999",
  9525. "backgroundColor": "#2268bc",
  9526. "color": "#fff",
  9527. "padding": "12px 20px",
  9528. "cursor": "pointer",
  9529. "borderRadius": "4px",
  9530. },
  9531. "innerHTML": "提交作業"
  9532. })
  9533. let aTool = ''
  9534. let _loading = document.createElement('div')
  9535. _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;"
  9536. // _loading.id = "";
  9537. let _lchild = document.createElement('div')
  9538. let _limg = document.createElement('img')
  9539. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9540. _limg.style = "width: 26px;margin-right: 10px;"
  9541. _lchild.appendChild(_limg)
  9542. let _lspan = document.createElement('span')
  9543. _lspan.innerHTML = "上傳中..."
  9544. _lchild.appendChild(_lspan)
  9545. _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%);"
  9546. _loading.appendChild(_lchild)
  9547. var _box = $$('div', {
  9548. "style": {
  9549. "position": "relative",
  9550. "width": "100%",
  9551. "height": "100%",
  9552. },
  9553. })
  9554. _box.appendChild(_loading)
  9555. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9556. switch (str) {
  9557. case "whiteboard":
  9558. aTool = 1;
  9559. _iframe = $$("iframe", {
  9560. "frameborder": "no",
  9561. "border": "0",
  9562. "scrolling ": "no",
  9563. "style": {
  9564. "cssText": "border:0;width:100%;height:100%"
  9565. },
  9566. "src": "https://iwb.cocorobo.hk/"
  9567. })
  9568. _box.appendChild(_iframe);
  9569. _box.appendChild(_jie);
  9570. _formdiv = new U.UF.UI.form(
  9571. "電子白闆-" + _username,
  9572. _box, {
  9573. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9574. "style": {
  9575. "width": "90%",
  9576. "height": "90%",
  9577. "overflow": 'hidden'
  9578. },
  9579. "onresize": function () { }
  9580. }, {
  9581. closecallback: function () { }
  9582. }, {
  9583. "style": {
  9584. "height": "36px"
  9585. }
  9586. }).form; //創建窗體
  9587. _taskbar = {
  9588. "id": str + _formdiv.id,
  9589. "style": {
  9590. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9591. },
  9592. "name": "電子白闆",
  9593. "forms": _formdiv,
  9594. "click": function () {
  9595. U.MD.D.I.openApplication(str, obj, info);
  9596. }
  9597. }
  9598. break;
  9599. case "mind":
  9600. aTool = 3;
  9601. _iframe = $$("iframe", {
  9602. "frameborder": "no",
  9603. "border": "0",
  9604. "scrolling ": "no",
  9605. "style": {
  9606. "cssText": "border:0;width:100%;height:100%"
  9607. },
  9608. "src": "/kityminder-editor/dist/index.html"
  9609. })
  9610. _box.appendChild(_iframe);
  9611. _box.appendChild(_jie);
  9612. _formdiv = new U.UF.UI.form(
  9613. "思維導圖-" + _username,
  9614. _box, { //"/jsmind/example/demo.html"
  9615. "id": "mind" + cid + stage + task + tool + _userid,
  9616. "style": {
  9617. "width": "90%",
  9618. "height": "90%",
  9619. "overflow": 'hidden'
  9620. },
  9621. "onresize": function () { }
  9622. }, {
  9623. closecallback: function () { }
  9624. }, {
  9625. "style": {
  9626. "height": "36px"
  9627. }
  9628. }).form; //創建窗體
  9629. _taskbar = {
  9630. "id": str + _formdiv.id,
  9631. "style": {
  9632. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9633. },
  9634. "name": "思維導圖",
  9635. "forms": _formdiv,
  9636. "click": function () {
  9637. U.MD.D.I.openApplication(str, obj, info);
  9638. }
  9639. }
  9640. break;
  9641. case "MindMap":
  9642. aTool = 3;
  9643. _iframe = $$("iframe", {
  9644. "frameborder": "no",
  9645. "border": "0",
  9646. "scrolling ": "no",
  9647. "style": {
  9648. "cssText": "border:0;width:100%;height:100%"
  9649. },
  9650. "src": "//cloud.cocorobo.hk/mind/"
  9651. })
  9652. _box.appendChild(_iframe);
  9653. _box.appendChild(_jie);
  9654. _formdiv = new U.UF.UI.form(
  9655. "思維導圖-" + _username,
  9656. _box, { //"/jsmind/example/demo.html"
  9657. "id": "mind" + cid + stage + task + tool + _userid,
  9658. "style": {
  9659. "width": "90%",
  9660. "height": "90%",
  9661. "overflow": 'hidden'
  9662. },
  9663. "onresize": function () { }
  9664. }, {
  9665. closecallback: function () { }
  9666. }, {
  9667. "style": {
  9668. "height": "36px"
  9669. }
  9670. }).form; //創建窗體
  9671. _taskbar = {
  9672. "id": str + _formdiv.id,
  9673. "style": {
  9674. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9675. },
  9676. "name": "思維導圖",
  9677. "forms": _formdiv,
  9678. "click": function () {
  9679. U.MD.D.I.openApplication(str, obj, info);
  9680. }
  9681. }
  9682. break;
  9683. case "doc":
  9684. aTool = 6;
  9685. _iframe = $$("iframe", {
  9686. "frameborder": "no",
  9687. "border": "0",
  9688. "scrolling ": "no",
  9689. "style": {
  9690. "cssText": "border:0;width:100%;height:100%"
  9691. },
  9692. "src": "/Office/Word/WordEditArea.htm"
  9693. })
  9694. _box.appendChild(_iframe);
  9695. _box.appendChild(_jie);
  9696. _formdiv = new U.UF.UI.form(
  9697. "協同文檔-" + _username,
  9698. _box, {
  9699. "id": "doc" + cid + stage + task + tool + _userid,
  9700. "style": {
  9701. "width": "90%",
  9702. "height": "90%",
  9703. "overflow": 'hidden'
  9704. },
  9705. "onresize": function () { }
  9706. }, {
  9707. closecallback: function () { }
  9708. }, {
  9709. "style": {
  9710. "height": "36px"
  9711. }
  9712. }).form; //創建窗體
  9713. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9714. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9715. })
  9716. _taskbar = {
  9717. "id": str + _formdiv.id,
  9718. "style": {
  9719. "backgroundImage": "url(/img/icon/doc.png)"
  9720. },
  9721. "name": "協同文檔",
  9722. "forms": _formdiv,
  9723. "click": function () {
  9724. U.MD.D.I.openApplication(str, obj, info);
  9725. }
  9726. }
  9727. break;
  9728. case "mindNetwork": //好友打開
  9729. aTool = 7;
  9730. _iframe = $$("iframe", {
  9731. "webkitallowfullscreen": "",
  9732. "mozallowfullscreen": "",
  9733. "allowfullscreen": "",
  9734. "frameborder": "no",
  9735. "border": "0",
  9736. "scrolling ": "no",
  9737. "style": {
  9738. "cssText": "border:0; width:100%; height:100%;"
  9739. },
  9740. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9741. })
  9742. _box.appendChild(_iframe);
  9743. _box.appendChild(_jie);
  9744. _formdiv = new U.UF.UI.form(
  9745. "思維網格-" + _username,
  9746. _box, {
  9747. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9748. "style": {
  9749. "width": "90%",
  9750. "height": "90%",
  9751. "overflow": 'hidden'
  9752. },
  9753. "onresize": function () { }
  9754. }, {
  9755. closecallback: function () { }
  9756. }, {
  9757. "style": {
  9758. "height": "36px"
  9759. }
  9760. }).form; //創建窗體
  9761. _taskbar = {
  9762. "id": str + _formdiv.id,
  9763. "style": {
  9764. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9765. },
  9766. "name": "思維網格",
  9767. "forms": _formdiv,
  9768. "click": function () {
  9769. U.MD.D.I.openApplication(str, obj, info);
  9770. }
  9771. }
  9772. break;
  9773. case "courseDesign":
  9774. _iframe = $$("iframe", {
  9775. "webkitallowfullscreen": "",
  9776. "mozallowfullscreen": "",
  9777. "allowfullscreen": "",
  9778. "frameborder": "no",
  9779. "border": "0",
  9780. "scrolling ": "no",
  9781. "style": {
  9782. "cssText": "border:0; width:100%; height:100%;"
  9783. },
  9784. "src": "/course-design-vue"
  9785. })
  9786. _box.appendChild(_iframe);
  9787. _box.appendChild(_jie);
  9788. _formdiv = new U.UF.UI.form(
  9789. "項目設計-" + _username,
  9790. _box, {
  9791. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9792. "style": {
  9793. "width": "90%",
  9794. "height": "90%",
  9795. "overflow": 'hidden'
  9796. },
  9797. "onresize": function () { }
  9798. }, {
  9799. closecallback: function () { }
  9800. }, {
  9801. "style": {
  9802. "height": "36px"
  9803. }
  9804. }).form; //創建窗體
  9805. _taskbar = {
  9806. "id": str + _formdiv.id,
  9807. "style": {
  9808. "backgroundImage": "url(/img/icon/courseDesign.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/jietu2.js";
  9833. script4.src = window.origin + "/js/Common/jietu2E.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);
  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 == 'courseDesign') {
  9850. U.UF.DL.iframeLoad(_iframe, function () {
  9851. // _iframe.contentWindow.U.MD.O.W.load();
  9852. // _iframe.contentWindow.document.body.appendChild(script1);
  9853. _iframe.contentWindow.document.body.appendChild(script2);
  9854. _iframe.contentWindow.document.body.appendChild(script4);
  9855. })
  9856. } else if (str == 'mind') {
  9857. _iframe = _formdiv.querySelector('iframe')
  9858. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9859. //
  9860. _iframe.contentWindow.document.body.appendChild(script1);
  9861. _iframe.contentWindow.document.body.appendChild(script2);
  9862. _iframe.contentWindow.document.body.appendChild(script4);
  9863. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9864. })
  9865. if (onloadListener) {
  9866. _iframe.contentDocument.location.reload()
  9867. } else {
  9868. _iframe.contentDocument.location.reload()
  9869. }
  9870. } else if (str == 'whiteboard') {
  9871. _iframe = _formdiv.querySelector('iframe')
  9872. let onloadListener = _iframe.onload = () => {
  9873. _iframe.contentWindow.document.body.appendChild(script1);
  9874. _iframe.contentWindow.document.body.appendChild(script2);
  9875. _iframe.contentWindow.document.body.appendChild(script4);
  9876. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9877. };
  9878. // if (onloadListener) {
  9879. // try {
  9880. // _iframe.src += "?cocorobo="+new Date().getTime()
  9881. // _iframe.contentWindow.document.location.reload()
  9882. // } catch (error) {
  9883. // }
  9884. // } else {
  9885. // _iframe.contentDocument.location.reload()
  9886. // }
  9887. } else {
  9888. _iframe.onload = () => {
  9889. _iframe.contentWindow.document.body.appendChild(script1);
  9890. _iframe.contentWindow.document.body.appendChild(script2);
  9891. // _iframe.contentWindow.document.body.appendChild(script3);
  9892. _iframe.contentWindow.document.body.appendChild(script4);
  9893. };
  9894. }
  9895. _jie.onclick = async () => {
  9896. let text = ''
  9897. if (aTool == 1) {
  9898. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9899. } else if (aTool == 6) {
  9900. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9901. } else if (aTool == 3) {
  9902. text = await U.MD.D.I.getEditorContent(_iframe);
  9903. }
  9904. _loading.style.display = 'flex'
  9905. console.log(_loading);
  9906. var _ajs = _iframe.contentWindow.document.createElement("script");
  9907. _ajs.type = "text/javascript";
  9908. _ajs.innerHTML =
  9909. // 'console.log(' + _loading + ');\n' +
  9910. 'var _js = document.createElement("script");\n' +
  9911. '_js.type="text/javascript";\n' +
  9912. '_js.charset="UTF-8";\n' +
  9913. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9914. "_js.onload = function(){\n" +
  9915. ' var a = document.getElementsByTagName("img")\n' +
  9916. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9917. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9918. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9919. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9920. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9921. "beforeUpload_shishi(file," +
  9922. "'" +
  9923. _userid +
  9924. "'" +
  9925. ", " +
  9926. "'" +
  9927. _cid +
  9928. "'" +
  9929. ", " +
  9930. "'" +
  9931. _stage +
  9932. "'" +
  9933. ", " +
  9934. "'" +
  9935. _task +
  9936. "'" +
  9937. ", " +
  9938. "'" +
  9939. _tool +
  9940. "'" +
  9941. ", " +
  9942. "'" +
  9943. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9944. "'" +
  9945. ", " +
  9946. "'" +
  9947. aTool +
  9948. "'" +
  9949. ", " +
  9950. "`" +
  9951. text +
  9952. "`" +
  9953. ")\n" +
  9954. " });\n" +
  9955. "}\n" +
  9956. "document.head.appendChild(_js);\n";
  9957. _iframe.contentWindow.document.head.appendChild(_ajs);
  9958. }
  9959. }
  9960. }
  9961. U.MD.D.I.getEditorContent = function (iframe) {
  9962. return new Promise((resolve, reject) => {
  9963. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9964. console.log(content);
  9965. resolve(content)
  9966. });
  9967. });
  9968. }
  9969. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9970. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9971. // if (res.value[0].length > 0) {
  9972. // // resolve(res.value[0][0].text);
  9973. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9974. // $(fileInput).val('');
  9975. // });
  9976. // }
  9977. // }, [], { "type": "GET", "withCredentials": true });
  9978. var xmlhttp;
  9979. var Mac, Sn, DeviceId
  9980. if (window.XMLHttpRequest) {
  9981. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9982. xmlhttp = new XMLHttpRequest();
  9983. }
  9984. else {
  9985. // IE6, IE5 瀏覽器執行代碼
  9986. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9987. }
  9988. xmlhttp.onreadystatechange = function () {
  9989. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9990. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9991. // resolve(res.value[0][0].text);
  9992. if (type == '2') {
  9993. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9994. } else if (type == '3') {
  9995. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9996. }
  9997. } else {
  9998. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9999. }
  10000. }
  10001. }
  10002. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10003. xmlhttp.send();
  10004. }
  10005. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  10006. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10007. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10008. _userinfo = US.userInfo, //登錄用戶信息
  10009. _userid = US.userInfo.userid //登錄用戶id
  10010. let _iframe;
  10011. let _cid = cid,
  10012. _stage = stage,
  10013. _task = task,
  10014. _tool = tool;
  10015. var _jie = $$("div", {
  10016. "style": {
  10017. "position": "absolute",
  10018. "bottom": "50px",
  10019. "right": "50px",
  10020. "zIndex": "9999",
  10021. "backgroundColor": "#2268bc",
  10022. "color": "#fff",
  10023. "padding": "12px 20px",
  10024. "cursor": "pointer",
  10025. "borderRadius": "4px",
  10026. },
  10027. "innerHTML": "確認並提交"
  10028. })
  10029. let aTool = ''
  10030. let _loading = document.createElement('div')
  10031. _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;"
  10032. // _loading.id = "";
  10033. let _lchild = document.createElement('div')
  10034. let _limg = document.createElement('img')
  10035. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10036. _limg.style = "width: 26px;margin-right: 10px;"
  10037. _lchild.appendChild(_limg)
  10038. let _lspan = document.createElement('span')
  10039. _lspan.innerHTML = "上傳中..."
  10040. _lchild.appendChild(_lspan)
  10041. _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%);"
  10042. _loading.appendChild(_lchild)
  10043. var _box = $$('div', {
  10044. "style": {
  10045. "position": "relative",
  10046. "width": "100%",
  10047. "height": "100%",
  10048. },
  10049. })
  10050. _box.appendChild(_loading)
  10051. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  10052. switch (str) {
  10053. case "whiteboard":
  10054. aTool = 1;
  10055. _iframe = $$("iframe", {
  10056. "frameborder": "no",
  10057. "border": "0",
  10058. "scrolling ": "no",
  10059. "style": {
  10060. "cssText": "border:0;width:100%;height:100%"
  10061. },
  10062. "src": "https://iwb.cocorobo.hk/"
  10063. })
  10064. _box.appendChild(_iframe);
  10065. _box.appendChild(_jie);
  10066. _formdiv = new U.UF.UI.form(
  10067. "電子白闆",
  10068. _box, {
  10069. "id": "whiteboards" + cid + stage + task + tool,
  10070. "style": {
  10071. "width": "90%",
  10072. "height": "90%",
  10073. "overflow": 'hidden'
  10074. },
  10075. "onresize": function () { }
  10076. }, {
  10077. closecallback: function () { }
  10078. }, {
  10079. "style": {
  10080. "height": "36px"
  10081. }
  10082. }).form; //創建窗體
  10083. _taskbar = {
  10084. "id": str + _formdiv.id,
  10085. "style": {
  10086. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10087. },
  10088. "name": "電子白闆",
  10089. "forms": _formdiv,
  10090. "click": function () {
  10091. U.MD.D.I.openApplication(str, obj, info);
  10092. }
  10093. }
  10094. break;
  10095. case "mind":
  10096. aTool = 3;
  10097. _iframe = $$("iframe", {
  10098. "frameborder": "no",
  10099. "border": "0",
  10100. "scrolling ": "no",
  10101. "style": {
  10102. "cssText": "border:0;width:100%;height:100%"
  10103. },
  10104. "src": "/kityminder-editor/dist/index.html"
  10105. });
  10106. _box.appendChild(_iframe);
  10107. _box.appendChild(_jie);
  10108. _formdiv = new U.UF.UI.form(
  10109. "思維導圖",
  10110. _box, { //"/jsmind/example/demo.html"
  10111. "id": "minds" + cid + stage + task + tool,
  10112. "style": {
  10113. "width": "90%",
  10114. "height": "90%",
  10115. "overflow": 'hidden'
  10116. },
  10117. "onresize": function () { }
  10118. }, {
  10119. closecallback: function () { }
  10120. }, {
  10121. "style": {
  10122. "height": "36px"
  10123. }
  10124. }).form; //創建窗體
  10125. _taskbar = {
  10126. "id": str + _formdiv.id,
  10127. "style": {
  10128. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10129. },
  10130. "name": "思維導圖",
  10131. "forms": _formdiv,
  10132. "click": function () {
  10133. U.MD.D.I.openApplication(str, obj, info);
  10134. }
  10135. }
  10136. break;
  10137. case "doc":
  10138. aTool = 6;
  10139. _iframe = $$("iframe", {
  10140. "frameborder": "no",
  10141. "border": "0",
  10142. "scrolling ": "no",
  10143. "style": {
  10144. "cssText": "border:0;width:100%;height:100%"
  10145. },
  10146. "src": "/Office/Word/WordEditArea.htm"
  10147. })
  10148. _box.appendChild(_iframe);
  10149. _box.appendChild(_jie);
  10150. _formdiv = new U.UF.UI.form(
  10151. "協同文檔",
  10152. _box, {
  10153. "id": "docs" + cid + stage + task + tool,
  10154. "style": {
  10155. "width": "90%",
  10156. "height": "90%",
  10157. "overflow": 'hidden'
  10158. },
  10159. "onresize": function () { }
  10160. }, {
  10161. closecallback: function () { }
  10162. }, {
  10163. "style": {
  10164. "height": "36px"
  10165. }
  10166. }).form; //創建窗體
  10167. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10168. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10169. })
  10170. _taskbar = {
  10171. "id": str + _formdiv.id,
  10172. "style": {
  10173. "backgroundImage": "url(/img/icon/doc.png)"
  10174. },
  10175. "name": "協同文檔",
  10176. "forms": _formdiv,
  10177. "click": function () {
  10178. U.MD.D.I.openApplication(str, obj, info);
  10179. }
  10180. }
  10181. break;
  10182. }
  10183. const script1 = document.createElement("script");
  10184. script1.type = "text/javascript";
  10185. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10186. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  10187. const script2 = document.createElement("script");
  10188. script2.type = "text/javascript";
  10189. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10190. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  10191. const script3 = document.createElement("script");
  10192. script3.type = "text/javascript";
  10193. script3.charset = "UTF-8";
  10194. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  10195. const script4 = document.createElement("script");
  10196. script4.type = "text/javascript";
  10197. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10198. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  10199. if (_iframe) {
  10200. if (str == 'doc') {
  10201. _iframe = _formdiv.querySelector('iframe')
  10202. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10203. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10204. _iframe.contentWindow.document.body.appendChild(script1);
  10205. _iframe.contentWindow.document.body.appendChild(script2);
  10206. // _iframe.contentWindow.document.body.appendChild(script3);
  10207. _iframe.contentWindow.document.body.appendChild(script4);
  10208. })
  10209. if (onloadListener) {
  10210. _iframe.contentDocument.location.reload()
  10211. } else {
  10212. _iframe.contentDocument.location.reload()
  10213. }
  10214. } else if (str == 'mind') {
  10215. _iframe = _formdiv.querySelector('iframe')
  10216. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10217. _iframe.contentWindow.document.body.appendChild(script1);
  10218. _iframe.contentWindow.document.body.appendChild(script2);
  10219. _iframe.contentWindow.document.body.appendChild(script4);
  10220. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10221. })
  10222. if (onloadListener) {
  10223. _iframe.contentDocument.location.reload()
  10224. } else {
  10225. _iframe.contentDocument.location.reload()
  10226. }
  10227. } else {
  10228. _iframe.onload = () => {
  10229. _iframe.contentWindow.document.body.appendChild(script1);
  10230. _iframe.contentWindow.document.body.appendChild(script2);
  10231. // _iframe.contentWindow.document.body.appendChild(script3);
  10232. _iframe.contentWindow.document.body.appendChild(script4);
  10233. };
  10234. }
  10235. _jie.onclick = async () => {
  10236. let text = ''
  10237. if (aTool == 6) {
  10238. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10239. } else if (aTool == 3) {
  10240. text = await U.MD.D.I.getEditorContent(_iframe);
  10241. }
  10242. _loading.style.display = 'flex'
  10243. console.log(_loading);
  10244. var _ajs = _iframe.contentWindow.document.createElement("script");
  10245. _ajs.type = "text/javascript";
  10246. _ajs.innerHTML =
  10247. // 'console.log(' + _loading + ');\n' +
  10248. 'var _js = document.createElement("script");\n' +
  10249. '_js.type="text/javascript";\n' +
  10250. '_js.charset="UTF-8";\n' +
  10251. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  10252. "_js.onload = function(){\n" +
  10253. ' var a = document.getElementsByTagName("img")\n' +
  10254. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10255. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10256. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10257. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10258. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  10259. "beforeUpload_shishi(file," +
  10260. "'" +
  10261. _userid +
  10262. "'" +
  10263. ", " +
  10264. "'" +
  10265. _cid +
  10266. "'" +
  10267. ", " +
  10268. "'" +
  10269. _stage +
  10270. "'" +
  10271. ", " +
  10272. "'" +
  10273. _task +
  10274. "'" +
  10275. ", " +
  10276. "'" +
  10277. _tool +
  10278. "'" +
  10279. ", " +
  10280. "'" +
  10281. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10282. "'" +
  10283. ", " +
  10284. "'" +
  10285. aTool +
  10286. "'" +
  10287. ", " +
  10288. "`" +
  10289. text +
  10290. "`" +
  10291. ")\n" +
  10292. " });\n" +
  10293. "}\n" +
  10294. "document.head.appendChild(_js);\n";
  10295. _iframe.contentWindow.document.head.appendChild(_ajs);
  10296. }
  10297. }
  10298. //U.MD.D.I.openClick(str);
  10299. //如果有任務欄信息
  10300. // if (_taskbar) {
  10301. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10302. // }
  10303. }
  10304. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10305. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10306. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10307. _userinfo = US.userInfo, //登錄用戶信息
  10308. _userid = US.userInfo.userid //登錄用戶id
  10309. let _iframe;
  10310. let _cid = cid,
  10311. _stage = stage,
  10312. _task = task,
  10313. _tool = tool;
  10314. var _jie = $$("div", {
  10315. "style": {
  10316. "position": "absolute",
  10317. "bottom": "50px",
  10318. "right": "50px",
  10319. "zIndex": "9999",
  10320. "backgroundColor": "#2268bc",
  10321. "color": "#fff",
  10322. "padding": "12px 20px",
  10323. "cursor": "pointer",
  10324. "borderRadius": "4px",
  10325. },
  10326. "innerHTML": "確認並提交"
  10327. })
  10328. let aTool = ''
  10329. let _loading = document.createElement('div')
  10330. _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;"
  10331. // _loading.id = "";
  10332. let _lchild = document.createElement('div')
  10333. let _limg = document.createElement('img')
  10334. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10335. _limg.style = "width: 26px;margin-right: 10px;"
  10336. _lchild.appendChild(_limg)
  10337. let _lspan = document.createElement('span')
  10338. _lspan.innerHTML = "上傳中..."
  10339. _lchild.appendChild(_lspan)
  10340. _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%);"
  10341. _loading.appendChild(_lchild)
  10342. var _box = $$('div', {
  10343. "style": {
  10344. "position": "relative",
  10345. "width": "100%",
  10346. "height": "100%",
  10347. },
  10348. })
  10349. _box.appendChild(_loading)
  10350. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10351. switch (str) {
  10352. case "whiteboard":
  10353. aTool = 1;
  10354. _iframe = $$("iframe", {
  10355. "frameborder": "no",
  10356. "border": "0",
  10357. "scrolling ": "no",
  10358. "style": {
  10359. "cssText": "border:0;width:100%;height:100%"
  10360. },
  10361. "src": "https://iwb.cocorobo.hk/"
  10362. })
  10363. _box.appendChild(_iframe);
  10364. _box.appendChild(_jie);
  10365. _formdiv = new U.UF.UI.form(
  10366. "電子白闆",
  10367. _box, {
  10368. "id": "whiteboards" + cid + stage + task + tool,
  10369. "style": {
  10370. "width": "90%",
  10371. "height": "90%",
  10372. "overflow": 'hidden'
  10373. },
  10374. "onresize": function () { }
  10375. }, {
  10376. closecallback: function () { }
  10377. }, {
  10378. "style": {
  10379. "height": "36px"
  10380. }
  10381. }).form; //創建窗體
  10382. _taskbar = {
  10383. "id": str + _formdiv.id,
  10384. "style": {
  10385. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10386. },
  10387. "name": "電子白闆",
  10388. "forms": _formdiv,
  10389. "click": function () {
  10390. U.MD.D.I.openApplication(str, obj, info);
  10391. }
  10392. }
  10393. break;
  10394. case "mind":
  10395. aTool = 3;
  10396. _iframe = $$("iframe", {
  10397. "frameborder": "no",
  10398. "border": "0",
  10399. "scrolling ": "no",
  10400. "style": {
  10401. "cssText": "border:0;width:100%;height:100%"
  10402. },
  10403. "src": "/kityminder-editor/dist/index.html"
  10404. });
  10405. _box.appendChild(_iframe);
  10406. _box.appendChild(_jie);
  10407. _formdiv = new U.UF.UI.form(
  10408. "思維導圖",
  10409. _box, { //"/jsmind/example/demo.html"
  10410. "id": "minds" + cid + stage + task + tool,
  10411. "style": {
  10412. "width": "90%",
  10413. "height": "90%",
  10414. "overflow": 'hidden'
  10415. },
  10416. "onresize": function () { }
  10417. }, {
  10418. closecallback: function () { }
  10419. }, {
  10420. "style": {
  10421. "height": "36px"
  10422. }
  10423. }).form; //創建窗體
  10424. _taskbar = {
  10425. "id": str + _formdiv.id,
  10426. "style": {
  10427. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10428. },
  10429. "name": "思維導圖",
  10430. "forms": _formdiv,
  10431. "click": function () {
  10432. U.MD.D.I.openApplication(str, obj, info);
  10433. }
  10434. }
  10435. break;
  10436. case "doc":
  10437. aTool = 6;
  10438. _iframe = $$("iframe", {
  10439. "frameborder": "no",
  10440. "border": "0",
  10441. "scrolling ": "no",
  10442. "style": {
  10443. "cssText": "border:0;width:100%;height:100%"
  10444. },
  10445. "src": "/Office/Word/WordEditArea.htm"
  10446. })
  10447. _box.appendChild(_iframe);
  10448. _box.appendChild(_jie);
  10449. _formdiv = new U.UF.UI.form(
  10450. "協同文檔",
  10451. _box, {
  10452. "id": "docs" + cid + stage + task + tool,
  10453. "style": {
  10454. "width": "90%",
  10455. "height": "90%",
  10456. "overflow": 'hidden'
  10457. },
  10458. "onresize": function () { }
  10459. }, {
  10460. closecallback: function () { }
  10461. }, {
  10462. "style": {
  10463. "height": "36px"
  10464. }
  10465. }).form; //創建窗體
  10466. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10467. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10468. })
  10469. _taskbar = {
  10470. "id": str + _formdiv.id,
  10471. "style": {
  10472. "backgroundImage": "url(/img/icon/doc.png)"
  10473. },
  10474. "name": "協同文檔",
  10475. "forms": _formdiv,
  10476. "click": function () {
  10477. U.MD.D.I.openApplication(str, obj, info);
  10478. }
  10479. }
  10480. break;
  10481. }
  10482. const script1 = document.createElement("script");
  10483. script1.type = "text/javascript";
  10484. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10485. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  10486. const script2 = document.createElement("script");
  10487. script2.type = "text/javascript";
  10488. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10489. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  10490. const script3 = document.createElement("script");
  10491. script3.type = "text/javascript";
  10492. script3.charset = "UTF-8";
  10493. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  10494. const script4 = document.createElement("script");
  10495. script4.type = "text/javascript";
  10496. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10497. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  10498. if (_iframe) {
  10499. if (str == 'doc') {
  10500. _iframe = _formdiv.querySelector('iframe')
  10501. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10502. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10503. _iframe.contentWindow.document.body.appendChild(script1);
  10504. _iframe.contentWindow.document.body.appendChild(script2);
  10505. // _iframe.contentWindow.document.body.appendChild(script3);
  10506. _iframe.contentWindow.document.body.appendChild(script4);
  10507. })
  10508. if (onloadListener) {
  10509. _iframe.contentDocument.location.reload()
  10510. } else {
  10511. _iframe.contentDocument.location.reload()
  10512. }
  10513. } else if (str == 'mind') {
  10514. _iframe = _formdiv.querySelector('iframe')
  10515. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10516. _iframe.contentWindow.document.body.appendChild(script1);
  10517. _iframe.contentWindow.document.body.appendChild(script2);
  10518. _iframe.contentWindow.document.body.appendChild(script4);
  10519. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10520. })
  10521. if (onloadListener) {
  10522. _iframe.contentDocument.location.reload()
  10523. } else {
  10524. _iframe.contentDocument.location.reload()
  10525. }
  10526. } else {
  10527. _iframe.onload = () => {
  10528. _iframe.contentWindow.document.body.appendChild(script1);
  10529. _iframe.contentWindow.document.body.appendChild(script2);
  10530. // _iframe.contentWindow.document.body.appendChild(script3);
  10531. _iframe.contentWindow.document.body.appendChild(script4);
  10532. };
  10533. }
  10534. _jie.onclick = async () => {
  10535. let text = ''
  10536. if (aTool == 6) {
  10537. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10538. } else if (aTool == 3) {
  10539. text = await U.MD.D.I.getEditorContent(_iframe);
  10540. }
  10541. _loading.style.display = 'flex'
  10542. console.log(_loading);
  10543. var _ajs = _iframe.contentWindow.document.createElement("script");
  10544. _ajs.type = "text/javascript";
  10545. _ajs.innerHTML =
  10546. // 'console.log(' + _loading + ');\n' +
  10547. 'var _js = document.createElement("script");\n' +
  10548. '_js.type="text/javascript";\n' +
  10549. '_js.charset="UTF-8";\n' +
  10550. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  10551. "_js.onload = function(){\n" +
  10552. ' var a = document.getElementsByTagName("img")\n' +
  10553. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10554. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10555. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10556. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10557. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  10558. "beforeUpload_shishi(file," +
  10559. "'" +
  10560. _userid +
  10561. "'" +
  10562. ", " +
  10563. "'" +
  10564. _cid +
  10565. "'" +
  10566. ", " +
  10567. "'" +
  10568. _stage +
  10569. "'" +
  10570. ", " +
  10571. "'" +
  10572. _task +
  10573. "'" +
  10574. ", " +
  10575. "'" +
  10576. _tool +
  10577. "'" +
  10578. ", " +
  10579. "'" +
  10580. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10581. "'" +
  10582. ", " +
  10583. "'" +
  10584. aTool +
  10585. "'" +
  10586. ", " +
  10587. "`" +
  10588. text +
  10589. "`" +
  10590. ")\n" +
  10591. " });\n" +
  10592. "}\n" +
  10593. "document.head.appendChild(_js);\n";
  10594. _iframe.contentWindow.document.head.appendChild(_ajs);
  10595. }
  10596. }
  10597. //U.MD.D.I.openClick(str);
  10598. //如果有任務欄信息
  10599. // if (_taskbar) {
  10600. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10601. // }
  10602. }
  10603. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10604. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10605. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10606. _userinfo = US.userInfo, //登錄用戶信息
  10607. _userid = US.userInfo.userid //登錄用戶id
  10608. let _iframe;
  10609. let _cid = cid,
  10610. _stage = stage,
  10611. _task = task,
  10612. _tool = tool;
  10613. var _jie = $$("div", {
  10614. "style": {
  10615. "position": "absolute",
  10616. "bottom": "50px",
  10617. "right": "50px",
  10618. "zIndex": "9999",
  10619. "backgroundColor": "#2268bc",
  10620. "color": "#fff",
  10621. "padding": "12px 20px",
  10622. "cursor": "pointer",
  10623. "borderRadius": "4px",
  10624. },
  10625. "innerHTML": "上傳模闆"
  10626. })
  10627. let aTool = ''
  10628. let _loading = document.createElement('div')
  10629. _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;"
  10630. // _loading.id = "";
  10631. let _lchild = document.createElement('div')
  10632. let _limg = document.createElement('img')
  10633. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10634. _limg.style = "width: 26px;margin-right: 10px;"
  10635. _lchild.appendChild(_limg)
  10636. let _lspan = document.createElement('span')
  10637. _lspan.innerHTML = "上傳中..."
  10638. _lchild.appendChild(_lspan)
  10639. _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%);"
  10640. _loading.appendChild(_lchild)
  10641. var _box = $$('div', {
  10642. "style": {
  10643. "position": "relative",
  10644. "width": "100%",
  10645. "height": "100%",
  10646. },
  10647. })
  10648. _box.appendChild(_loading)
  10649. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10650. switch (str) {
  10651. case "whiteboard":
  10652. aTool = 1;
  10653. _iframe = $$("iframe", {
  10654. "frameborder": "no",
  10655. "border": "0",
  10656. "scrolling ": "no",
  10657. "style": {
  10658. "cssText": "border:0;width:100%;height:100%"
  10659. },
  10660. "src": "https://iwb.cocorobo.hk/"
  10661. })
  10662. _box.appendChild(_iframe);
  10663. _box.appendChild(_jie);
  10664. _formdiv = new U.UF.UI.form(
  10665. "電子白闆",
  10666. _box, {
  10667. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10668. "style": {
  10669. "width": "90%",
  10670. "height": "90%",
  10671. "overflow": 'hidden'
  10672. },
  10673. "onresize": function () { }
  10674. }, {
  10675. closecallback: function () { }
  10676. }, {
  10677. "style": {
  10678. "height": "36px"
  10679. }
  10680. }).form; //創建窗體
  10681. _taskbar = {
  10682. "id": str + _formdiv.id,
  10683. "style": {
  10684. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10685. },
  10686. "name": "電子白闆",
  10687. "forms": _formdiv,
  10688. "click": function () {
  10689. U.MD.D.I.openApplication(str, obj, info);
  10690. }
  10691. }
  10692. break;
  10693. case "mind":
  10694. aTool = 3;
  10695. _iframe = $$("iframe", {
  10696. "frameborder": "no",
  10697. "border": "0",
  10698. "scrolling ": "no",
  10699. "style": {
  10700. "cssText": "border:0;width:100%;height:100%"
  10701. },
  10702. "src": "/kityminder-editor/dist/index.html"
  10703. });
  10704. _box.appendChild(_iframe);
  10705. _box.appendChild(_jie);
  10706. _formdiv = new U.UF.UI.form(
  10707. "思維導圖",
  10708. _box, { //"/jsmind/example/demo.html"
  10709. "id": "minds_Yu" + cid + stage + task + tool,
  10710. "style": {
  10711. "width": "90%",
  10712. "height": "90%",
  10713. "overflow": 'hidden'
  10714. },
  10715. "onresize": function () { }
  10716. }, {
  10717. closecallback: function () { }
  10718. }, {
  10719. "style": {
  10720. "height": "36px"
  10721. }
  10722. }).form; //創建窗體
  10723. _taskbar = {
  10724. "id": str + _formdiv.id,
  10725. "style": {
  10726. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10727. },
  10728. "name": "思維導圖",
  10729. "forms": _formdiv,
  10730. "click": function () {
  10731. U.MD.D.I.openApplication(str, obj, info);
  10732. }
  10733. }
  10734. break;
  10735. case "doc":
  10736. aTool = 6;
  10737. _iframe = $$("iframe", {
  10738. "frameborder": "no",
  10739. "border": "0",
  10740. "scrolling ": "no",
  10741. "style": {
  10742. "cssText": "border:0;width:100%;height:100%"
  10743. },
  10744. "src": "/Office/Word/WordEditArea.htm"
  10745. })
  10746. _box.appendChild(_iframe);
  10747. _box.appendChild(_jie);
  10748. _formdiv = new U.UF.UI.form(
  10749. "協同文檔",
  10750. _box, {
  10751. "id": "docs_Yu" + cid + stage + task + tool,
  10752. "style": {
  10753. "width": "90%",
  10754. "height": "90%",
  10755. "overflow": 'hidden'
  10756. },
  10757. "onresize": function () { }
  10758. }, {
  10759. closecallback: function () { }
  10760. }, {
  10761. "style": {
  10762. "height": "36px"
  10763. }
  10764. }).form; //創建窗體
  10765. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10766. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10767. })
  10768. _taskbar = {
  10769. "id": str + _formdiv.id,
  10770. "style": {
  10771. "backgroundImage": "url(/img/icon/doc.png)"
  10772. },
  10773. "name": "協同文檔",
  10774. "forms": _formdiv,
  10775. "click": function () {
  10776. U.MD.D.I.openApplication(str, obj, info);
  10777. }
  10778. }
  10779. break;
  10780. case "CocoPi":
  10781. aTool = 57;
  10782. _iframe = $$("iframe", {
  10783. "allowpaymentrequest": "allowpaymentrequest",
  10784. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  10785. "webkitallowfullscreen": "",
  10786. "mozallowfullscreen": "",
  10787. "frameborder": "no",
  10788. "border": "0",
  10789. "scrolling ": "no",
  10790. "style": {
  10791. "cssText": "border:0;width:100%;height:100%"
  10792. },
  10793. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10794. })
  10795. _box.appendChild(_iframe);
  10796. _box.appendChild(_jie);
  10797. _formdiv = new U.UF.UI.form(
  10798. "CocoPi",
  10799. _box, {
  10800. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10801. "style": {
  10802. "width": "90%",
  10803. "height": "90%",
  10804. "overflow": 'hidden'
  10805. },
  10806. "onresize": function () { }
  10807. }, {
  10808. closecallback: function () { }
  10809. }, {
  10810. "style": {
  10811. "height": "36px"
  10812. }
  10813. }).form; //創建窗體
  10814. _taskbar = {
  10815. "id": str + _formdiv.id,
  10816. "style": {
  10817. "backgroundImage": "url(/img/icon/cocopi.png)"
  10818. },
  10819. "name": "CocoPi",
  10820. "forms": _formdiv,
  10821. "click": function () {
  10822. U.MD.D.I.openApplication(str, obj, info);
  10823. }
  10824. }
  10825. break;
  10826. case "ppt":
  10827. aTool = 73;
  10828. _iframe = $$("iframe", {
  10829. "frameborder": "no",
  10830. "border": "0",
  10831. "scrolling ": "no",
  10832. "style": {
  10833. "cssText": "border:0;width:100%;height:100%"
  10834. },
  10835. "src": "https://ppt.cocorobo.cn/"
  10836. });
  10837. _box.appendChild(_iframe);
  10838. _box.appendChild(_jie);
  10839. _formdiv = new U.UF.UI.form(
  10840. "PPT",
  10841. _box, { //"/jsmind/example/demo.html"
  10842. "id": "ppts_Yu" + cid + stage + task + tool,
  10843. "style": {
  10844. "width": "90%",
  10845. "height": "90%",
  10846. "overflow": 'hidden'
  10847. },
  10848. "onresize": function () { }
  10849. }, {
  10850. closecallback: function () { }
  10851. }, {
  10852. "style": {
  10853. "height": "36px"
  10854. }
  10855. }).form; //創建窗體
  10856. _taskbar = {
  10857. "id": str + _formdiv.id,
  10858. "style": {
  10859. "backgroundImage": "url(/img/icon/ppt.png)"
  10860. },
  10861. "name": "PPT",
  10862. "forms": _formdiv,
  10863. "click": function () {
  10864. U.MD.D.I.openApplication(str, obj, info);
  10865. }
  10866. }
  10867. break;
  10868. }
  10869. if (_iframe) {
  10870. if (str == 'doc') {
  10871. _iframe = _formdiv.querySelector('iframe')
  10872. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10873. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10874. })
  10875. if (onloadListener) {
  10876. _iframe.contentDocument.location.reload()
  10877. } else {
  10878. _iframe.contentDocument.location.reload()
  10879. }
  10880. } else if (str == 'mind') {
  10881. _iframe = _formdiv.querySelector('iframe')
  10882. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10883. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10884. })
  10885. if (onloadListener) {
  10886. _iframe.contentDocument.location.reload()
  10887. } else {
  10888. _iframe.contentDocument.location.reload()
  10889. }
  10890. } else if (str == 'whiteboard') {
  10891. _iframe = _formdiv.querySelector('iframe')
  10892. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10893. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10894. })
  10895. // if (onloadListener) {
  10896. // try {
  10897. // _iframe.src += "?cocorobo="+new Date().getTime()
  10898. // _iframe.contentWindow.document.location.reload()
  10899. // } catch (error) {
  10900. // }
  10901. // } else {
  10902. // _iframe.contentDocument.location.reload()
  10903. // }
  10904. } else if (str == 'CocoPi') {
  10905. _iframe = _formdiv.querySelector('iframe')
  10906. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10907. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10908. })
  10909. if (onloadListener) {
  10910. _iframe.contentDocument.location.reload()
  10911. } else {
  10912. _iframe.contentDocument.location.reload()
  10913. }
  10914. } else if (str == 'ppt') {
  10915. _iframe = _formdiv.querySelector('iframe')
  10916. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10917. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  10918. })
  10919. if (onloadListener) {
  10920. _iframe.contentDocument.location.reload()
  10921. } else {
  10922. _iframe.contentDocument.location.reload()
  10923. }
  10924. } else {
  10925. _iframe.onload = () => { };
  10926. }
  10927. _jie.onclick = async () => {
  10928. let text = ''
  10929. let type = '2'
  10930. if (aTool == 1) {
  10931. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10932. type = '3'
  10933. } else if (aTool == 6) {
  10934. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10935. type = '1'
  10936. } else if (aTool == 3) {
  10937. text = await U.MD.D.I.getEditorContent(_iframe);
  10938. type = '2'
  10939. } else if (aTool == 57) {
  10940. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10941. type = '4'
  10942. } else if (aTool == 73) {
  10943. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  10944. type = '5'
  10945. }
  10946. _loading.style.display = 'flex'
  10947. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10948. }
  10949. }
  10950. //U.MD.D.I.openClick(str);
  10951. //如果有任務欄信息
  10952. // if (_taskbar) {
  10953. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10954. // }
  10955. }
  10956. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10957. var xmlhttp;
  10958. var Mac, Sn, DeviceId
  10959. if (window.XMLHttpRequest) {
  10960. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10961. xmlhttp = new XMLHttpRequest();
  10962. }
  10963. else {
  10964. // IE6, IE5 瀏覽器執行代碼
  10965. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10966. }
  10967. xmlhttp.onreadystatechange = function () {
  10968. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10969. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10970. // resolve(res.value[0][0].text);
  10971. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10972. }
  10973. }
  10974. }
  10975. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10976. xmlhttp.send();
  10977. }
  10978. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10979. var xmlhttp;
  10980. var Mac, Sn, DeviceId
  10981. if (window.XMLHttpRequest) {
  10982. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10983. xmlhttp = new XMLHttpRequest();
  10984. }
  10985. else {
  10986. // IE6, IE5 瀏覽器執行代碼
  10987. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10988. }
  10989. xmlhttp.onreadystatechange = function () {
  10990. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10991. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10992. // resolve(res.value[0][0].text);
  10993. if (type == '2') {
  10994. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10995. } else if (type == '3') {
  10996. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10997. } else if (type == '4') {
  10998. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10999. } else if (type == '5') {
  11000. iframe.contentWindow.window.readJSON(decodeURIComponent(JSON.parse(xmlhttp.response)[0][0].text), true)
  11001. }
  11002. } else {
  11003. if (type == '2') {
  11004. iframe.contentWindow.editor.minder.importData('json', '')
  11005. } else if (type == '3') {
  11006. iframe.contentWindow.h.app.updateScene({ elements: [] })
  11007. } else if (type == '4') {
  11008. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11009. }
  11010. }
  11011. }
  11012. }
  11013. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11014. xmlhttp.send();
  11015. }
  11016. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  11017. var xmlhttp;
  11018. var Mac, Sn, DeviceId
  11019. if (window.XMLHttpRequest) {
  11020. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  11021. xmlhttp = new XMLHttpRequest();
  11022. }
  11023. else {
  11024. // IE6, IE5 瀏覽器執行代碼
  11025. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11026. }
  11027. xmlhttp.onreadystatechange = function () {
  11028. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11029. if (xmlhttp.response) {
  11030. // resolve(res.value[0][0].text);
  11031. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  11032. // $(fileInput).val('');
  11033. // });
  11034. span.innerHTML = '上傳成功'
  11035. setTimeout(() => {
  11036. loading.style.display = 'none'
  11037. }, 1000);
  11038. }
  11039. }
  11040. }
  11041. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  11042. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  11043. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  11044. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  11045. // 設置請求頭,錶示請求體的編碼格式
  11046. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  11047. // 設置請求體,使用url-encoded格式的數據
  11048. }
  11049. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  11050. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  11051. _formdiv, //創建任務欄時同時彈出的窗體元素。
  11052. _userinfo = US.userInfo, //登錄用戶信息
  11053. _userid = US.userInfo.userid //登錄用戶id
  11054. let _iframe;
  11055. let _cid = cid,
  11056. _stage = stage,
  11057. _task = task,
  11058. _tool = tool;
  11059. var _jie = $$("div", {
  11060. "style": {
  11061. "position": "absolute",
  11062. "bottom": "50px",
  11063. "right": "50px",
  11064. "zIndex": "9999",
  11065. "backgroundColor": "#2268bc",
  11066. "color": "#fff",
  11067. "padding": "12px 20px",
  11068. "cursor": "pointer",
  11069. "borderRadius": "4px",
  11070. },
  11071. "innerHTML": "提交作業"
  11072. })
  11073. let aTool = ''
  11074. let _loading = document.createElement('div')
  11075. _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;"
  11076. // _loading.id = "";
  11077. let _lchild = document.createElement('div')
  11078. let _limg = document.createElement('img')
  11079. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11080. _limg.style = "width: 26px;margin-right: 10px;"
  11081. _lchild.appendChild(_limg)
  11082. let _lspan = document.createElement('span')
  11083. _lspan.innerHTML = "上傳中..."
  11084. _lchild.appendChild(_lspan)
  11085. _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%);"
  11086. _loading.appendChild(_lchild)
  11087. var _box = $$('div', {
  11088. "style": {
  11089. "position": "relative",
  11090. "width": "100%",
  11091. "height": "100%",
  11092. },
  11093. })
  11094. _box.appendChild(_loading)
  11095. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11096. switch (str) {
  11097. case "CocoPi":
  11098. aTool = 57;
  11099. _iframe = $$("iframe", {
  11100. "allowpaymentrequest": "allowpaymentrequest",
  11101. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11102. "webkitallowfullscreen": "",
  11103. "mozallowfullscreen": "",
  11104. "frameborder": "no",
  11105. "border": "0",
  11106. "scrolling ": "no",
  11107. "style": {
  11108. "cssText": "border:0;width:100%;height:100%"
  11109. },
  11110. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  11111. })
  11112. _box.appendChild(_iframe);
  11113. _box.appendChild(_jie);
  11114. _formdiv = new U.UF.UI.form(
  11115. "CocoPi",
  11116. _box, {
  11117. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11118. "style": {
  11119. "width": "90%",
  11120. "height": "90%",
  11121. "overflow": 'hidden'
  11122. },
  11123. "onresize": function () { }
  11124. }, {
  11125. closecallback: function () { }
  11126. }, {
  11127. "style": {
  11128. "height": "36px"
  11129. }
  11130. }).form; //創建窗體
  11131. _taskbar = {
  11132. "id": str + _formdiv.id,
  11133. "style": {
  11134. "backgroundImage": "url(/img/icon/cocopi.png)"
  11135. },
  11136. "name": "CocoPi",
  11137. "forms": _formdiv,
  11138. "click": function () {
  11139. U.MD.D.I.openApplication(str, obj, info);
  11140. }
  11141. }
  11142. break;
  11143. }
  11144. if (_iframe) {
  11145. if (str == 'CocoPi') {
  11146. _iframe = _formdiv.querySelector('iframe')
  11147. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11148. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11149. })
  11150. if (onloadListener) {
  11151. _iframe.contentDocument.location.reload()
  11152. } else {
  11153. _iframe.contentDocument.location.reload()
  11154. }
  11155. }
  11156. _jie.onclick = async () => {
  11157. let text = ''
  11158. if (aTool == 57) {
  11159. text = _iframe.contentWindow.getLoadXmlStr()
  11160. }
  11161. _loading.style.display = 'flex'
  11162. console.log(_loading);
  11163. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11164. _loading.style.display = 'none'
  11165. let _div = document.createElement('div')
  11166. _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;"
  11167. let _inner = document.createElement('div')
  11168. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11169. _inner.innerHTML = "上傳成功"
  11170. _div.appendChild(_inner)
  11171. _iframe.contentWindow.window.document.body.appendChild(_div)
  11172. _div.onclick = () => {
  11173. _iframe.contentWindow.window.document.body.removeChild(_div)
  11174. }
  11175. setTimeout(() => {
  11176. _iframe.contentWindow.window.document.body.removeChild(_div)
  11177. }, 1000);
  11178. }, [], { "type": "POST", "withCredentials": true });
  11179. }
  11180. }
  11181. }
  11182. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11183. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  11184. _formdiv, //創建任務欄時同時彈出的窗體元素。
  11185. _userid = student.userid, //登錄用戶id
  11186. _username = student.student //用戶名字
  11187. let _iframe;
  11188. let _cid = cid,
  11189. _stage = stage,
  11190. _task = task,
  11191. _tool = tool;
  11192. var _jie = $$("div", {
  11193. "style": {
  11194. "position": "absolute",
  11195. "bottom": "50px",
  11196. "right": "50px",
  11197. "zIndex": "9999",
  11198. "backgroundColor": "#2268bc",
  11199. "color": "#fff",
  11200. "padding": "12px 20px",
  11201. "cursor": "pointer",
  11202. "borderRadius": "4px",
  11203. },
  11204. "innerHTML": "提交作業"
  11205. })
  11206. let aTool = ''
  11207. let _loading = document.createElement('div')
  11208. _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;"
  11209. // _loading.id = "";
  11210. let _lchild = document.createElement('div')
  11211. let _limg = document.createElement('img')
  11212. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11213. _limg.style = "width: 26px;margin-right: 10px;"
  11214. _lchild.appendChild(_limg)
  11215. let _lspan = document.createElement('span')
  11216. _lspan.innerHTML = "上傳中..."
  11217. _lchild.appendChild(_lspan)
  11218. _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%);"
  11219. _loading.appendChild(_lchild)
  11220. var _box = $$('div', {
  11221. "style": {
  11222. "position": "relative",
  11223. "width": "100%",
  11224. "height": "100%",
  11225. },
  11226. })
  11227. _box.appendChild(_loading)
  11228. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11229. switch (str) {
  11230. case "CocoPi":
  11231. aTool = 57;
  11232. _iframe = $$("iframe", {
  11233. "allowpaymentrequest": "allowpaymentrequest",
  11234. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11235. "webkitallowfullscreen": "",
  11236. "mozallowfullscreen": "",
  11237. "frameborder": "no",
  11238. "border": "0",
  11239. "scrolling ": "no",
  11240. "style": {
  11241. "cssText": "border:0;width:100%;height:100%"
  11242. },
  11243. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  11244. })
  11245. _box.appendChild(_iframe);
  11246. _box.appendChild(_jie);
  11247. _formdiv = new U.UF.UI.form(
  11248. "CocoPi-" + _username,
  11249. _box, {
  11250. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11251. "style": {
  11252. "width": "90%",
  11253. "height": "90%",
  11254. "overflow": 'hidden'
  11255. },
  11256. "onresize": function () { }
  11257. }, {
  11258. closecallback: function () { }
  11259. }, {
  11260. "style": {
  11261. "height": "36px"
  11262. }
  11263. }).form; //創建窗體
  11264. _taskbar = {
  11265. "id": str + _formdiv.id,
  11266. "style": {
  11267. "backgroundImage": "url(/img/icon/cocopi.png)"
  11268. },
  11269. "name": "CocoPi",
  11270. "forms": _formdiv,
  11271. "click": function () {
  11272. U.MD.D.I.openApplication(str, obj, info);
  11273. }
  11274. }
  11275. break;
  11276. }
  11277. if (_iframe) {
  11278. if (str == 'CocoPi') {
  11279. _iframe = _formdiv.querySelector('iframe')
  11280. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11281. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11282. })
  11283. if (onloadListener) {
  11284. _iframe.contentDocument.location.reload()
  11285. } else {
  11286. _iframe.contentDocument.location.reload()
  11287. }
  11288. }
  11289. _jie.onclick = async () => {
  11290. let text = ''
  11291. if (aTool == 57) {
  11292. text = _iframe.contentWindow.getLoadXmlStr()
  11293. }
  11294. _loading.style.display = 'flex'
  11295. console.log(_loading);
  11296. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11297. _loading.style.display = 'none'
  11298. let _div = document.createElement('div')
  11299. _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;"
  11300. let _inner = document.createElement('div')
  11301. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11302. _inner.innerHTML = "上傳成功"
  11303. _div.appendChild(_inner)
  11304. _iframe.contentWindow.window.document.body.appendChild(_div)
  11305. _div.onclick = () => {
  11306. _iframe.contentWindow.window.document.body.removeChild(_div)
  11307. }
  11308. setTimeout(() => {
  11309. _iframe.contentWindow.window.document.body.removeChild(_div)
  11310. }, 1000);
  11311. }, [], { "type": "POST", "withCredentials": true });
  11312. }
  11313. }
  11314. }
  11315. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11316. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11317. if (res.value[0].length > 0) {
  11318. if (atool == 57) {
  11319. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11320. }
  11321. } else {
  11322. if (atool == 57) {
  11323. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11324. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11325. }
  11326. }
  11327. }, [], { "type": "POST", "withCredentials": true });
  11328. }
  11329. U.MD.D.addOp = function (text, type, time) {
  11330. var userInfo = US.userInfo;
  11331. if (Object.keys(userInfo).length !== 0) {
  11332. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid, text, type, time], function (res) {
  11333. }, [], { "type": "POST", "withCredentials": true });
  11334. }
  11335. }