DeskTop.js 728 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534
  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. ];
  1456. //stia
  1457. U.MD.D.I.stiaTeacherDeskIcon = [
  1458. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1459. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1461. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1462. // { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1463. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1464. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1465. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. // { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1467. // { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1468. // { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1469. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1470. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1471. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1472. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1473. ];
  1474. //stia
  1475. U.MD.D.I.stiaStudentDeskIcon = [
  1476. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. ];
  1481. //szdjg
  1482. U.MD.D.I.szdjgTeacherDeskIcon = [
  1483. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1484. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1485. ];
  1486. //szdjg
  1487. U.MD.D.I.szdjgStudentDeskIcon = [
  1488. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //010607
  1494. U.MD.D.I.x010607TeacherDeskIcon = [
  1495. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1503. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1504. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1505. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1506. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1507. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1508. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1509. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1510. ];
  1511. //010607
  1512. U.MD.D.I.x010607StudentDeskIcon = [
  1513. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //010608
  1519. U.MD.D.I.x010608TeacherDeskIcon = [
  1520. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. ];
  1535. //010608
  1536. U.MD.D.I.x010608StudentDeskIcon = [
  1537. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //xhly
  1543. U.MD.D.I.xhlyTeacherDeskIcon = [
  1544. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. ];
  1546. //010608
  1547. U.MD.D.I.xhlyStudentDeskIcon = [
  1548. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //北師大
  1551. U.MD.D.I.BSDNSteacherDeskIcon = [
  1552. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1553. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1555. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1556. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1557. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1559. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1560. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1562. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1563. ];
  1564. //北師大
  1565. U.MD.D.I.BSDNSstudentDeskIcon = [
  1566. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //CUHK_EDU
  1572. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1573. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1576. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1577. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1578. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1579. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1580. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1581. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1583. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1584. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1585. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1586. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1587. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1588. ];
  1589. //CUHK_EDU
  1590. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1591. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //010503
  1597. U.MD.D.I.x010503TeacherDeskIcon = [
  1598. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1601. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1602. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1606. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1607. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1608. ];
  1609. //010503
  1610. U.MD.D.I.x010503StudentDeskIcon = [
  1611. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1615. ];
  1616. //SPROUT Lab
  1617. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1618. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1619. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1620. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1621. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1622. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1623. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1624. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1625. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1626. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1627. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1628. ];
  1629. //SPROUT Lab
  1630. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1631. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1635. ];
  1636. //010204
  1637. U.MD.D.I.x010204TeacherDeskIcon = [
  1638. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. ];
  1641. //010204
  1642. U.MD.D.I.x010204StudentDeskIcon = [
  1643. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1644. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1645. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1647. ];
  1648. //trail
  1649. U.MD.D.I.trailTeacherDeskIcon = [
  1650. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1651. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1652. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1653. ];
  1654. //trail
  1655. U.MD.D.I.trailStudentDeskIcon = [
  1656. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1657. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1658. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1659. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1661. ];
  1662. //trial
  1663. U.MD.D.I.trialTeacherDeskIcon = [
  1664. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1665. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1666. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1667. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1668. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1670. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1671. ];
  1672. //trial
  1673. U.MD.D.I.trialStudentDeskIcon = [
  1674. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1677. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1678. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1679. ];
  1680. //010504
  1681. U.MD.D.I.x010504TeacherDeskIcon = [
  1682. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1683. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1684. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1685. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1686. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1687. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1688. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1689. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1690. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1691. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1693. ];
  1694. //010504
  1695. U.MD.D.I.x010504StudentDeskIcon = [
  1696. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1697. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1698. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1700. ];
  1701. //010505
  1702. U.MD.D.I.x010505TeacherDeskIcon = [
  1703. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1704. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1705. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1708. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1709. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1710. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1711. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1712. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1713. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1714. ];
  1715. //010505
  1716. U.MD.D.I.x010505StudentDeskIcon = [
  1717. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1718. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1719. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1721. ];
  1722. //SCNUET
  1723. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1724. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1727. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1728. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1729. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1730. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1731. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1732. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1733. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1734. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1735. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1736. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1737. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1738. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1739. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1741. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1742. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1743. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1744. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1745. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1746. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1747. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1748. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1749. ];
  1750. //SCNUET
  1751. U.MD.D.I.SCNUETAdminDeskIcon = [
  1752. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1753. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1755. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1756. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1757. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1758. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1759. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1760. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1761. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1763. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1764. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1765. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1766. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1767. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1768. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1769. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1771. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1772. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1773. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1774. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1775. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1776. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1777. ];
  1778. //SCNUET
  1779. U.MD.D.I.SCNUETStudentDeskIcon = [
  1780. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1781. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1782. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1783. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1784. ];
  1785. //x020201
  1786. U.MD.D.I.x020201TeacherDeskIcon = [
  1787. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1788. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1789. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1790. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1791. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1792. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1793. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1794. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1795. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1796. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1797. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1798. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1799. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1800. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1801. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1802. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1803. ];
  1804. //x020201
  1805. U.MD.D.I.x020201AdminDeskIcon = [
  1806. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1807. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1809. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1810. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1811. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1812. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1813. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1814. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1815. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1816. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1817. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1818. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1819. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1820. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1821. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1822. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1823. ];
  1824. //020201
  1825. U.MD.D.I.x020201StudentDeskIcon = [
  1826. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1827. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1828. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1829. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1830. ];
  1831. //010611
  1832. U.MD.D.I.x010611TeacherDeskIcon = [
  1833. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1834. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1835. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1836. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1837. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1838. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1839. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1840. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1841. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1842. ];
  1843. //010611
  1844. U.MD.D.I.x010611StudentDeskIcon = [
  1845. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1846. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1847. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1848. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1849. ];
  1850. //010612
  1851. U.MD.D.I.x010612TeacherDeskIcon = [
  1852. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1853. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1854. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1855. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1856. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1857. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1858. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1859. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1860. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1861. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1862. ];
  1863. //010612
  1864. U.MD.D.I.x010612StudentDeskIcon = [
  1865. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1866. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1867. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1868. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1869. ];
  1870. //tianyuan
  1871. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1872. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1873. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1874. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1875. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1876. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1877. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1878. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1879. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1880. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1881. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1882. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1883. ];
  1884. //010611
  1885. U.MD.D.I.tianyuanStudentDeskIcon = [
  1886. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1887. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1888. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1889. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1890. ];
  1891. //320101
  1892. U.MD.D.I.x320101TeacherDeskIcon = [
  1893. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1894. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1895. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1896. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1897. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1898. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1899. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1900. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1901. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1902. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1903. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1904. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1905. { "Name": "電子白闆", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1906. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1907. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1908. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1909. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1910. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1911. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1912. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1913. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1914. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1915. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1916. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1917. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1918. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1919. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1920. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1921. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1922. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1923. { "Name": "數學畫闆", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1924. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1925. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1926. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1927. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1928. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1930. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1931. ];
  1932. //320101
  1933. U.MD.D.I.x320101StudentDeskIcon = [
  1934. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1935. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1936. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1937. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1938. ];
  1939. //szsy
  1940. U.MD.D.I.szsyTeacherDeskIcon = [
  1941. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1942. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1943. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1944. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1948. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1949. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1950. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1951. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1952. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1953. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1954. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1955. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1956. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1957. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1958. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1959. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1960. ];
  1961. //szsy
  1962. U.MD.D.I.szsyStudentDeskIcon = [
  1963. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1964. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1965. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1966. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1967. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1968. ];
  1969. //010404
  1970. U.MD.D.I.x010404TeacherDeskIcon = [
  1971. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1972. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1973. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1974. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1975. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1976. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1977. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1978. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1979. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1980. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1981. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1982. ];
  1983. //010404
  1984. U.MD.D.I.x010404StudentDeskIcon = [
  1985. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1986. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1987. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1988. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1989. ];
  1990. //cocorobo demo
  1991. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1992. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1993. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1994. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1995. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1996. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1997. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1998. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1999. { "Name": "智能表單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2000. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2001. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2002. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2003. ];
  2004. //cocorobo demo
  2005. U.MD.D.I.demoCocoStudentDeskIcon = [
  2006. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2007. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2008. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2009. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2010. ];
  2011. //MOAI
  2012. U.MD.D.I.MOAITeacherDeskIcon = [
  2013. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2014. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2015. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2016. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2017. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2018. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2019. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2020. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2021. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2022. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2023. ];
  2024. //MOAI 學生端
  2025. U.MD.D.I.MOAIStudentDeskIcon = [
  2026. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2027. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2028. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2029. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2030. ];
  2031. //#region 桌面初始化a
  2032. /**
  2033. * 初始化桌面的起始函數
  2034. *
  2035. */
  2036. U.MD.D.I.init = function () {
  2037. if ($("#U_MD_D_K")[0]) {
  2038. //初始化桌面圖標
  2039. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2040. // var clickUrl = ':12588/requestIp.php';
  2041. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2042. // U.MD.D.I.Ip = data;
  2043. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2044. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2045. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2046. // })
  2047. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  2048. // })
  2049. }
  2050. }
  2051. /**
  2052. * 模式切換
  2053. *
  2054. */
  2055. U.MD.D.I.ModeCheck = function (type) {
  2056. if (US.Config.type == type) {
  2057. return
  2058. }
  2059. US.Config.type = type
  2060. $('.U_PBL_Check .active')[0].className = ''
  2061. if (type == 1) {
  2062. $('.U_PBL_Check div')[0].className = 'active'
  2063. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2064. } else {
  2065. $('.U_PBL_Check div')[1].className = 'active'
  2066. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2067. }
  2068. //初始化桌面圖標
  2069. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2070. if (type == 2) {
  2071. U.MD.D.I.openApplication("project")
  2072. }
  2073. }
  2074. /**
  2075. * 隱藏任務欄
  2076. *
  2077. * @param {element} 桌面元素
  2078. */
  2079. U.MD.D.I.hiddenTaskbar = function (el) {
  2080. //任務欄位置變小
  2081. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2082. //桌面的位置變大
  2083. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2084. }
  2085. /**
  2086. * 隱藏任務欄
  2087. *
  2088. * @param {element} 桌面元素
  2089. */
  2090. U.MD.D.I.hiddenTaskbarout = function (el) {
  2091. //任務欄位置變小
  2092. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2093. //任務欄位置變化
  2094. U.selectEl(el).css({ "bottom": "-60px" });
  2095. //桌面的位置變大
  2096. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2097. }
  2098. }
  2099. /**
  2100. * 初始化打印桌面圖標
  2101. *
  2102. * @param {element} 桌面元素
  2103. */
  2104. U.MD.D.I.initDesktopIcons = function (el, type) {
  2105. var i, //用於循環
  2106. _content, //桌面圖標元素
  2107. _iconcontent, //桌面圖標元素
  2108. _frag = $$("frag"), //定義一個碎片元素
  2109. _type = US.userInfo.type,
  2110. _org = US.userInfo.org,
  2111. _oid = US.userInfo.organizeid,
  2112. _role = US.userInfo.role,
  2113. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  2114. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  2115. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  2116. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  2117. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  2118. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  2119. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  2120. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2121. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2122. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2123. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  2124. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  2125. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  2126. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  2127. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取鬆山湖
  2128. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  2129. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  2130. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  2131. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  2132. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  2133. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  2134. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  2135. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  2136. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  2137. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2138. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2139. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  2140. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  2141. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  2142. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  2143. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  2144. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  2145. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2146. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2147. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2148. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2149. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2150. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2151. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2152. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2153. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2154. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  2155. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2156. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2157. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2158. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2159. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  2160. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2161. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2162. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2163. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2164. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2165. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2166. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2167. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2168. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2169. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2170. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2171. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2172. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2173. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2174. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2175. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  2176. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2177. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2178. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2179. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2180. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2181. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2182. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2183. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2184. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2185. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2186. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2187. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  2188. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  2189. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  2190. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  2191. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2192. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2193. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2194. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2195. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2196. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2197. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2198. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2199. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2200. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2201. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2202. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2203. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2204. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2205. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2206. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2207. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2208. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2209. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2210. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2211. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2212. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2213. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2214. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2215. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2216. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2217. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2218. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2219. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2220. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2221. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2222. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2223. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2224. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2225. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2226. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2227. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2228. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2229. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2230. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2231. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2232. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2233. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2234. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2235. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2236. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2237. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2238. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2239. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2240. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2241. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2242. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2243. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2244. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2245. 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'];
  2246. 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"];
  2247. 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",]
  2248. //清楚桌面圖標
  2249. el.innerHTML = "";
  2250. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2251. _teacherDesktopIconInfo.push(
  2252. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2253. { "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)" } },
  2254. )
  2255. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2256. }
  2257. 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') {
  2258. _teacherDesktopIconInfo.push(
  2259. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2260. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2261. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2262. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2263. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2264. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2265. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2266. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2267. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2268. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2269. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2270. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2271. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2272. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2273. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2274. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2275. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2276. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2277. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2278. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2279. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2280. )
  2281. }
  2282. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//鬆坪學校
  2283. _teacherDesktopIconInfo.push(
  2284. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2285. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2286. )
  2287. }
  2288. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//鬆坪學校
  2289. _nsfxTeacherDeskIconInfo.push(
  2290. { "Name": "知識庫", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2291. )
  2292. }
  2293. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2294. // _teacherDesktopIconInfo.push(
  2295. // )
  2296. // }
  2297. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2298. _teacherDesktopIconInfo.push(
  2299. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2300. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2301. )
  2302. }
  2303. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2304. _teacherDesktopIconInfo.push(
  2305. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2306. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2307. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2308. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2309. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2310. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2311. )
  2312. _studentDesktopIconInfo.push(
  2313. )
  2314. }
  2315. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2316. _teacherDesktopIconInfo.push(
  2317. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2318. )
  2319. _studentDesktopIconInfo.push(
  2320. )
  2321. }
  2322. //010606 組織
  2323. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2324. _teacherDesktopIconInfo.push(
  2325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2326. )
  2327. _studentDesktopIconInfo.push(
  2328. )
  2329. }
  2330. //麒麟二中 和 民新小學
  2331. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2332. _teacherDesktopIconInfo.push(
  2333. )
  2334. }
  2335. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2336. _teacherDesktopIconInfo.push(
  2337. { "Name": "智能錶單", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2338. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2339. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2340. )
  2341. }
  2342. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2343. _hkTeacherDeskIconInfo.push(
  2344. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2345. )
  2346. }
  2347. //北師大附中(010601)
  2348. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2349. // _teacherDesktopIconInfo.push(
  2350. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2351. // )
  2352. // _studentDesktopIconInfo.push(
  2353. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2354. // )
  2355. // }
  2356. //樂善堂余近卿中學
  2357. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2358. _teacherDesktopIconInfo.push(
  2359. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2360. )
  2361. }
  2362. // Education Artificial Intelligence
  2363. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2364. _teacherDesktopIconInfo.push(
  2365. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2366. )
  2367. }
  2368. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2369. _teacherDesktopIconInfo.push(
  2370. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2371. )
  2372. }
  2373. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2374. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2375. _teacherDesktopIconInfo.push(
  2376. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2377. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2378. )
  2379. }
  2380. //麒麟二中
  2381. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2382. _studentDesktopIconInfo.push(
  2383. // { "Name": "數據看闆", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2384. { "Name": "綜合看闆", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2385. )
  2386. }
  2387. //萬科雙語
  2388. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2389. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2390. if (el.Name == '項目管理') {
  2391. el.Name = 'PBL項目'
  2392. }
  2393. return el
  2394. })
  2395. _studentDesktopIconInfo3.push(
  2396. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2397. )
  2398. }
  2399. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2400. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2401. return el.Name != '魔盒識字' && el.Name != '24點'
  2402. })
  2403. }
  2404. 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) {
  2405. _studentDesktopIconInfo.push(
  2406. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2407. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2408. )
  2409. }
  2410. //循環創建桌面圖標
  2411. if (type == 1) {
  2412. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2413. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2414. _content = $$("div", {
  2415. className: "U_MD_D_KO",
  2416. "onmousedown": U.UF.C.closure(function (obj) {
  2417. //防止拖動圖標即打開了桌面應用
  2418. U.MD.D.click(this, obj);
  2419. }, [_studentDesktopIconInfo[i]]),
  2420. "onclick": U.UF.C.closure(function (obj) {
  2421. //防止拖動圖標即打開了桌面應用
  2422. U.MD.D.click(this, obj);
  2423. }, [_studentDesktopIconInfo[i]])
  2424. }, _frag); //
  2425. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2426. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2427. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2428. }
  2429. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2430. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2431. _content = $$("div", {
  2432. className: "U_MD_D_KO",
  2433. "onmousedown": U.UF.C.closure(function (obj) {
  2434. //防止拖動圖標即打開了桌面應用
  2435. U.MD.D.click(this, obj);
  2436. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2437. "onclick": U.UF.C.closure(function (obj) {
  2438. //防止拖動圖標即打開了桌面應用
  2439. U.MD.D.click(this, obj);
  2440. }, [_hkZJLSStudentDeskIconInfo[i]])
  2441. }, _frag); //
  2442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2445. } //
  2446. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2447. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2448. _content = $$("div", {
  2449. className: "U_MD_D_KO",
  2450. "onmousedown": U.UF.C.closure(function (obj) {
  2451. //防止拖動圖標即打開了桌面應用
  2452. U.MD.D.click(this, obj);
  2453. }, [_ytyStudentDeskIconInfo[i]]),
  2454. "onclick": U.UF.C.closure(function (obj) {
  2455. //防止拖動圖標即打開了桌面應用
  2456. U.MD.D.click(this, obj);
  2457. }, [_ytyStudentDeskIconInfo[i]])
  2458. }, _frag); //
  2459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2462. } //
  2463. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2464. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2465. _content = $$("div", {
  2466. className: "U_MD_D_KO",
  2467. "onmousedown": U.UF.C.closure(function (obj) {
  2468. //防止拖動圖標即打開了桌面應用
  2469. U.MD.D.click(this, obj);
  2470. }, [_jccssylStudentDeskIconInfo[i]]),
  2471. "onclick": U.UF.C.closure(function (obj) {
  2472. //防止拖動圖標即打開了桌面應用
  2473. U.MD.D.click(this, obj);
  2474. }, [_jccssylStudentDeskIconInfo[i]])
  2475. }, _frag); //
  2476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2479. }
  2480. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2481. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2482. _content = $$("div", {
  2483. className: "U_MD_D_KO",
  2484. "onmousedown": U.UF.C.closure(function (obj) {
  2485. //防止拖動圖標即打開了桌面應用
  2486. U.MD.D.click(this, obj);
  2487. }, [_scnuaiStudentDeskIconInfo[i]]),
  2488. "onclick": U.UF.C.closure(function (obj) {
  2489. //防止拖動圖標即打開了桌面應用
  2490. U.MD.D.click(this, obj);
  2491. }, [_scnuaiStudentDeskIconInfo[i]])
  2492. }, _frag); //
  2493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2496. }
  2497. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2498. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖動圖標即打開了桌面應用
  2503. U.MD.D.click(this, obj);
  2504. }, [_caleStudentDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖動圖標即打開了桌面應用
  2507. U.MD.D.click(this, obj);
  2508. }, [_caleStudentDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2515. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2516. _content = $$("div", {
  2517. className: "U_MD_D_KO",
  2518. "onmousedown": U.UF.C.closure(function (obj) {
  2519. //防止拖動圖標即打開了桌面應用
  2520. U.MD.D.click(this, obj);
  2521. }, [_thuioeStudentDeskIconInfo[i]]),
  2522. "onclick": U.UF.C.closure(function (obj) {
  2523. //防止拖動圖標即打開了桌面應用
  2524. U.MD.D.click(this, obj);
  2525. }, [_thuioeStudentDeskIconInfo[i]])
  2526. }, _frag); //
  2527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2530. }
  2531. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2532. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖動圖標即打開了桌面應用
  2537. U.MD.D.click(this, obj);
  2538. }, [_tpcStudentDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖動圖標即打開了桌面應用
  2541. U.MD.D.click(this, obj);
  2542. }, [_tpcStudentDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2547. } //
  2548. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2549. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2550. _content = $$("div", {
  2551. className: "U_MD_D_KO",
  2552. "onmousedown": U.UF.C.closure(function (obj) {
  2553. //防止拖動圖標即打開了桌面應用
  2554. U.MD.D.click(this, obj);
  2555. }, [_chjyjStudentDeskIconInfo[i]]),
  2556. "onclick": U.UF.C.closure(function (obj) {
  2557. //防止拖動圖標即打開了桌面應用
  2558. U.MD.D.click(this, obj);
  2559. }, [_chjyjStudentDeskIconInfo[i]])
  2560. }, _frag); //
  2561. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2562. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2563. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2564. }
  2565. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2566. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2567. _content = $$("div", {
  2568. className: "U_MD_D_KO",
  2569. "onmousedown": U.UF.C.closure(function (obj) {
  2570. //防止拖動圖標即打開了桌面應用
  2571. U.MD.D.click(this, obj);
  2572. }, [_szjkyStudentDeskIconInfo[i]]),
  2573. "onclick": U.UF.C.closure(function (obj) {
  2574. //防止拖動圖標即打開了桌面應用
  2575. U.MD.D.click(this, obj);
  2576. }, [_szjkyStudentDeskIconInfo[i]])
  2577. }, _frag); //
  2578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2581. }
  2582. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2583. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖動圖標即打開了桌面應用
  2588. U.MD.D.click(this, obj);
  2589. }, [_x020201StudentDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖動圖標即打開了桌面應用
  2592. U.MD.D.click(this, obj);
  2593. }, [_x020201StudentDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2598. }
  2599. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2600. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2601. _content = $$("div", {
  2602. className: "U_MD_D_KO",
  2603. "onmousedown": U.UF.C.closure(function (obj) {
  2604. //防止拖動圖標即打開了桌面應用
  2605. U.MD.D.click(this, obj);
  2606. }, [_SCNUETStudentDeskIconInfo[i]]),
  2607. "onclick": U.UF.C.closure(function (obj) {
  2608. //防止拖動圖標即打開了桌面應用
  2609. U.MD.D.click(this, obj);
  2610. }, [_SCNUETStudentDeskIconInfo[i]])
  2611. }, _frag); //
  2612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2615. }
  2616. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2617. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖動圖標即打開了桌面應用
  2622. U.MD.D.click(this, obj);
  2623. }, [_dseiStudentDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖動圖標即打開了桌面應用
  2626. U.MD.D.click(this, obj);
  2627. }, [_dseiStudentDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2632. }
  2633. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2634. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2635. _content = $$("div", {
  2636. className: "U_MD_D_KO",
  2637. "onmousedown": U.UF.C.closure(function (obj) {
  2638. //防止拖動圖標即打開了桌面應用
  2639. U.MD.D.click(this, obj);
  2640. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖動圖標即打開了桌面應用
  2643. U.MD.D.click(this, obj);
  2644. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2649. }
  2650. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2651. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2652. _content = $$("div", {
  2653. className: "U_MD_D_KO",
  2654. "onmousedown": U.UF.C.closure(function (obj) {
  2655. //防止拖動圖標即打開了桌面應用
  2656. U.MD.D.click(this, obj);
  2657. }, [_nsfxStudentDeskIconInfo[i]]),
  2658. "onclick": U.UF.C.closure(function (obj) {
  2659. //防止拖動圖標即打開了桌面應用
  2660. U.MD.D.click(this, obj);
  2661. }, [_nsfxStudentDeskIconInfo[i]])
  2662. }, _frag); //
  2663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2666. }
  2667. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2668. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2669. _content = $$("div", {
  2670. className: "U_MD_D_KO",
  2671. "onmousedown": U.UF.C.closure(function (obj) {
  2672. //防止拖動圖標即打開了桌面應用
  2673. U.MD.D.click(this, obj);
  2674. }, [_stiaStudentDeskIconInfo[i]]),
  2675. "onclick": U.UF.C.closure(function (obj) {
  2676. //防止拖動圖標即打開了桌面應用
  2677. U.MD.D.click(this, obj);
  2678. }, [_stiaStudentDeskIconInfo[i]])
  2679. }, _frag); //
  2680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2683. }
  2684. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2685. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖動圖標即打開了桌面應用
  2690. U.MD.D.click(this, obj);
  2691. }, [_szdjgStudentDeskIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖動圖標即打開了桌面應用
  2694. U.MD.D.click(this, obj);
  2695. }, [_szdjgStudentDeskIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2700. }
  2701. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2702. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖動圖標即打開了桌面應用
  2707. U.MD.D.click(this, obj);
  2708. }, [_x010607StudentDeskIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖動圖標即打開了桌面應用
  2711. U.MD.D.click(this, obj);
  2712. }, [_x010607StudentDeskIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2719. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2720. _content = $$("div", {
  2721. className: "U_MD_D_KO",
  2722. "onmousedown": U.UF.C.closure(function (obj) {
  2723. //防止拖動圖標即打開了桌面應用
  2724. U.MD.D.click(this, obj);
  2725. }, [_xhlyStudentDeskIconInfo[i]]),
  2726. "onclick": U.UF.C.closure(function (obj) {
  2727. //防止拖動圖標即打開了桌面應用
  2728. U.MD.D.click(this, obj);
  2729. }, [_xhlyStudentDeskIconInfo[i]])
  2730. }, _frag); //
  2731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2734. }
  2735. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2736. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2737. _content = $$("div", {
  2738. className: "U_MD_D_KO",
  2739. "onmousedown": U.UF.C.closure(function (obj) {
  2740. //防止拖動圖標即打開了桌面應用
  2741. U.MD.D.click(this, obj);
  2742. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2743. "onclick": U.UF.C.closure(function (obj) {
  2744. //防止拖動圖標即打開了桌面應用
  2745. U.MD.D.click(this, obj);
  2746. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2747. }, _frag); //
  2748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2751. }
  2752. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2753. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2754. _content = $$("div", {
  2755. className: "U_MD_D_KO",
  2756. "onmousedown": U.UF.C.closure(function (obj) {
  2757. //防止拖動圖標即打開了桌面應用
  2758. U.MD.D.click(this, obj);
  2759. }, [_x010503StudentDeskIconInfo[i]]),
  2760. "onclick": U.UF.C.closure(function (obj) {
  2761. //防止拖動圖標即打開了桌面應用
  2762. U.MD.D.click(this, obj);
  2763. }, [_x010503StudentDeskIconInfo[i]])
  2764. }, _frag); //
  2765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2768. }
  2769. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2770. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2771. _content = $$("div", {
  2772. className: "U_MD_D_KO",
  2773. "onmousedown": U.UF.C.closure(function (obj) {
  2774. //防止拖動圖標即打開了桌面應用
  2775. U.MD.D.click(this, obj);
  2776. }, [_x010504StudentDeskIconInfo[i]]),
  2777. "onclick": U.UF.C.closure(function (obj) {
  2778. //防止拖動圖標即打開了桌面應用
  2779. U.MD.D.click(this, obj);
  2780. }, [_x010504StudentDeskIconInfo[i]])
  2781. }, _frag); //
  2782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2785. }
  2786. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2787. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2788. _content = $$("div", {
  2789. className: "U_MD_D_KO",
  2790. "onmousedown": U.UF.C.closure(function (obj) {
  2791. //防止拖動圖標即打開了桌面應用
  2792. U.MD.D.click(this, obj);
  2793. }, [_x010505StudentDeskIconInfo[i]]),
  2794. "onclick": U.UF.C.closure(function (obj) {
  2795. //防止拖動圖標即打開了桌面應用
  2796. U.MD.D.click(this, obj);
  2797. }, [_x010505StudentDeskIconInfo[i]])
  2798. }, _frag); //
  2799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2802. }
  2803. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2804. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2805. _content = $$("div", {
  2806. className: "U_MD_D_KO",
  2807. "onmousedown": U.UF.C.closure(function (obj) {
  2808. //防止拖動圖標即打開了桌面應用
  2809. U.MD.D.click(this, obj);
  2810. }, [_x010404StudentDeskIconInfo[i]]),
  2811. "onclick": U.UF.C.closure(function (obj) {
  2812. //防止拖動圖標即打開了桌面應用
  2813. U.MD.D.click(this, obj);
  2814. }, [_x010404StudentDeskIconInfo[i]])
  2815. }, _frag); //
  2816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2819. }
  2820. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2821. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2822. _content = $$("div", {
  2823. className: "U_MD_D_KO",
  2824. "onmousedown": U.UF.C.closure(function (obj) {
  2825. //防止拖動圖標即打開了桌面應用
  2826. U.MD.D.click(this, obj);
  2827. }, [_x010204StudentDeskIconInfo[i]]),
  2828. "onclick": U.UF.C.closure(function (obj) {
  2829. //防止拖動圖標即打開了桌面應用
  2830. U.MD.D.click(this, obj);
  2831. }, [_x010204StudentDeskIconInfo[i]])
  2832. }, _frag); //
  2833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2836. }
  2837. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2838. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2839. _content = $$("div", {
  2840. className: "U_MD_D_KO",
  2841. "onmousedown": U.UF.C.closure(function (obj) {
  2842. //防止拖動圖標即打開了桌面應用
  2843. U.MD.D.click(this, obj);
  2844. }, [_x320101StudentDeskIconInfo[i]]),
  2845. "onclick": U.UF.C.closure(function (obj) {
  2846. //防止拖動圖標即打開了桌面應用
  2847. U.MD.D.click(this, obj);
  2848. }, [_x320101StudentDeskIconInfo[i]])
  2849. }, _frag); //
  2850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2853. }
  2854. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2855. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2856. _content = $$("div", {
  2857. className: "U_MD_D_KO",
  2858. "onmousedown": U.UF.C.closure(function (obj) {
  2859. //防止拖動圖標即打開了桌面應用
  2860. U.MD.D.click(this, obj);
  2861. }, [_trailStudentDeskIconInfo[i]]),
  2862. "onclick": U.UF.C.closure(function (obj) {
  2863. //防止拖動圖標即打開了桌面應用
  2864. U.MD.D.click(this, obj);
  2865. }, [_trailStudentDeskIconInfo[i]])
  2866. }, _frag); //
  2867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2870. }
  2871. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2872. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2873. _content = $$("div", {
  2874. className: "U_MD_D_KO",
  2875. "onmousedown": U.UF.C.closure(function (obj) {
  2876. //防止拖動圖標即打開了桌面應用
  2877. U.MD.D.click(this, obj);
  2878. }, [_trialStudentDeskIconInfo[i]]),
  2879. "onclick": U.UF.C.closure(function (obj) {
  2880. //防止拖動圖標即打開了桌面應用
  2881. U.MD.D.click(this, obj);
  2882. }, [_trialStudentDeskIconInfo[i]])
  2883. }, _frag); //
  2884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2887. }
  2888. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2889. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2890. _content = $$("div", {
  2891. className: "U_MD_D_KO",
  2892. "onmousedown": U.UF.C.closure(function (obj) {
  2893. //防止拖動圖標即打開了桌面應用
  2894. U.MD.D.click(this, obj);
  2895. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2896. "onclick": U.UF.C.closure(function (obj) {
  2897. //防止拖動圖標即打開了桌面應用
  2898. U.MD.D.click(this, obj);
  2899. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2900. }, _frag); //
  2901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2904. }
  2905. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2906. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2907. _content = $$("div", {
  2908. className: "U_MD_D_KO",
  2909. "onmousedown": U.UF.C.closure(function (obj) {
  2910. //防止拖動圖標即打開了桌面應用
  2911. U.MD.D.click(this, obj);
  2912. }, [_szsyStudentDeskIconInfo[i]]),
  2913. "onclick": U.UF.C.closure(function (obj) {
  2914. //防止拖動圖標即打開了桌面應用
  2915. U.MD.D.click(this, obj);
  2916. }, [_szsyStudentDeskIconInfo[i]])
  2917. }, _frag); //
  2918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2921. }
  2922. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2923. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2924. _content = $$("div", {
  2925. className: "U_MD_D_KO",
  2926. "onmousedown": U.UF.C.closure(function (obj) {
  2927. //防止拖動圖標即打開了桌面應用
  2928. U.MD.D.click(this, obj);
  2929. }, [_demoCocoStudentDeskIconInfo[i]]),
  2930. "onclick": U.UF.C.closure(function (obj) {
  2931. //防止拖動圖標即打開了桌面應用
  2932. U.MD.D.click(this, obj);
  2933. }, [_demoCocoStudentDeskIconInfo[i]])
  2934. }, _frag); //
  2935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2938. }
  2939. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2940. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖動圖標即打開了桌面應用
  2945. U.MD.D.click(this, obj);
  2946. }, [_x010608StudentDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖動圖標即打開了桌面應用
  2949. U.MD.D.click(this, obj);
  2950. }, [_x010608StudentDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2957. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2958. _content = $$("div", {
  2959. className: "U_MD_D_KO",
  2960. "onmousedown": U.UF.C.closure(function (obj) {
  2961. //防止拖動圖標即打開了桌面應用
  2962. U.MD.D.click(this, obj);
  2963. }, [_x010611StudentDeskIconInfo[i]]),
  2964. "onclick": U.UF.C.closure(function (obj) {
  2965. //防止拖動圖標即打開了桌面應用
  2966. U.MD.D.click(this, obj);
  2967. }, [_x010611StudentDeskIconInfo[i]])
  2968. }, _frag); //
  2969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2972. }
  2973. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2974. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖動圖標即打開了桌面應用
  2979. U.MD.D.click(this, obj);
  2980. }, [_x010612StudentDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖動圖標即打開了桌面應用
  2983. U.MD.D.click(this, obj);
  2984. }, [_x010612StudentDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2991. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖動圖標即打開了桌面應用
  2996. U.MD.D.click(this, obj);
  2997. }, [_tianyuantudentDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖動圖標即打開了桌面應用
  3000. U.MD.D.click(this, obj);
  3001. }, [_tianyuantudentDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3008. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3009. _content = $$("div", {
  3010. className: "U_MD_D_KO",
  3011. "onmousedown": U.UF.C.closure(function (obj) {
  3012. //防止拖動圖標即打開了桌面應用
  3013. U.MD.D.click(this, obj);
  3014. }, [_siesStudentDeskIconInfo[i]]),
  3015. "onclick": U.UF.C.closure(function (obj) {
  3016. //防止拖動圖標即打開了桌面應用
  3017. U.MD.D.click(this, obj);
  3018. }, [_siesStudentDeskIconInfo[i]])
  3019. }, _frag); //
  3020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3023. }
  3024. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3025. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3026. _content = $$("div", {
  3027. className: "U_MD_D_KO",
  3028. "onmousedown": U.UF.C.closure(function (obj) {
  3029. //防止拖動圖標即打開了桌面應用
  3030. U.MD.D.click(this, obj);
  3031. }, [_guzmsStudentDeskIconInfo[i]]),
  3032. "onclick": U.UF.C.closure(function (obj) {
  3033. //防止拖動圖標即打開了桌面應用
  3034. U.MD.D.click(this, obj);
  3035. }, [_guzmsStudentDeskIconInfo[i]])
  3036. }, _frag); //
  3037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3040. }
  3041. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3042. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3043. _content = $$("div", {
  3044. className: "U_MD_D_KO",
  3045. "onmousedown": U.UF.C.closure(function (obj) {
  3046. //防止拖動圖標即打開了桌面應用
  3047. U.MD.D.click(this, obj);
  3048. }, [_hkStudentDeskIconInfo[i]]),
  3049. "onclick": U.UF.C.closure(function (obj) {
  3050. //防止拖動圖標即打開了桌面應用
  3051. U.MD.D.click(this, obj);
  3052. }, [_hkStudentDeskIconInfo[i]])
  3053. }, _frag); //
  3054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3057. }
  3058. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3059. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3060. _content = $$("div", {
  3061. className: "U_MD_D_KO",
  3062. "onmousedown": U.UF.C.closure(function (obj) {
  3063. //防止拖動圖標即打開了桌面應用
  3064. U.MD.D.click(this, obj);
  3065. }, [_tycyStudentDeskIconInfo[i]]),
  3066. "onclick": U.UF.C.closure(function (obj) {
  3067. //防止拖動圖標即打開了桌面應用
  3068. U.MD.D.click(this, obj);
  3069. }, [_tycyStudentDeskIconInfo[i]])
  3070. }, _frag); //
  3071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3074. }
  3075. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3076. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3077. _content = $$("div", {
  3078. className: "U_MD_D_KO",
  3079. "onmousedown": U.UF.C.closure(function (obj) {
  3080. //防止拖動圖標即打開了桌面應用
  3081. U.MD.D.click(this, obj);
  3082. }, [_ckcpsStudentDeskIconInfo[i]]),
  3083. "onclick": U.UF.C.closure(function (obj) {
  3084. //防止拖動圖標即打開了桌面應用
  3085. U.MD.D.click(this, obj);
  3086. }, [_ckcpsStudentDeskIconInfo[i]])
  3087. }, _frag); //
  3088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3091. }
  3092. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3093. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3094. _content = $$("div", {
  3095. className: "U_MD_D_KO",
  3096. "onmousedown": U.UF.C.closure(function (obj) {
  3097. //防止拖動圖標即打開了桌面應用
  3098. U.MD.D.click(this, obj);
  3099. }, [_hkaceStudentDeskIconInfo[i]]),
  3100. "onclick": U.UF.C.closure(function (obj) {
  3101. //防止拖動圖標即打開了桌面應用
  3102. U.MD.D.click(this, obj);
  3103. }, [_hkaceStudentDeskIconInfo[i]])
  3104. }, _frag); //
  3105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3108. }
  3109. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3110. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3111. _content = $$("div", {
  3112. className: "U_MD_D_KO",
  3113. "onmousedown": U.UF.C.closure(function (obj) {
  3114. //防止拖動圖標即打開了桌面應用
  3115. U.MD.D.click(this, obj);
  3116. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3117. "onclick": U.UF.C.closure(function (obj) {
  3118. //防止拖動圖標即打開了桌面應用
  3119. U.MD.D.click(this, obj);
  3120. }, [_BSDNSstudentDesktopIconInfo[i]])
  3121. }, _frag); //
  3122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3125. }
  3126. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3127. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3128. _content = $$("div", {
  3129. className: "U_MD_D_KO",
  3130. "onmousedown": U.UF.C.closure(function (obj) {
  3131. //防止拖動圖標即打開了桌面應用
  3132. U.MD.D.click(this, obj);
  3133. }, [_cocobizStudentDeskIconInfo[i]]),
  3134. "onclick": U.UF.C.closure(function (obj) {
  3135. //防止拖動圖標即打開了桌面應用
  3136. U.MD.D.click(this, obj);
  3137. }, [_cocobizStudentDeskIconInfo[i]])
  3138. }, _frag); //
  3139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3142. }
  3143. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3144. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3145. _content = $$("div", {
  3146. className: "U_MD_D_KO",
  3147. "onmousedown": U.UF.C.closure(function (obj) {
  3148. //防止拖動圖標即打開了桌面應用
  3149. U.MD.D.click(this, obj);
  3150. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3151. "onclick": U.UF.C.closure(function (obj) {
  3152. //防止拖動圖標即打開了桌面應用
  3153. U.MD.D.click(this, obj);
  3154. }, [_xxzjkyStudentDeskIconInfo[i]])
  3155. }, _frag); //
  3156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3159. }
  3160. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3161. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3162. _content = $$("div", {
  3163. className: "U_MD_D_KO",
  3164. "onmousedown": U.UF.C.closure(function (obj) {
  3165. //防止拖動圖標即打開了桌面應用
  3166. U.MD.D.click(this, obj);
  3167. }, [_studentDesktopIconInfo[i]]),
  3168. "onclick": U.UF.C.closure(function (obj) {
  3169. //防止拖動圖標即打開了桌面應用
  3170. U.MD.D.click(this, obj);
  3171. }, [_studentDesktopIconInfo[i]])
  3172. }, _frag); //
  3173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3176. }
  3177. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3178. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3179. _content = $$("div", {
  3180. className: "U_MD_D_KO",
  3181. "onmousedown": U.UF.C.closure(function (obj) {
  3182. //防止拖動圖標即打開了桌面應用
  3183. U.MD.D.click(this, obj);
  3184. }, [_tcStudentDeskIconInfo[i]]),
  3185. "onclick": U.UF.C.closure(function (obj) {
  3186. //防止拖動圖標即打開了桌面應用
  3187. U.MD.D.click(this, obj);
  3188. }, [_tcStudentDeskIconInfo[i]])
  3189. }, _frag); //
  3190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3193. }
  3194. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3195. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3196. _content = $$("div", {
  3197. className: "U_MD_D_KO",
  3198. "onmousedown": U.UF.C.closure(function (obj) {
  3199. //防止拖動圖標即打開了桌面應用
  3200. U.MD.D.click(this, obj);
  3201. }, [_szscStudentDeskIconInfo[i]]),
  3202. "onclick": U.UF.C.closure(function (obj) {
  3203. //防止拖動圖標即打開了桌面應用
  3204. U.MD.D.click(this, obj);
  3205. }, [_szscStudentDeskIconInfo[i]])
  3206. }, _frag); //
  3207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3210. }
  3211. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3212. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3213. _content = $$("div", {
  3214. className: "U_MD_D_KO",
  3215. "onmousedown": U.UF.C.closure(function (obj) {
  3216. //防止拖動圖標即打開了桌面應用
  3217. U.MD.D.click(this, obj);
  3218. }, [_studentDesktopIconInfo3[i]]),
  3219. "onclick": U.UF.C.closure(function (obj) {
  3220. //防止拖動圖標即打開了桌面應用
  3221. U.MD.D.click(this, obj);
  3222. }, [_studentDesktopIconInfo3[i]])
  3223. }, _frag); //
  3224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3227. }
  3228. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3229. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3230. _content = $$("div", {
  3231. className: "U_MD_D_KO",
  3232. "onmousedown": U.UF.C.closure(function (obj) {
  3233. //防止拖動圖標即打開了桌面應用
  3234. U.MD.D.click(this, obj);
  3235. }, [_studentDesktopIconInfo2[i]]),
  3236. "onclick": U.UF.C.closure(function (obj) {
  3237. //防止拖動圖標即打開了桌面應用
  3238. U.MD.D.click(this, obj);
  3239. }, [_studentDesktopIconInfo2[i]])
  3240. }, _frag); //
  3241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3244. }
  3245. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3246. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3247. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3248. continue
  3249. }
  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. }, [_wanketeacherDesktopIconInfo[i]]),
  3256. "onclick": U.UF.C.closure(function (obj) {
  3257. //防止拖動圖標即打開了桌面應用
  3258. U.MD.D.click(this, obj);
  3259. }, [_wanketeacherDesktopIconInfo[i]])
  3260. }, _frag); //
  3261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3264. }
  3265. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3266. for (i = 0; i < _wankeAdminDesktopIconInfo.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. }, [_wankeAdminDesktopIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖動圖標即打開了桌面應用
  3275. U.MD.D.click(this, obj);
  3276. }, [_wankeAdminDesktopIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3283. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3284. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3285. continue
  3286. }
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖動圖標即打開了桌面應用
  3291. U.MD.D.click(this, obj);
  3292. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖動圖標即打開了桌面應用
  3295. U.MD.D.click(this, obj);
  3296. }, [_scnuaiTeacherDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3303. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3304. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖動圖標即打開了桌面應用
  3311. U.MD.D.click(this, obj);
  3312. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖動圖標即打開了桌面應用
  3315. U.MD.D.click(this, obj);
  3316. }, [_BSDNSteacherDesktopIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3321. }
  3322. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3323. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3324. _content = $$("div", {
  3325. className: "U_MD_D_KO",
  3326. "onmousedown": U.UF.C.closure(function (obj) {
  3327. //防止拖動圖標即打開了桌面應用
  3328. U.MD.D.click(this, obj);
  3329. }, [_scnuaiAdminDeskIconInfo[i]]),
  3330. "onclick": U.UF.C.closure(function (obj) {
  3331. //防止拖動圖標即打開了桌面應用
  3332. U.MD.D.click(this, obj);
  3333. }, [_scnuaiAdminDeskIconInfo[i]])
  3334. }, _frag); //
  3335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3338. }
  3339. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3340. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3341. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3342. continue
  3343. }
  3344. _content = $$("div", {
  3345. className: "U_MD_D_KO",
  3346. "onmousedown": U.UF.C.closure(function (obj) {
  3347. //防止拖動圖標即打開了桌面應用
  3348. U.MD.D.click(this, obj);
  3349. }, [_jccssylTeacherDeskIconInfo[i]]),
  3350. "onclick": U.UF.C.closure(function (obj) {
  3351. //防止拖動圖標即打開了桌面應用
  3352. U.MD.D.click(this, obj);
  3353. }, [_jccssylTeacherDeskIconInfo[i]])
  3354. }, _frag); //
  3355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3358. }
  3359. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3360. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3361. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3362. continue
  3363. }
  3364. _content = $$("div", {
  3365. className: "U_MD_D_KO",
  3366. "onmousedown": U.UF.C.closure(function (obj) {
  3367. //防止拖動圖標即打開了桌面應用
  3368. U.MD.D.click(this, obj);
  3369. }, [_caleTeacherDeskIconInfo[i]]),
  3370. "onclick": U.UF.C.closure(function (obj) {
  3371. //防止拖動圖標即打開了桌面應用
  3372. U.MD.D.click(this, obj);
  3373. }, [_caleTeacherDeskIconInfo[i]])
  3374. }, _frag); //
  3375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3378. }
  3379. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3380. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3381. _content = $$("div", {
  3382. className: "U_MD_D_KO",
  3383. "onmousedown": U.UF.C.closure(function (obj) {
  3384. //防止拖動圖標即打開了桌面應用
  3385. U.MD.D.click(this, obj);
  3386. }, [_tpcOrganizerDeskIconInfo[i]]),
  3387. "onclick": U.UF.C.closure(function (obj) {
  3388. //防止拖動圖標即打開了桌面應用
  3389. U.MD.D.click(this, obj);
  3390. }, [_tpcOrganizerDeskIconInfo[i]])
  3391. }, _frag); //
  3392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3395. }
  3396. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3397. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3398. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3399. continue
  3400. }
  3401. _content = $$("div", {
  3402. className: "U_MD_D_KO",
  3403. "onmousedown": U.UF.C.closure(function (obj) {
  3404. //防止拖動圖標即打開了桌面應用
  3405. U.MD.D.click(this, obj);
  3406. }, [_tpcTeacherDeskIconInfo[i]]),
  3407. "onclick": U.UF.C.closure(function (obj) {
  3408. //防止拖動圖標即打開了桌面應用
  3409. U.MD.D.click(this, obj);
  3410. }, [_tpcTeacherDeskIconInfo[i]])
  3411. }, _frag); //
  3412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3415. }
  3416. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3417. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3418. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3419. continue
  3420. }
  3421. _content = $$("div", {
  3422. className: "U_MD_D_KO",
  3423. "onmousedown": U.UF.C.closure(function (obj) {
  3424. //防止拖動圖標即打開了桌面應用
  3425. U.MD.D.click(this, obj);
  3426. }, [_teacherDesktopIconInfo2[i]]),
  3427. "onclick": U.UF.C.closure(function (obj) {
  3428. //防止拖動圖標即打開了桌面應用
  3429. U.MD.D.click(this, obj);
  3430. }, [_teacherDesktopIconInfo2[i]])
  3431. }, _frag); //
  3432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3435. }
  3436. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3437. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3438. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3439. continue
  3440. }
  3441. _content = $$("div", {
  3442. className: "U_MD_D_KO",
  3443. "onmousedown": U.UF.C.closure(function (obj) {
  3444. //防止拖動圖標即打開了桌面應用
  3445. U.MD.D.click(this, obj);
  3446. }, [_thuioeTeacherDeskIconInfo[i]]),
  3447. "onclick": U.UF.C.closure(function (obj) {
  3448. //防止拖動圖標即打開了桌面應用
  3449. U.MD.D.click(this, obj);
  3450. }, [_thuioeTeacherDeskIconInfo[i]])
  3451. }, _frag); //
  3452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3455. }
  3456. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3457. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3458. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3459. continue
  3460. }
  3461. _content = $$("div", {
  3462. className: "U_MD_D_KO",
  3463. "onmousedown": U.UF.C.closure(function (obj) {
  3464. //防止拖動圖標即打開了桌面應用
  3465. U.MD.D.click(this, obj);
  3466. }, [_lotechTeacherDeskIconInfo[i]]),
  3467. "onclick": U.UF.C.closure(function (obj) {
  3468. //防止拖動圖標即打開了桌面應用
  3469. U.MD.D.click(this, obj);
  3470. }, [_lotechTeacherDeskIconInfo[i]])
  3471. }, _frag); //
  3472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3475. }//
  3476. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3477. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3478. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3479. continue
  3480. }
  3481. _content = $$("div", {
  3482. className: "U_MD_D_KO",
  3483. "onmousedown": U.UF.C.closure(function (obj) {
  3484. //防止拖動圖標即打開了桌面應用
  3485. U.MD.D.click(this, obj);
  3486. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3487. "onclick": U.UF.C.closure(function (obj) {
  3488. //防止拖動圖標即打開了桌面應用
  3489. U.MD.D.click(this, obj);
  3490. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3491. }, _frag); //
  3492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3495. }
  3496. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3497. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3498. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3499. continue
  3500. }
  3501. _content = $$("div", {
  3502. className: "U_MD_D_KO",
  3503. "onmousedown": U.UF.C.closure(function (obj) {
  3504. //防止拖動圖標即打開了桌面應用
  3505. U.MD.D.click(this, obj);
  3506. }, [_siesTeacherDeskIconInfo[i]]),
  3507. "onclick": U.UF.C.closure(function (obj) {
  3508. //防止拖動圖標即打開了桌面應用
  3509. U.MD.D.click(this, obj);
  3510. }, [_siesTeacherDeskIconInfo[i]])
  3511. }, _frag); //
  3512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3515. }
  3516. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3517. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3518. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3519. continue
  3520. }
  3521. _content = $$("div", {
  3522. className: "U_MD_D_KO",
  3523. "onmousedown": U.UF.C.closure(function (obj) {
  3524. //防止拖動圖標即打開了桌面應用
  3525. U.MD.D.click(this, obj);
  3526. }, [_guzmsTeacherDeskIconInfo[i]]),
  3527. "onclick": U.UF.C.closure(function (obj) {
  3528. //防止拖動圖標即打開了桌面應用
  3529. U.MD.D.click(this, obj);
  3530. }, [_guzmsTeacherDeskIconInfo[i]])
  3531. }, _frag); //
  3532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3535. }
  3536. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3537. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3538. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3539. continue
  3540. }
  3541. _content = $$("div", {
  3542. className: "U_MD_D_KO",
  3543. "onmousedown": U.UF.C.closure(function (obj) {
  3544. //防止拖動圖標即打開了桌面應用
  3545. U.MD.D.click(this, obj);
  3546. }, [_longhuaTeacherDeskIconInfo[i]]),
  3547. "onclick": U.UF.C.closure(function (obj) {
  3548. //防止拖動圖標即打開了桌面應用
  3549. U.MD.D.click(this, obj);
  3550. }, [_longhuaTeacherDeskIconInfo[i]])
  3551. }, _frag); //
  3552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3555. }
  3556. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3557. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3558. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3559. continue
  3560. }
  3561. _content = $$("div", {
  3562. className: "U_MD_D_KO",
  3563. "onmousedown": U.UF.C.closure(function (obj) {
  3564. //防止拖動圖標即打開了桌面應用
  3565. U.MD.D.click(this, obj);
  3566. }, [_ytyTeacherDeskIconInfo[i]]),
  3567. "onclick": U.UF.C.closure(function (obj) {
  3568. //防止拖動圖標即打開了桌面應用
  3569. U.MD.D.click(this, obj);
  3570. }, [_ytyTeacherDeskIconInfo[i]])
  3571. }, _frag); //
  3572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3575. }
  3576. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3577. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3578. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3579. continue
  3580. }
  3581. _content = $$("div", {
  3582. className: "U_MD_D_KO",
  3583. "onmousedown": U.UF.C.closure(function (obj) {
  3584. //防止拖動圖標即打開了桌面應用
  3585. U.MD.D.click(this, obj);
  3586. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3587. "onclick": U.UF.C.closure(function (obj) {
  3588. //防止拖動圖標即打開了桌面應用
  3589. U.MD.D.click(this, obj);
  3590. }, [_yunhaiTeacherDeskIconInfo[i]])
  3591. }, _frag); //
  3592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3595. } //_hkStudentDeskIconInfo
  3596. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3597. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3598. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3599. continue
  3600. }
  3601. _content = $$("div", {
  3602. className: "U_MD_D_KO",
  3603. "onmousedown": U.UF.C.closure(function (obj) {
  3604. //防止拖動圖標即打開了桌面應用
  3605. U.MD.D.click(this, obj);
  3606. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3607. "onclick": U.UF.C.closure(function (obj) {
  3608. //防止拖動圖標即打開了桌面應用
  3609. U.MD.D.click(this, obj);
  3610. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3611. }, _frag); //
  3612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3615. }
  3616. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3617. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3618. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3619. continue
  3620. }
  3621. _content = $$("div", {
  3622. className: "U_MD_D_KO",
  3623. "onmousedown": U.UF.C.closure(function (obj) {
  3624. //防止拖動圖標即打開了桌面應用
  3625. U.MD.D.click(this, obj);
  3626. }, [_ricohTeacherDeskIconInfo[i]]),
  3627. "onclick": U.UF.C.closure(function (obj) {
  3628. //防止拖動圖標即打開了桌面應用
  3629. U.MD.D.click(this, obj);
  3630. }, [_ricohTeacherDeskIconInfo[i]])
  3631. }, _frag); //
  3632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3635. }
  3636. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3637. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3638. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3639. continue
  3640. }
  3641. _content = $$("div", {
  3642. className: "U_MD_D_KO",
  3643. "onmousedown": U.UF.C.closure(function (obj) {
  3644. //防止拖動圖標即打開了桌面應用
  3645. U.MD.D.click(this, obj);
  3646. }, [_hkTeacherDeskIconInfo[i]]),
  3647. "onclick": U.UF.C.closure(function (obj) {
  3648. //防止拖動圖標即打開了桌面應用
  3649. U.MD.D.click(this, obj);
  3650. }, [_hkTeacherDeskIconInfo[i]])
  3651. }, _frag); //
  3652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3655. }
  3656. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3657. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3658. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3659. continue
  3660. }
  3661. _content = $$("div", {
  3662. className: "U_MD_D_KO",
  3663. "onmousedown": U.UF.C.closure(function (obj) {
  3664. //防止拖動圖標即打開了桌面應用
  3665. U.MD.D.click(this, obj);
  3666. }, [_tycyTeacherDeskIconInfo[i]]),
  3667. "onclick": U.UF.C.closure(function (obj) {
  3668. //防止拖動圖標即打開了桌面應用
  3669. U.MD.D.click(this, obj);
  3670. }, [_tycyTeacherDeskIconInfo[i]])
  3671. }, _frag); //
  3672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3675. }
  3676. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3677. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3678. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3679. continue
  3680. }
  3681. _content = $$("div", {
  3682. className: "U_MD_D_KO",
  3683. "onmousedown": U.UF.C.closure(function (obj) {
  3684. //防止拖動圖標即打開了桌面應用
  3685. U.MD.D.click(this, obj);
  3686. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3687. "onclick": U.UF.C.closure(function (obj) {
  3688. //防止拖動圖標即打開了桌面應用
  3689. U.MD.D.click(this, obj);
  3690. }, [_ckcpsTeacherDeskIconInfo[i]])
  3691. }, _frag); //
  3692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3695. }
  3696. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3697. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3698. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3699. continue
  3700. }
  3701. _content = $$("div", {
  3702. className: "U_MD_D_KO",
  3703. "onmousedown": U.UF.C.closure(function (obj) {
  3704. //防止拖動圖標即打開了桌面應用
  3705. U.MD.D.click(this, obj);
  3706. }, [_hkaceTeacherDeskIconInfo[i]]),
  3707. "onclick": U.UF.C.closure(function (obj) {
  3708. //防止拖動圖標即打開了桌面應用
  3709. U.MD.D.click(this, obj);
  3710. }, [_hkaceTeacherDeskIconInfo[i]])
  3711. }, _frag); //
  3712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3715. }
  3716. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3717. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3718. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3719. continue
  3720. }
  3721. _content = $$("div", {
  3722. className: "U_MD_D_KO",
  3723. "onmousedown": U.UF.C.closure(function (obj) {
  3724. //防止拖動圖標即打開了桌面應用
  3725. U.MD.D.click(this, obj);
  3726. }, [_cocobizTeacherDeskIconInfo[i]]),
  3727. "onclick": U.UF.C.closure(function (obj) {
  3728. //防止拖動圖標即打開了桌面應用
  3729. U.MD.D.click(this, obj);
  3730. }, [_cocobizTeacherDeskIconInfo[i]])
  3731. }, _frag); //
  3732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3735. }
  3736. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3737. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3738. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3739. continue
  3740. }
  3741. _content = $$("div", {
  3742. className: "U_MD_D_KO",
  3743. "onmousedown": U.UF.C.closure(function (obj) {
  3744. //防止拖動圖標即打開了桌面應用
  3745. U.MD.D.click(this, obj);
  3746. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3747. "onclick": U.UF.C.closure(function (obj) {
  3748. //防止拖動圖標即打開了桌面應用
  3749. U.MD.D.click(this, obj);
  3750. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3751. }, _frag); //
  3752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3755. }
  3756. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3757. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3758. _content = $$("div", {
  3759. className: "U_MD_D_KO",
  3760. "onmousedown": U.UF.C.closure(function (obj) {
  3761. //防止拖動圖標即打開了桌面應用
  3762. U.MD.D.click(this, obj);
  3763. }, [_gdjgAdminDeskIconInfo[i]]),
  3764. "onclick": U.UF.C.closure(function (obj) {
  3765. //防止拖動圖標即打開了桌面應用
  3766. U.MD.D.click(this, obj);
  3767. }, [_gdjgAdminDeskIconInfo[i]])
  3768. }, _frag); //
  3769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3772. }
  3773. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3774. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3775. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3776. continue
  3777. }
  3778. _content = $$("div", {
  3779. className: "U_MD_D_KO",
  3780. "onmousedown": U.UF.C.closure(function (obj) {
  3781. //防止拖動圖標即打開了桌面應用
  3782. U.MD.D.click(this, obj);
  3783. }, [_gdjgTeacherDeskIconInfo[i]]),
  3784. "onclick": U.UF.C.closure(function (obj) {
  3785. //防止拖動圖標即打開了桌面應用
  3786. U.MD.D.click(this, obj);
  3787. }, [_gdjgTeacherDeskIconInfo[i]])
  3788. }, _frag); //
  3789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3792. }
  3793. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3794. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3795. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3796. continue
  3797. }
  3798. _content = $$("div", {
  3799. className: "U_MD_D_KO",
  3800. "onmousedown": U.UF.C.closure(function (obj) {
  3801. //防止拖動圖標即打開了桌面應用
  3802. U.MD.D.click(this, obj);
  3803. }, [_szherTeacherDeskIconInfo[i]]),
  3804. "onclick": U.UF.C.closure(function (obj) {
  3805. //防止拖動圖標即打開了桌面應用
  3806. U.MD.D.click(this, obj);
  3807. }, [_szherTeacherDeskIconInfo[i]])
  3808. }, _frag); //
  3809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3812. }
  3813. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3814. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3815. _content = $$("div", {
  3816. className: "U_MD_D_KO",
  3817. "onmousedown": U.UF.C.closure(function (obj) {
  3818. //防止拖動圖標即打開了桌面應用
  3819. U.MD.D.click(this, obj);
  3820. }, [_heyuannAdminDeskIconInfo[i]]),
  3821. "onclick": U.UF.C.closure(function (obj) {
  3822. //防止拖動圖標即打開了桌面應用
  3823. U.MD.D.click(this, obj);
  3824. }, [_heyuannAdminDeskIconInfo[i]])
  3825. }, _frag); //
  3826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3829. }
  3830. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3831. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3832. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3833. continue
  3834. }
  3835. _content = $$("div", {
  3836. className: "U_MD_D_KO",
  3837. "onmousedown": U.UF.C.closure(function (obj) {
  3838. //防止拖動圖標即打開了桌面應用
  3839. U.MD.D.click(this, obj);
  3840. }, [_heyuanTeacherDeskIconInfo[i]]),
  3841. "onclick": U.UF.C.closure(function (obj) {
  3842. //防止拖動圖標即打開了桌面應用
  3843. U.MD.D.click(this, obj);
  3844. }, [_heyuanTeacherDeskIconInfo[i]])
  3845. }, _frag); //
  3846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3849. } //
  3850. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3851. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3852. _content = $$("div", {
  3853. className: "U_MD_D_KO",
  3854. "onmousedown": U.UF.C.closure(function (obj) {
  3855. //防止拖動圖標即打開了桌面應用
  3856. U.MD.D.click(this, obj);
  3857. }, [_dseiAdminDeskIconInfo[i]]),
  3858. "onclick": U.UF.C.closure(function (obj) {
  3859. //防止拖動圖標即打開了桌面應用
  3860. U.MD.D.click(this, obj);
  3861. }, [_dseiAdminDeskIconInfo[i]])
  3862. }, _frag); //
  3863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3866. }
  3867. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3868. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3869. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3870. continue
  3871. }
  3872. _content = $$("div", {
  3873. className: "U_MD_D_KO",
  3874. "onmousedown": U.UF.C.closure(function (obj) {
  3875. //防止拖動圖標即打開了桌面應用
  3876. U.MD.D.click(this, obj);
  3877. }, [_dseiTeacherDeskIconInfo[i]]),
  3878. "onclick": U.UF.C.closure(function (obj) {
  3879. //防止拖動圖標即打開了桌面應用
  3880. U.MD.D.click(this, obj);
  3881. }, [_dseiTeacherDeskIconInfo[i]])
  3882. }, _frag); //
  3883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3886. } //
  3887. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3888. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3889. _content = $$("div", {
  3890. className: "U_MD_D_KO",
  3891. "onmousedown": U.UF.C.closure(function (obj) {
  3892. //防止拖動圖標即打開了桌面應用
  3893. U.MD.D.click(this, obj);
  3894. }, [_chjyjAdminDeskIconInfo[i]]),
  3895. "onclick": U.UF.C.closure(function (obj) {
  3896. //防止拖動圖標即打開了桌面應用
  3897. U.MD.D.click(this, obj);
  3898. }, [_chjyjAdminDeskIconInfo[i]])
  3899. }, _frag); //
  3900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3903. }//
  3904. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3905. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3906. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3907. continue
  3908. }
  3909. _content = $$("div", {
  3910. className: "U_MD_D_KO",
  3911. "onmousedown": U.UF.C.closure(function (obj) {
  3912. //防止拖動圖標即打開了桌面應用
  3913. U.MD.D.click(this, obj);
  3914. }, [_chjyjTeacherDeskIconInfo[i]]),
  3915. "onclick": U.UF.C.closure(function (obj) {
  3916. //防止拖動圖標即打開了桌面應用
  3917. U.MD.D.click(this, obj);
  3918. }, [_chjyjTeacherDeskIconInfo[i]])
  3919. }, _frag); //
  3920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3923. }
  3924. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3925. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3926. _content = $$("div", {
  3927. className: "U_MD_D_KO",
  3928. "onmousedown": U.UF.C.closure(function (obj) {
  3929. //防止拖動圖標即打開了桌面應用
  3930. U.MD.D.click(this, obj);
  3931. }, [_szjkyAdminDeskIconInfo[i]]),
  3932. "onclick": U.UF.C.closure(function (obj) {
  3933. //防止拖動圖標即打開了桌面應用
  3934. U.MD.D.click(this, obj);
  3935. }, [_szjkyAdminDeskIconInfo[i]])
  3936. }, _frag); //
  3937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3940. }//
  3941. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3942. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3943. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3944. continue
  3945. }
  3946. _content = $$("div", {
  3947. className: "U_MD_D_KO",
  3948. "onmousedown": U.UF.C.closure(function (obj) {
  3949. //防止拖動圖標即打開了桌面應用
  3950. U.MD.D.click(this, obj);
  3951. }, [_szjkyTeacherDeskIconInfo[i]]),
  3952. "onclick": U.UF.C.closure(function (obj) {
  3953. //防止拖動圖標即打開了桌面應用
  3954. U.MD.D.click(this, obj);
  3955. }, [_szjkyTeacherDeskIconInfo[i]])
  3956. }, _frag); //
  3957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3960. }
  3961. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3962. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3963. _content = $$("div", {
  3964. className: "U_MD_D_KO",
  3965. "onmousedown": U.UF.C.closure(function (obj) {
  3966. //防止拖動圖標即打開了桌面應用
  3967. U.MD.D.click(this, obj);
  3968. }, [_x020201AdminDeskIconInfo[i]]),
  3969. "onclick": U.UF.C.closure(function (obj) {
  3970. //防止拖動圖標即打開了桌面應用
  3971. U.MD.D.click(this, obj);
  3972. }, [_x020201AdminDeskIconInfo[i]])
  3973. }, _frag); //
  3974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3977. }//
  3978. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3979. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3980. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3981. continue
  3982. }
  3983. _content = $$("div", {
  3984. className: "U_MD_D_KO",
  3985. "onmousedown": U.UF.C.closure(function (obj) {
  3986. //防止拖動圖標即打開了桌面應用
  3987. U.MD.D.click(this, obj);
  3988. }, [_x020201TeacherDeskIconInfo[i]]),
  3989. "onclick": U.UF.C.closure(function (obj) {
  3990. //防止拖動圖標即打開了桌面應用
  3991. U.MD.D.click(this, obj);
  3992. }, [_x020201TeacherDeskIconInfo[i]])
  3993. }, _frag); //
  3994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3997. }
  3998. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3999. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4000. _content = $$("div", {
  4001. className: "U_MD_D_KO",
  4002. "onmousedown": U.UF.C.closure(function (obj) {
  4003. //防止拖動圖標即打開了桌面應用
  4004. U.MD.D.click(this, obj);
  4005. }, [_SCNUETAdminDeskIconInfo[i]]),
  4006. "onclick": U.UF.C.closure(function (obj) {
  4007. //防止拖動圖標即打開了桌面應用
  4008. U.MD.D.click(this, obj);
  4009. }, [_SCNUETAdminDeskIconInfo[i]])
  4010. }, _frag); //
  4011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4014. }//
  4015. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4016. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4017. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4018. continue
  4019. }
  4020. _content = $$("div", {
  4021. className: "U_MD_D_KO",
  4022. "onmousedown": U.UF.C.closure(function (obj) {
  4023. //防止拖動圖標即打開了桌面應用
  4024. U.MD.D.click(this, obj);
  4025. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4026. "onclick": U.UF.C.closure(function (obj) {
  4027. //防止拖動圖標即打開了桌面應用
  4028. U.MD.D.click(this, obj);
  4029. }, [_SCNUETTeacherDeskIconInfo[i]])
  4030. }, _frag); //
  4031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4034. }
  4035. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4036. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4037. _content = $$("div", {
  4038. className: "U_MD_D_KO",
  4039. "onmousedown": U.UF.C.closure(function (obj) {
  4040. //防止拖動圖標即打開了桌面應用
  4041. U.MD.D.click(this, obj);
  4042. }, [_futianAdminDeskIconInfo[i]]),
  4043. "onclick": U.UF.C.closure(function (obj) {
  4044. //防止拖動圖標即打開了桌面應用
  4045. U.MD.D.click(this, obj);
  4046. }, [_futianAdminDeskIconInfo[i]])
  4047. }, _frag); //
  4048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4051. }
  4052. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4053. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4054. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4055. continue
  4056. }
  4057. _content = $$("div", {
  4058. className: "U_MD_D_KO",
  4059. "onmousedown": U.UF.C.closure(function (obj) {
  4060. //防止拖動圖標即打開了桌面應用
  4061. U.MD.D.click(this, obj);
  4062. }, [_futianTeacherDeskIconInfo[i]]),
  4063. "onclick": U.UF.C.closure(function (obj) {
  4064. //防止拖動圖標即打開了桌面應用
  4065. U.MD.D.click(this, obj);
  4066. }, [_futianTeacherDeskIconInfo[i]])
  4067. }, _frag); //
  4068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4071. }
  4072. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4073. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4074. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4075. continue
  4076. }
  4077. _content = $$("div", {
  4078. className: "U_MD_D_KO",
  4079. "onmousedown": U.UF.C.closure(function (obj) {
  4080. //防止拖動圖標即打開了桌面應用
  4081. U.MD.D.click(this, obj);
  4082. }, [_MingdeTeacherDeskIcon[i]]),
  4083. "onclick": U.UF.C.closure(function (obj) {
  4084. //防止拖動圖標即打開了桌面應用
  4085. U.MD.D.click(this, obj);
  4086. }, [_MingdeTeacherDeskIcon[i]])
  4087. }, _frag); //
  4088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4091. }
  4092. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4093. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4094. _content = $$("div", {
  4095. className: "U_MD_D_KO",
  4096. "onmousedown": U.UF.C.closure(function (obj) {
  4097. //防止拖動圖標即打開了桌面應用
  4098. U.MD.D.click(this, obj);
  4099. }, [_lhsAdminDesktopIconInfo[i]]),
  4100. "onclick": U.UF.C.closure(function (obj) {
  4101. //防止拖動圖標即打開了桌面應用
  4102. U.MD.D.click(this, obj);
  4103. }, [_lhsAdminDesktopIconInfo[i]])
  4104. }, _frag); //
  4105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4108. }
  4109. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4110. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4111. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4112. continue
  4113. }
  4114. _content = $$("div", {
  4115. className: "U_MD_D_KO",
  4116. "onmousedown": U.UF.C.closure(function (obj) {
  4117. //防止拖動圖標即打開了桌面應用
  4118. U.MD.D.click(this, obj);
  4119. }, [_lhsteacherDesktopIconInfo[i]]),
  4120. "onclick": U.UF.C.closure(function (obj) {
  4121. //防止拖動圖標即打開了桌面應用
  4122. U.MD.D.click(this, obj);
  4123. }, [_lhsteacherDesktopIconInfo[i]])
  4124. }, _frag); //
  4125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4128. }
  4129. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4130. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4131. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4132. continue
  4133. }
  4134. _content = $$("div", {
  4135. className: "U_MD_D_KO",
  4136. "onmousedown": U.UF.C.closure(function (obj) {
  4137. //防止拖動圖標即打開了桌面應用
  4138. U.MD.D.click(this, obj);
  4139. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4140. "onclick": U.UF.C.closure(function (obj) {
  4141. //防止拖動圖標即打開了桌面應用
  4142. U.MD.D.click(this, obj);
  4143. }, [_zhoujiateacherDesktopIconInfo[i]])
  4144. }, _frag); //
  4145. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4146. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4147. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4148. }
  4149. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4150. for (i = 0; i < _hanDeskIcon.length; i++) {
  4151. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4152. continue
  4153. }
  4154. _content = $$("div", {
  4155. className: "U_MD_D_KO",
  4156. "onmousedown": U.UF.C.closure(function (obj) {
  4157. //防止拖動圖標即打開了桌面應用
  4158. U.MD.D.click(this, obj);
  4159. }, [_hanDeskIcon[i]]),
  4160. "onclick": U.UF.C.closure(function (obj) {
  4161. //防止拖動圖標即打開了桌面應用
  4162. U.MD.D.click(this, obj);
  4163. }, [_hanDeskIcon[i]])
  4164. }, _frag); //
  4165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4168. }
  4169. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4170. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4171. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4172. continue
  4173. }
  4174. _content = $$("div", {
  4175. className: "U_MD_D_KO",
  4176. "onmousedown": U.UF.C.closure(function (obj) {
  4177. //防止拖動圖標即打開了桌面應用
  4178. U.MD.D.click(this, obj);
  4179. }, [_orgStemDeskIcon[i]]),
  4180. "onclick": U.UF.C.closure(function (obj) {
  4181. //防止拖動圖標即打開了桌面應用
  4182. U.MD.D.click(this, obj);
  4183. }, [_orgStemDeskIcon[i]])
  4184. }, _frag); //
  4185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4188. }
  4189. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4190. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4191. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4192. continue
  4193. }
  4194. _content = $$("div", {
  4195. className: "U_MD_D_KO",
  4196. "onmousedown": U.UF.C.closure(function (obj) {
  4197. //防止拖動圖標即打開了桌面應用
  4198. U.MD.D.click(this, obj);
  4199. }, [_szulsDeskIcon[i]]),
  4200. "onclick": U.UF.C.closure(function (obj) {
  4201. //防止拖動圖標即打開了桌面應用
  4202. U.MD.D.click(this, obj);
  4203. }, [_szulsDeskIcon[i]])
  4204. }, _frag); //
  4205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4208. }
  4209. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4210. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4211. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4212. continue
  4213. }
  4214. _content = $$("div", {
  4215. className: "U_MD_D_KO",
  4216. "onmousedown": U.UF.C.closure(function (obj) {
  4217. //防止拖動圖標即打開了桌面應用
  4218. U.MD.D.click(this, obj);
  4219. }, [_orgDesktopIconInfo[i]]),
  4220. "onclick": U.UF.C.closure(function (obj) {
  4221. //防止拖動圖標即打開了桌面應用
  4222. U.MD.D.click(this, obj);
  4223. }, [_orgDesktopIconInfo[i]])
  4224. }, _frag); //
  4225. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4226. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4227. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4228. }
  4229. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4230. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4231. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4232. continue
  4233. }
  4234. _content = $$("div", {
  4235. className: "U_MD_D_KO",
  4236. "onmousedown": U.UF.C.closure(function (obj) {
  4237. //防止拖動圖標即打開了桌面應用
  4238. U.MD.D.click(this, obj);
  4239. }, [_schoolDesktopIconInfo[i]]),
  4240. "onclick": U.UF.C.closure(function (obj) {
  4241. //防止拖動圖標即打開了桌面應用
  4242. U.MD.D.click(this, obj);
  4243. }, [_schoolDesktopIconInfo[i]])
  4244. }, _frag); //
  4245. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4246. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4247. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4248. }
  4249. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4250. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4251. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4252. continue
  4253. }
  4254. _content = $$("div", {
  4255. className: "U_MD_D_KO",
  4256. "onmousedown": U.UF.C.closure(function (obj) {
  4257. //防止拖動圖標即打開了桌面應用
  4258. U.MD.D.click(this, obj);
  4259. }, [_GMteacherDesktopIconInfo[i]]),
  4260. "onclick": U.UF.C.closure(function (obj) {
  4261. //防止拖動圖標即打開了桌面應用
  4262. U.MD.D.click(this, obj);
  4263. }, [_GMteacherDesktopIconInfo[i]])
  4264. }, _frag); //
  4265. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4266. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4267. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4268. }
  4269. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4270. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4271. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4272. continue
  4273. }
  4274. _content = $$("div", {
  4275. className: "U_MD_D_KO",
  4276. "onmousedown": U.UF.C.closure(function (obj) {
  4277. //防止拖動圖標即打開了桌面應用
  4278. U.MD.D.click(this, obj);
  4279. }, [_SONGteacherDesktopIconInfo[i]]),
  4280. "onclick": U.UF.C.closure(function (obj) {
  4281. //防止拖動圖標即打開了桌面應用
  4282. U.MD.D.click(this, obj);
  4283. }, [_SONGteacherDesktopIconInfo[i]])
  4284. }, _frag); //
  4285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4288. }
  4289. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4290. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4291. _content = $$("div", {
  4292. className: "U_MD_D_KO",
  4293. "onmousedown": U.UF.C.closure(function (obj) {
  4294. //防止拖動圖標即打開了桌面應用
  4295. U.MD.D.click(this, obj);
  4296. }, [_GMstudentDesktopIconInfo[i]]),
  4297. "onclick": U.UF.C.closure(function (obj) {
  4298. //防止拖動圖標即打開了桌面應用
  4299. U.MD.D.click(this, obj);
  4300. }, [_GMstudentDesktopIconInfo[i]])
  4301. }, _frag); //
  4302. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4303. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4304. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4305. }
  4306. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4307. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4308. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4309. continue
  4310. }
  4311. _content = $$("div", {
  4312. className: "U_MD_D_KO",
  4313. "onmousedown": U.UF.C.closure(function (obj) {
  4314. //防止拖動圖標即打開了桌面應用
  4315. U.MD.D.click(this, obj);
  4316. }, [_tcTeacherDeskIconInfo[i]]),
  4317. "onclick": U.UF.C.closure(function (obj) {
  4318. //防止拖動圖標即打開了桌面應用
  4319. U.MD.D.click(this, obj);
  4320. }, [_tcTeacherDeskIconInfo[i]])
  4321. }, _frag); //
  4322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4325. }
  4326. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4327. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4328. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4329. continue
  4330. }
  4331. _content = $$("div", {
  4332. className: "U_MD_D_KO",
  4333. "onmousedown": U.UF.C.closure(function (obj) {
  4334. //防止拖動圖標即打開了桌面應用
  4335. U.MD.D.click(this, obj);
  4336. }, [_tcOrganizerDeskIconInfo[i]]),
  4337. "onclick": U.UF.C.closure(function (obj) {
  4338. //防止拖動圖標即打開了桌面應用
  4339. U.MD.D.click(this, obj);
  4340. }, [_tcOrganizerDeskIconInfo[i]])
  4341. }, _frag); //
  4342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4345. }
  4346. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4347. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4348. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4349. continue
  4350. }
  4351. _content = $$("div", {
  4352. className: "U_MD_D_KO",
  4353. "onmousedown": U.UF.C.closure(function (obj) {
  4354. //防止拖動圖標即打開了桌面應用
  4355. U.MD.D.click(this, obj);
  4356. }, [_szscTeacherDeskIconInfo[i]]),
  4357. "onclick": U.UF.C.closure(function (obj) {
  4358. //防止拖動圖標即打開了桌面應用
  4359. U.MD.D.click(this, obj);
  4360. }, [_szscTeacherDeskIconInfo[i]])
  4361. }, _frag); //
  4362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4365. }
  4366. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4367. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4368. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4369. continue
  4370. }
  4371. _content = $$("div", {
  4372. className: "U_MD_D_KO",
  4373. "onmousedown": U.UF.C.closure(function (obj) {
  4374. //防止拖動圖標即打開了桌面應用
  4375. U.MD.D.click(this, obj);
  4376. }, [_szscOrganizerDeskIconInfo[i]]),
  4377. "onclick": U.UF.C.closure(function (obj) {
  4378. //防止拖動圖標即打開了桌面應用
  4379. U.MD.D.click(this, obj);
  4380. }, [_szscOrganizerDeskIconInfo[i]])
  4381. }, _frag); //
  4382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4385. }
  4386. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4387. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4388. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4389. continue
  4390. }
  4391. _content = $$("div", {
  4392. className: "U_MD_D_KO",
  4393. "onmousedown": U.UF.C.closure(function (obj) {
  4394. //防止拖動圖標即打開了桌面應用
  4395. U.MD.D.click(this, obj);
  4396. }, [_nsfxTeacherDeskIconInfo[i]]),
  4397. "onclick": U.UF.C.closure(function (obj) {
  4398. //防止拖動圖標即打開了桌面應用
  4399. U.MD.D.click(this, obj);
  4400. }, [_nsfxTeacherDeskIconInfo[i]])
  4401. }, _frag); //
  4402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4405. }
  4406. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4407. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4408. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4409. continue
  4410. }
  4411. _content = $$("div", {
  4412. className: "U_MD_D_KO",
  4413. "onmousedown": U.UF.C.closure(function (obj) {
  4414. //防止拖動圖標即打開了桌面應用
  4415. U.MD.D.click(this, obj);
  4416. }, [_stiaTeacherDeskIconInfo[i]]),
  4417. "onclick": U.UF.C.closure(function (obj) {
  4418. //防止拖動圖標即打開了桌面應用
  4419. U.MD.D.click(this, obj);
  4420. }, [_stiaTeacherDeskIconInfo[i]])
  4421. }, _frag); //
  4422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4425. }
  4426. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4427. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4428. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4429. continue
  4430. }
  4431. _content = $$("div", {
  4432. className: "U_MD_D_KO",
  4433. "onmousedown": U.UF.C.closure(function (obj) {
  4434. //防止拖動圖標即打開了桌面應用
  4435. U.MD.D.click(this, obj);
  4436. }, [_szdjgTeacherDeskIconInfo[i]]),
  4437. "onclick": U.UF.C.closure(function (obj) {
  4438. //防止拖動圖標即打開了桌面應用
  4439. U.MD.D.click(this, obj);
  4440. }, [_szdjgTeacherDeskIconInfo[i]])
  4441. }, _frag); //
  4442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4445. }
  4446. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4447. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4448. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4449. continue
  4450. }
  4451. _content = $$("div", {
  4452. className: "U_MD_D_KO",
  4453. "onmousedown": U.UF.C.closure(function (obj) {
  4454. //防止拖動圖標即打開了桌面應用
  4455. U.MD.D.click(this, obj);
  4456. }, [_x010607TeacherDeskIconInfo[i]]),
  4457. "onclick": U.UF.C.closure(function (obj) {
  4458. //防止拖動圖標即打開了桌面應用
  4459. U.MD.D.click(this, obj);
  4460. }, [_x010607TeacherDeskIconInfo[i]])
  4461. }, _frag); //
  4462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4465. }
  4466. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4467. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4468. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4469. continue
  4470. }
  4471. _content = $$("div", {
  4472. className: "U_MD_D_KO",
  4473. "onmousedown": U.UF.C.closure(function (obj) {
  4474. //防止拖動圖標即打開了桌面應用
  4475. U.MD.D.click(this, obj);
  4476. }, [_xhlyTeacherDeskIconInfo[i]]),
  4477. "onclick": U.UF.C.closure(function (obj) {
  4478. //防止拖動圖標即打開了桌面應用
  4479. U.MD.D.click(this, obj);
  4480. }, [_xhlyTeacherDeskIconInfo[i]])
  4481. }, _frag); //
  4482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4485. }
  4486. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4487. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4488. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4489. continue
  4490. }
  4491. _content = $$("div", {
  4492. className: "U_MD_D_KO",
  4493. "onmousedown": U.UF.C.closure(function (obj) {
  4494. //防止拖動圖標即打開了桌面應用
  4495. U.MD.D.click(this, obj);
  4496. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4497. "onclick": U.UF.C.closure(function (obj) {
  4498. //防止拖動圖標即打開了桌面應用
  4499. U.MD.D.click(this, obj);
  4500. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4501. }, _frag); //
  4502. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4503. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4504. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4505. }
  4506. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4507. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4508. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4509. continue
  4510. }
  4511. _content = $$("div", {
  4512. className: "U_MD_D_KO",
  4513. "onmousedown": U.UF.C.closure(function (obj) {
  4514. //防止拖動圖標即打開了桌面應用
  4515. U.MD.D.click(this, obj);
  4516. }, [_x010503TeacherDeskIconInfo[i]]),
  4517. "onclick": U.UF.C.closure(function (obj) {
  4518. //防止拖動圖標即打開了桌面應用
  4519. U.MD.D.click(this, obj);
  4520. }, [_x010503TeacherDeskIconInfo[i]])
  4521. }, _frag); //
  4522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4525. }
  4526. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4527. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4528. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4529. continue
  4530. }
  4531. _content = $$("div", {
  4532. className: "U_MD_D_KO",
  4533. "onmousedown": U.UF.C.closure(function (obj) {
  4534. //防止拖動圖標即打開了桌面應用
  4535. U.MD.D.click(this, obj);
  4536. }, [_x010504TeacherDeskIconInfo[i]]),
  4537. "onclick": U.UF.C.closure(function (obj) {
  4538. //防止拖動圖標即打開了桌面應用
  4539. U.MD.D.click(this, obj);
  4540. }, [_x010504TeacherDeskIconInfo[i]])
  4541. }, _frag); //
  4542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4545. }
  4546. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4547. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4548. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4549. continue
  4550. }
  4551. _content = $$("div", {
  4552. className: "U_MD_D_KO",
  4553. "onmousedown": U.UF.C.closure(function (obj) {
  4554. //防止拖動圖標即打開了桌面應用
  4555. U.MD.D.click(this, obj);
  4556. }, [_x010505TeacherDeskIconInfo[i]]),
  4557. "onclick": U.UF.C.closure(function (obj) {
  4558. //防止拖動圖標即打開了桌面應用
  4559. U.MD.D.click(this, obj);
  4560. }, [_x010505TeacherDeskIconInfo[i]])
  4561. }, _frag); //
  4562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4565. }
  4566. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4567. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4568. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4569. continue
  4570. }
  4571. _content = $$("div", {
  4572. className: "U_MD_D_KO",
  4573. "onmousedown": U.UF.C.closure(function (obj) {
  4574. //防止拖動圖標即打開了桌面應用
  4575. U.MD.D.click(this, obj);
  4576. }, [_x010404TeacherDeskIconInfo[i]]),
  4577. "onclick": U.UF.C.closure(function (obj) {
  4578. //防止拖動圖標即打開了桌面應用
  4579. U.MD.D.click(this, obj);
  4580. }, [_x010404TeacherDeskIconInfo[i]])
  4581. }, _frag); //
  4582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4585. }
  4586. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4587. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4588. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4589. continue
  4590. }
  4591. _content = $$("div", {
  4592. className: "U_MD_D_KO",
  4593. "onmousedown": U.UF.C.closure(function (obj) {
  4594. //防止拖動圖標即打開了桌面應用
  4595. U.MD.D.click(this, obj);
  4596. }, [_x010204TeacherDeskIconInfo[i]]),
  4597. "onclick": U.UF.C.closure(function (obj) {
  4598. //防止拖動圖標即打開了桌面應用
  4599. U.MD.D.click(this, obj);
  4600. }, [_x010204TeacherDeskIconInfo[i]])
  4601. }, _frag); //
  4602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4605. }
  4606. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4607. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4608. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4609. continue
  4610. }
  4611. _content = $$("div", {
  4612. className: "U_MD_D_KO",
  4613. "onmousedown": U.UF.C.closure(function (obj) {
  4614. //防止拖動圖標即打開了桌面應用
  4615. U.MD.D.click(this, obj);
  4616. }, [_x320101TeacherDeskIconInfo[i]]),
  4617. "onclick": U.UF.C.closure(function (obj) {
  4618. //防止拖動圖標即打開了桌面應用
  4619. U.MD.D.click(this, obj);
  4620. }, [_x320101TeacherDeskIconInfo[i]])
  4621. }, _frag); //
  4622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4625. }
  4626. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4627. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4628. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4629. continue
  4630. }
  4631. _content = $$("div", {
  4632. className: "U_MD_D_KO",
  4633. "onmousedown": U.UF.C.closure(function (obj) {
  4634. //防止拖動圖標即打開了桌面應用
  4635. U.MD.D.click(this, obj);
  4636. }, [_trailTeacherDeskIconInfo[i]]),
  4637. "onclick": U.UF.C.closure(function (obj) {
  4638. //防止拖動圖標即打開了桌面應用
  4639. U.MD.D.click(this, obj);
  4640. }, [_trailTeacherDeskIconInfo[i]])
  4641. }, _frag); //
  4642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4645. }
  4646. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4647. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4648. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4649. continue
  4650. }
  4651. _content = $$("div", {
  4652. className: "U_MD_D_KO",
  4653. "onmousedown": U.UF.C.closure(function (obj) {
  4654. //防止拖動圖標即打開了桌面應用
  4655. U.MD.D.click(this, obj);
  4656. }, [_trialTeacherDeskIconInfo[i]]),
  4657. "onclick": U.UF.C.closure(function (obj) {
  4658. //防止拖動圖標即打開了桌面應用
  4659. U.MD.D.click(this, obj);
  4660. }, [_trialTeacherDeskIconInfo[i]])
  4661. }, _frag); //
  4662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4665. }
  4666. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4667. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4668. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4669. continue
  4670. }
  4671. _content = $$("div", {
  4672. className: "U_MD_D_KO",
  4673. "onmousedown": U.UF.C.closure(function (obj) {
  4674. //防止拖動圖標即打開了桌面應用
  4675. U.MD.D.click(this, obj);
  4676. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4677. "onclick": U.UF.C.closure(function (obj) {
  4678. //防止拖動圖標即打開了桌面應用
  4679. U.MD.D.click(this, obj);
  4680. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4681. }, _frag); //
  4682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4685. }
  4686. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4687. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4688. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4689. continue
  4690. }
  4691. _content = $$("div", {
  4692. className: "U_MD_D_KO",
  4693. "onmousedown": U.UF.C.closure(function (obj) {
  4694. //防止拖動圖標即打開了桌面應用
  4695. U.MD.D.click(this, obj);
  4696. }, [_szsyTeacherDeskIconInfo[i]]),
  4697. "onclick": U.UF.C.closure(function (obj) {
  4698. //防止拖動圖標即打開了桌面應用
  4699. U.MD.D.click(this, obj);
  4700. }, [_szsyTeacherDeskIconInfo[i]])
  4701. }, _frag); //
  4702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4705. }
  4706. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4707. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4708. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4709. continue
  4710. }
  4711. _content = $$("div", {
  4712. className: "U_MD_D_KO",
  4713. "onmousedown": U.UF.C.closure(function (obj) {
  4714. //防止拖動圖標即打開了桌面應用
  4715. U.MD.D.click(this, obj);
  4716. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4717. "onclick": U.UF.C.closure(function (obj) {
  4718. //防止拖動圖標即打開了桌面應用
  4719. U.MD.D.click(this, obj);
  4720. }, [_demoCocoTeacherDeskIconInfo[i]])
  4721. }, _frag); //
  4722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4725. }
  4726. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4727. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4728. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4729. continue
  4730. }
  4731. _content = $$("div", {
  4732. className: "U_MD_D_KO",
  4733. "onmousedown": U.UF.C.closure(function (obj) {
  4734. //防止拖動圖標即打開了桌面應用
  4735. U.MD.D.click(this, obj);
  4736. }, [_x010608TeacherDeskIconInfo[i]]),
  4737. "onclick": U.UF.C.closure(function (obj) {
  4738. //防止拖動圖標即打開了桌面應用
  4739. U.MD.D.click(this, obj);
  4740. }, [_x010608TeacherDeskIconInfo[i]])
  4741. }, _frag); //
  4742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4745. }
  4746. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4747. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4748. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4749. continue
  4750. }
  4751. _content = $$("div", {
  4752. className: "U_MD_D_KO",
  4753. "onmousedown": U.UF.C.closure(function (obj) {
  4754. //防止拖動圖標即打開了桌面應用
  4755. U.MD.D.click(this, obj);
  4756. }, [_x010611TeacherDeskIconInfo[i]]),
  4757. "onclick": U.UF.C.closure(function (obj) {
  4758. //防止拖動圖標即打開了桌面應用
  4759. U.MD.D.click(this, obj);
  4760. }, [_x010611TeacherDeskIconInfo[i]])
  4761. }, _frag); //
  4762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4765. }
  4766. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4767. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4768. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4769. continue
  4770. }
  4771. _content = $$("div", {
  4772. className: "U_MD_D_KO",
  4773. "onmousedown": U.UF.C.closure(function (obj) {
  4774. //防止拖動圖標即打開了桌面應用
  4775. U.MD.D.click(this, obj);
  4776. }, [_x010612TeacherDeskIconInfo[i]]),
  4777. "onclick": U.UF.C.closure(function (obj) {
  4778. //防止拖動圖標即打開了桌面應用
  4779. U.MD.D.click(this, obj);
  4780. }, [_x010612TeacherDeskIconInfo[i]])
  4781. }, _frag); //
  4782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4785. }
  4786. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4787. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4788. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4789. continue
  4790. }
  4791. _content = $$("div", {
  4792. className: "U_MD_D_KO",
  4793. "onmousedown": U.UF.C.closure(function (obj) {
  4794. //防止拖動圖標即打開了桌面應用
  4795. U.MD.D.click(this, obj);
  4796. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4797. "onclick": U.UF.C.closure(function (obj) {
  4798. //防止拖動圖標即打開了桌面應用
  4799. U.MD.D.click(this, obj);
  4800. }, [_tianyuanTeacherDeskIconInfo[i]])
  4801. }, _frag); //
  4802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4805. }
  4806. }else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4807. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  4808. if(_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher'){
  4809. continue
  4810. }
  4811. _content = $$("div", {
  4812. className: "U_MD_D_KO",
  4813. "onmousedown": U.UF.C.closure(function (obj) {
  4814. //防止拖動圖標即打開了桌面應用
  4815. U.MD.D.click(this, obj);
  4816. }, [_MOAITeacherDeskIcon[i]]),
  4817. "onclick": U.UF.C.closure(function (obj) {
  4818. //防止拖動圖標即打開了桌面應用
  4819. U.MD.D.click(this, obj);
  4820. }, [_MOAITeacherDeskIcon[i]])
  4821. }, _frag); //
  4822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  4824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  4825. }
  4826. }else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4827. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  4828. _content = $$("div", {
  4829. className: "U_MD_D_KO",
  4830. "onmousedown": U.UF.C.closure(function (obj) {
  4831. //防止拖動圖標即打開了桌面應用
  4832. U.MD.D.click(this, obj);
  4833. }, [_MOAIStudentDeskIcon[i]]),
  4834. "onclick": U.UF.C.closure(function (obj) {
  4835. //防止拖動圖標即打開了桌面應用
  4836. U.MD.D.click(this, obj);
  4837. }, [_MOAIStudentDeskIcon[i]])
  4838. }, _frag); //
  4839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  4841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  4842. }
  4843. } else {
  4844. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4845. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4846. continue
  4847. }
  4848. _content = $$("div", {
  4849. className: "U_MD_D_KO",
  4850. "onmousedown": U.UF.C.closure(function (obj) {
  4851. //防止拖動圖標即打開了桌面應用
  4852. U.MD.D.click(this, obj);
  4853. }, [_teacherDesktopIconInfo[i]]),
  4854. "onclick": U.UF.C.closure(function (obj) {
  4855. //防止拖動圖標即打開了桌面應用
  4856. U.MD.D.click(this, obj);
  4857. }, [_teacherDesktopIconInfo[i]])
  4858. }, _frag); //
  4859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4862. }
  4863. }
  4864. } else {
  4865. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4866. _content = $$("div", {
  4867. className: "U_MD_D_KO",
  4868. style: { 'width': '124px', 'height': '145px' },
  4869. "onmousedown": U.UF.C.closure(function (obj) {
  4870. //防止拖動圖標即打開了桌面應用
  4871. U.MD.D.click(this, obj);
  4872. }, [_easyDesktopIconInfo[i]]),
  4873. "onclick": U.UF.C.closure(function (obj) {
  4874. //防止拖動圖標即打開了桌面應用
  4875. U.MD.D.click(this, obj);
  4876. }, [_easyDesktopIconInfo[i]])
  4877. }, _frag); //
  4878. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4881. }
  4882. }
  4883. if (type == 1) {
  4884. //加載好後給圖標定位
  4885. U.MD.D.iconPostion($(_frag).Child());
  4886. } else {
  4887. //加載好後給圖標定位
  4888. U.MD.D.iconPostion2($(_frag).Child());
  4889. }
  4890. //把圖標加載到頁面
  4891. el.appendChild(_frag);
  4892. }
  4893. /**
  4894. * 顯示任務欄
  4895. *
  4896. * @param {element} 桌面元素
  4897. */
  4898. U.MD.D.I.displayTaskbar = function (el) {
  4899. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4900. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4901. //任務欄位置變化
  4902. U.selectEl(el).css({ "bottom": "0px" });
  4903. //桌面位置變話
  4904. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4905. }
  4906. }
  4907. //#region 桌面圖標拖動邏輯
  4908. /**
  4909. * 桌面排列圖標
  4910. *
  4911. * @param {element} 桌面元素
  4912. * @param {object} 上下相距的距離
  4913. * @param {object} 左右相距的距離
  4914. * @return {object} 命名空間
  4915. */
  4916. U.MD.D.iconPostion = function (childs, top, left) {
  4917. var i; //用於循環處理
  4918. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4919. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4920. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4921. for (i = 0; i < childs.length; i++) {
  4922. //如果豎排top超過了範圍處理
  4923. if (top + 95 > US.height - 10) {
  4924. //left超過了頁面範圍處理,則嚮上重疊打印處理
  4925. if ((left + 180) > US.width) {
  4926. top -= 110;
  4927. left -= 90;
  4928. }
  4929. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4930. else {
  4931. left += 90;
  4932. top = 15;
  4933. };
  4934. }
  4935. //給圖標的位置賦值
  4936. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4937. if (i < childs.length - 1) {
  4938. //頁面圖標每次嚮下加95
  4939. top += 95;
  4940. }
  4941. }
  4942. //返回最後調用的圖標的位置
  4943. return [top, left];
  4944. }
  4945. /**
  4946. * 桌面排列圖標
  4947. *
  4948. * @param {element} 桌面元素
  4949. * @param {object} 上下相距的距離
  4950. * @param {object} 左右相距的距離
  4951. * @return {object} 命名空間
  4952. */
  4953. U.MD.D.iconPostion2 = function (childs, top, left) {
  4954. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4955. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4956. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4957. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4958. for (i = 0; i < childs.length; i++) {
  4959. //如果豎排top超過了範圍處理
  4960. if (left + 150 > US.width - 10) {
  4961. //left超過了頁面範圍處理,則嚮上重疊打印處理
  4962. if ((top + 180) > US.Height) {
  4963. top -= 150;
  4964. left -= 150;
  4965. }
  4966. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4967. else {
  4968. top += 150;
  4969. left = ol;
  4970. };
  4971. }
  4972. //給圖標的位置賦值
  4973. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4974. if (i < childs.length - 1) {
  4975. //頁面圖標每次嚮下加95
  4976. left += 150;
  4977. }
  4978. }
  4979. //返回最後調用的圖標的位置
  4980. return [top, left];
  4981. }
  4982. /**
  4983. * 桌面點擊事件邏輯
  4984. *
  4985. * @param {element} 桌面元素
  4986. * @param {object} 上下相距的距離
  4987. * @param {object} 左右相距的距離
  4988. * @return {object} 命名空間
  4989. */
  4990. U.MD.D.click = function (el, obj) {
  4991. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4992. var _userinfo = US.userInfo;
  4993. U.UF.EV.stopBubble(); //阻止嚮上冒泡
  4994. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4995. if (_buttonnumber < 2) {
  4996. //如果是click事件的處理
  4997. if (event.type == "click") {
  4998. //如果元素在mousemove事件中沒有移動則出發click事件
  4999. if (!U.MD.D.I.IsDrag) {
  5000. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5001. U.alert("請先登錄您的賬號!");
  5002. setTimeout(() => {
  5003. U.MD.U.L.login();
  5004. }, 2000);
  5005. } else {
  5006. //打開應用處理
  5007. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5008. }
  5009. }
  5010. }
  5011. //如果是mouse事件的處理
  5012. else {
  5013. if (US.Config.type == '1') {
  5014. //拖動處理,添加拖動和拖動結束事件
  5015. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5016. }
  5017. }
  5018. U.MD.D.I.IsDrag = false;
  5019. }
  5020. }
  5021. /**
  5022. * 拖動的處理
  5023. *
  5024. */
  5025. U.MD.D.iconMove = function () {
  5026. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  5027. U.MD.D.I.IsDrag = true;
  5028. }
  5029. /**
  5030. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  5031. *
  5032. * @param {element} 拖動的元素
  5033. * @return {object} 命名空間
  5034. */
  5035. U.MD.D.iconUp = function (el) {
  5036. var _top = 15,
  5037. _left = 20,
  5038. _margin,
  5039. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  5040. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  5041. if (_positioninfo["OT"] > 15) {
  5042. //網狀的形式定位,如果差超過了55,那麼嚮下定位,否則嚮上定位
  5043. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5044. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5045. }
  5046. if (_positioninfo["OL"] > 20) {
  5047. //網狀的形式定位,如果差超過了90,那麼嚮右定位,否則嚮左定位
  5048. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5049. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5050. }
  5051. //while循環判斷麼一個重疊的元素
  5052. do {
  5053. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素嚮下定位
  5054. _top = _positioninfo[0] + 95; //得到定位後的top
  5055. _left = _positioninfo[1]; //得到定位後的left
  5056. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5057. }
  5058. /**
  5059. * 判斷拖動後圖標是否重疊
  5060. *
  5061. * @param {element} 拖動的元素
  5062. * @param {element} 桌面所有的元素
  5063. * @param {array} 拖動元素的位置
  5064. ----------[0] 上 top
  5065. ----------[1] 左 left
  5066. * @return {object} 命名空間
  5067. */
  5068. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5069. //循環所有的圖標
  5070. for (var i = 0; i < childs.length; i++) {
  5071. //判斷有沒有和該圖標誒子重疊的元素
  5072. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5073. return childs[i]; //如果有返回
  5074. }
  5075. }
  5076. }
  5077. //#endregion
  5078. //#endregion
  5079. //#region 桌面應用
  5080. /**
  5081. * 打開應用
  5082. *
  5083. * @param {string} 類型
  5084. -----------------Disk 網盤繫統
  5085. -----------------PDisk 學習繫統網盤
  5086. -----------------Poto 圖片
  5087. -----------------Video 視頻
  5088. -----------------Music 音樂
  5089. -----------------Word word
  5090. -----------------Excel excel
  5091. -----------------Txt 記事本
  5092. -----------------PB 學習繫統
  5093. -----------------Blog 朋友圈繫統
  5094. -----------------FTP ftp繫統
  5095. -----------------Group 好友群
  5096. -----------------SY 首頁繫統
  5097. -----------------Set 個人設置
  5098. -----------------XSet 繫統設置
  5099. -----------------App 我們所有的app
  5100. -----------------BC c.1473.cn 平臺
  5101. -----------------CWeb d.1473.cn 變成平臺
  5102. -----------------其他的外聯繫統 我們統一用iframe打開
  5103. * @param {array} 類型
  5104. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  5105. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  5106. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  5107. 如果第一個參數為其他,則無第二個參數
  5108. * @returns {array}
  5109. */
  5110. window.addEventListener('message', function (e) { // 監聽 message 事件
  5111. // alert(e.data.type);
  5112. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  5113. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5114. //3是展示全部階段 2學生 1老師 4專家
  5115. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  5116. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5117. //3是展示全部階段 2學生 1老師 4專家
  5118. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  5119. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5120. //3是展示全部階段 2學生 1老師 4專家
  5121. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  5122. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5123. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  5124. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5125. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  5126. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5127. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  5128. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5129. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  5130. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5131. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  5132. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5133. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  5134. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5135. //3是展示全部階段 2學生 1老師 4專家
  5136. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  5137. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5138. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  5139. U.MD.D.I.selectUser();
  5140. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5141. var _formel = document.getElementById("study");
  5142. U.UF.F.windowZooming(_formel);
  5143. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5144. var _formel = document.getElementById("studyDetail");
  5145. U.UF.F.windowZooming(_formel);
  5146. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5147. var _formel = document.getElementById("studyDetail");
  5148. U.UF.F.windowZooming(_formel);
  5149. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5150. var _formel = document.getElementById("studentStudy");
  5151. U.UF.F.windowZooming(_formel);
  5152. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5153. // var _formel = document.getElementById("study");
  5154. //如果最大化了,那麼就把他縮小
  5155. // if (_formel.ismaximize) {
  5156. // return;
  5157. // }
  5158. // U.UF.F.windowZooming(_formel);
  5159. // U.UF.F.topWindow(_formel);
  5160. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5161. // var _formel = document.getElementById("studyDetail");
  5162. //如果最大化了,那麼就把他縮小
  5163. // if (_formel.ismaximize) {
  5164. // return;
  5165. // }
  5166. // U.UF.F.windowZooming(_formel);
  5167. // U.UF.F.topWindow(_formel);
  5168. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5169. // var _formel = document.getElementById("studentStudy");
  5170. // if (_formel.ismaximize) {
  5171. // return;
  5172. // }
  5173. // U.UF.F.windowZooming(_formel);
  5174. // U.UF.F.topWindow(_formel);
  5175. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5176. var _formel = document.getElementById("study");
  5177. // if (_formel.ismaximize) {
  5178. // return;
  5179. // }
  5180. // U.UF.F.windowZooming(_formel);
  5181. U.UF.F.topWindow(_formel);
  5182. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5183. var _formel = document.getElementById("studentIndex");
  5184. U.UF.F.windowZooming(_formel);
  5185. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5186. var _formel = document.getElementById("studyDetailS");
  5187. U.UF.F.windowZooming(_formel);
  5188. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5189. var _formel = document.getElementById("studioIndex");
  5190. U.UF.F.windowZooming(_formel);
  5191. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5192. var _formel = document.getElementById("studyDetailStudio");
  5193. U.UF.F.windowZooming(_formel);
  5194. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5195. var _formel = document.getElementById("studyDetailStudio");
  5196. U.UF.F.windowZooming(_formel);
  5197. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5198. var _formel = document.getElementById("studyDetailNT");
  5199. U.UF.F.windowZooming(_formel);
  5200. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5201. var _formel = document.getElementById("studyDetailS");
  5202. U.UF.F.windowZooming(_formel);
  5203. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5204. var _formel = document.getElementById("studyDetailS");
  5205. U.UF.F.topWindow(_formel);
  5206. } else if (e.data.tools && e.data.tools == "1") {
  5207. // U.MD.D.I.openApplication("whiteboard")
  5208. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5209. } else if (e.data.tools && e.data.tools == "2") {
  5210. U.MD.D.I.openApplication("note")
  5211. } else if (e.data.tools && e.data.tools == "3") {
  5212. // U.MD.D.I.openApplication("mind")
  5213. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5214. } else if (e.data.tools && e.data.tools == "4") {
  5215. U.MD.D.I.openApplication("investigation")
  5216. } else if (e.data.tools && e.data.tools == "6") {
  5217. // U.MD.D.I.openApplication("doc")
  5218. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5219. } else if (e.data.tools && e.data.tools == "7") {
  5220. // U.MD.D.I.openApplication("mindNetwork")
  5221. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5222. } else if (e.data.tools && e.data.tools == "8") {
  5223. U.MD.D.I.openApplication("library")
  5224. } else if (e.data.tools && e.data.tools == "17") {
  5225. U.MD.D.I.openApplication("stuLibrary")
  5226. } else if (e.data.tools && e.data.tools == "18") {
  5227. U.MD.D.I.openApplication("train")
  5228. } else if (e.data.tools && e.data.tools == "21") {
  5229. U.MD.D.I.openApplication("program")
  5230. } else if (e.data.tools && e.data.tools == "22") {
  5231. U.MD.D.I.openApplication("AIprogram2")
  5232. } else if (e.data.tools && e.data.tools == "23") {
  5233. U.MD.D.I.openApplication("Pythonprogram")
  5234. } else if (e.data.tools && e.data.tools == "24") {
  5235. U.MD.D.I.openApplication("AIprogram")
  5236. } else if (e.data.tools && e.data.tools == "25") {
  5237. U.MD.D.I.openApplication("sys")
  5238. } else if (e.data.tools && e.data.tools == "26") {
  5239. // U.MD.D.I.openApplication("courseDesign")
  5240. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5241. } else if (e.data.tools && e.data.tools == "31") {
  5242. U.MD.D.I.openApplication("netWorkPanel")
  5243. } else if (e.data.tools && e.data.tools == "32") {
  5244. U.MD.D.I.openApplication("codeEdit")
  5245. } else if (e.data.tools && e.data.tools == "57") {
  5246. U.MD.D.I.openApplication("CocoPi")
  5247. } else if (e.data.tools && e.data.tools == "63") {
  5248. U.MD.D.I.openApplication("Wood")
  5249. } else if (e.data.tools && e.data.tools == "58") {
  5250. U.MD.D.I.openApplication("car")
  5251. } else if (e.data.tools && e.data.tools == "59") {
  5252. U.MD.D.I.openApplication("lineSearch")
  5253. } else if (e.data.tools && e.data.tools == "60") {
  5254. U.MD.D.I.openApplication("deepLearning")
  5255. } else if (e.data.tools && e.data.tools == "61") {
  5256. U.MD.D.I.openApplication("allHistory")
  5257. } else if (e.data.tools && e.data.tools == "28") {
  5258. U.MD.D.I.openApplication("translation")
  5259. } else if (e.data.tools && e.data.tools == "37") {
  5260. U.MD.D.I.openApplication("mohe")
  5261. } else if (e.data.tools && e.data.tools == "38") {
  5262. U.MD.D.I.openApplication("24game")
  5263. } else if (e.data.tools && e.data.tools == "39") {
  5264. U.MD.D.I.openApplication("GeoGebra")
  5265. } else if (e.data.tools && e.data.tools == "43") {
  5266. U.MD.D.I.openApplication("studentEvaluate")
  5267. } else if (e.data.tools && e.data.tools == "44") {
  5268. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5269. } else if (e.data.tools && e.data.tools == "46") {
  5270. U.MD.D.I.openApplication("project")
  5271. } else if (e.data.tools && e.data.tools == "71") {
  5272. U.MD.D.I.openApplication("aigptCourse")
  5273. } else if (e.data.tools && e.data.tools == "72") {
  5274. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5275. } else if (e.data.tools && e.data.tools == "1s") {
  5276. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5277. } else if (e.data.tools && e.data.tools == "3s") {
  5278. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5279. } else if (e.data.tools && e.data.tools == "6s") {
  5280. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5281. } else if (e.data.tools && e.data.tools == "1studio") {
  5282. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5283. } else if (e.data.tools && e.data.tools == "3studio") {
  5284. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5285. } else if (e.data.tools && e.data.tools == "6studio") {
  5286. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5287. } else if (e.data.tools && e.data.tools == "3y") {
  5288. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5289. } else if (e.data.tools && e.data.tools == "1y") {
  5290. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5291. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5292. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5293. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5294. U.MD.D.I.openApplication("AIAnalyse")
  5295. } else if (e.data.tools && e.data.tools == "1teacher") {
  5296. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5297. } else if (e.data.tools && e.data.tools == "3teacher") {
  5298. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5299. } else if (e.data.tools && e.data.tools == "7teacher") {
  5300. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5301. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5302. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5303. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5304. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5305. } else if (e.data.tools && e.data.tools == "1E") {
  5306. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5307. } else if (e.data.tools && e.data.tools == "3E") {
  5308. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5309. } else if (e.data.tools && e.data.tools == "57y") {
  5310. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5311. } else if (e.data.tools && e.data.tools == "57u") {
  5312. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5313. } else if (e.data.tools && e.data.tools == "57teacher") {
  5314. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5315. } else if (e.data.tools && e.data.tools == "64") {
  5316. U.MD.D.I.openApplication("AIChat")
  5317. } else if (e.data.tools && e.data.tools == "66") {
  5318. U.MD.D.I.openApplication("formulaEdi")
  5319. } else if (e.data.tools && e.data.tools == "67") {
  5320. U.MD.D.I.openApplication("molStr")
  5321. } else if (e.data.tools && e.data.tools == "68") {
  5322. U.MD.D.I.openApplication("timeAxis")
  5323. } else if (e.data.tools && e.data.tools == "openCourse") {
  5324. let _data = {
  5325. typea: e.data.typea || '',
  5326. typeb: e.data.typeb || '',
  5327. typed: e.data.typed || '',
  5328. }
  5329. U.MD.D.I.openInApplication("index", _data)
  5330. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5331. let _data = {
  5332. classid: e.data.classid || '',
  5333. }
  5334. U.MD.D.I.openInApplication("dataClass", _data)
  5335. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5336. let _data = {
  5337. cid: e.data.cid || '',
  5338. gid: e.data.gid || '',
  5339. }
  5340. U.MD.D.I.openInApplication("opencCscl", _data)
  5341. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5342. U.MD.D.I.openApplication("dataBoardTest")
  5343. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5344. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5345. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5346. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5347. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5348. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5349. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5350. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5351. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5352. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5353. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5354. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5355. }else if (e.data.tools && e.data.tools == "loginSz") {
  5356. U.MD.D.I.openInApplication("loginSz")
  5357. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5358. if($('#classroom_observation_board')[0]){
  5359. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5360. }
  5361. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5362. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5363. if($('#classroom_observation_ob_comment')[0]){
  5364. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5365. }
  5366. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5367. }else if (e.data.tools && e.data.tools == "logout"){
  5368. U.MD.U.LO.logoutSystem()
  5369. }else if (e.data.tools && e.data.tools == "getLogin"){
  5370. let _iframe = $('#UI_Login')[0];
  5371. if (_iframe) {
  5372. var userInfo = US.userInfo;
  5373. var type = 2
  5374. if(userInfo && userInfo.userid){
  5375. type = 1
  5376. }
  5377. _contentWindow = _iframe.contentWindow;
  5378. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5379. }
  5380. }
  5381. });
  5382. U.MD.D.I.selectUser = function () {
  5383. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5384. if (res.value[0].length > 0) {
  5385. US.userInfo = res.value[0][0];
  5386. $(".userName")[0].innerHTML = US.userInfo.username;
  5387. }
  5388. }, [], { "type": "GET", "withCredentials": true });
  5389. }
  5390. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5391. var _userinfo = US.userInfo, //登錄用戶信息
  5392. _userid = US.userInfo.userid, //登錄用戶id
  5393. _oid = _userinfo.organizeid,
  5394. _type = US.userInfo.type,
  5395. _org = US.userInfo.org,
  5396. _role = US.userInfo.role,
  5397. _classId = US.userInfo.classid;
  5398. if (_type == 4) {
  5399. tType = 4
  5400. }
  5401. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5402. if(opArray.includes(str)){
  5403. let _str = str
  5404. if(str == 'appStore'){
  5405. _str = "cocoFlow"
  5406. }else if(str == "futureClass"){
  5407. _str = "cocoNote"
  5408. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5409. _str = "IntelligentForm"
  5410. }else if(str == "testStudent" || str == "testStudentSies"){
  5411. _str = "TeacherCenter"
  5412. }
  5413. try {
  5414. if (data) {
  5415. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5416. }else {
  5417. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5418. }
  5419. } catch (error) {
  5420. console.log(error);
  5421. }
  5422. }
  5423. switch (str) {
  5424. case "studyDetailNT": //無終端模式
  5425. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5426. setTimeout(() => {
  5427. U.MD.U.L.login();
  5428. }, 2000);
  5429. } else {
  5430. _formdiv = new U.UF.UI.form(
  5431. "課程詳情",
  5432. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5433. "id": "studyDetailNT",
  5434. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //創建窗體
  5439. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5440. break;
  5441. }
  5442. case "studyDetail":
  5443. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5444. setTimeout(() => {
  5445. U.MD.U.L.login();
  5446. }, 2000);
  5447. } else {
  5448. _formdiv = new U.UF.UI.form(
  5449. "課程詳情",
  5450. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5451. "id": "studyDetail",
  5452. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5453. "onresize": function () { }
  5454. }, {
  5455. closecallback: function () { }
  5456. }, { "style": { "height": "36px" } }).form; //創建窗體
  5457. _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); } }
  5458. break;
  5459. }
  5460. case "studyDetailTrain":
  5461. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5462. setTimeout(() => {
  5463. U.MD.U.L.login();
  5464. }, 2000);
  5465. } else {
  5466. _formdiv = new U.UF.UI.form(
  5467. "培訓詳情",
  5468. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5469. "id": "studyDetailTrain",
  5470. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5471. "onresize": function () { }
  5472. }, {
  5473. closecallback: function () { }
  5474. }, { "style": { "height": "36px" } }).form; //創建窗體
  5475. _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); } }
  5476. break;
  5477. }
  5478. case "studyDetailS":
  5479. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5480. setTimeout(() => {
  5481. U.MD.U.L.login();
  5482. }, 2000);
  5483. } else {
  5484. _formdiv = new U.UF.UI.form(
  5485. "項目詳情",
  5486. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5487. "id": "studyDetailS",
  5488. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5489. "onresize": function () { }
  5490. }, {
  5491. closecallback: function () { }
  5492. }, { "style": { "height": "36px" } }).form; //創建窗體
  5493. _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); } }
  5494. break;
  5495. }
  5496. case "studyDetailStudio":
  5497. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5498. setTimeout(() => {
  5499. U.MD.U.L.login();
  5500. }, 2000);
  5501. } else {
  5502. _formdiv = new U.UF.UI.form(
  5503. "工作詳情",
  5504. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5505. "id": "studyDetailStudio",
  5506. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //創建窗體
  5511. _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); } }
  5512. break;
  5513. }
  5514. case "studyDetailS5":
  5515. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5516. setTimeout(() => {
  5517. U.MD.U.L.login();
  5518. }, 2000);
  5519. } else {
  5520. _formdiv = new U.UF.UI.form(
  5521. "項目詳情",
  5522. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5523. "id": "studyDetailS",
  5524. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () { }
  5528. }, { "style": { "height": "36px" } }).form; //創建窗體
  5529. _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); } }
  5530. break;
  5531. }
  5532. case "studyDetailGM":
  5533. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5534. setTimeout(() => {
  5535. U.MD.U.L.login();
  5536. }, 2000);
  5537. } else {
  5538. _formdiv = new U.UF.UI.form(
  5539. "課程詳情",
  5540. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5541. "id": "studyDetail",
  5542. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //創建窗體
  5547. _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); } }
  5548. break;
  5549. }
  5550. case "hanUrl":
  5551. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5552. setTimeout(() => {
  5553. U.MD.U.L.login();
  5554. }, 2000);
  5555. } else {
  5556. _formdiv = new U.UF.UI.form(
  5557. "漢字宮",
  5558. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  5559. "id": "hanUrl",
  5560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, { "style": { "height": "36px" } }).form; //創建窗體
  5565. _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); } }
  5566. break;
  5567. }
  5568. case "index":
  5569. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5570. setTimeout(() => {
  5571. U.MD.U.L.login();
  5572. }, 2000);
  5573. } else {
  5574. _formdiv = new U.UF.UI.form(
  5575. "課程中心",
  5576. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  5577. "id": "study",
  5578. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5579. "onresize": function () { }
  5580. }, {
  5581. closecallback: function () { }
  5582. }, { "style": { "height": "36px" } }).form; //創建窗體
  5583. _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); } }
  5584. break;
  5585. }
  5586. case "dataClass":
  5587. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5588. setTimeout(() => {
  5589. U.MD.U.L.login();
  5590. }, 2000);
  5591. } else {
  5592. _formdiv = new U.UF.UI.form(
  5593. "數據報告",
  5594. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  5595. "id": "dataClass",
  5596. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5597. "onresize": function () { }
  5598. }, {
  5599. closecallback: function () { }
  5600. }, { "style": { "height": "36px" } }).form; //創建窗體
  5601. _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); } }
  5602. break;
  5603. }
  5604. case "opencCscl":
  5605. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5606. setTimeout(() => {
  5607. U.MD.U.L.login();
  5608. }, 2000);
  5609. } else {
  5610. _formdiv = new U.UF.UI.form(
  5611. "協同建構",
  5612. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.hk?cid=" + data.cid + "&gid=" + data.gid }), {
  5613. "id": "futureClass",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5618. }, { "style": { "height": "36px" } }).form; //創建窗體
  5619. _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); } }
  5620. break;
  5621. }
  5622. case "openCourseUpdate":
  5623. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5624. setTimeout(() => {
  5625. U.MD.U.L.login();
  5626. }, 2000);
  5627. } else {
  5628. _formdiv = new U.UF.UI.form(
  5629. "課程管理",
  5630. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5631. "id": "openCourseUpdate",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //創建窗體
  5637. break;
  5638. }
  5639. case "openNewCourseUpdate":
  5640. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5641. setTimeout(() => {
  5642. U.MD.U.L.login();
  5643. }, 2000);
  5644. } else {
  5645. _formdiv = new U.UF.UI.form(
  5646. "課程管理",
  5647. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5648. "id": "openCourseUpdate",
  5649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //創建窗體
  5654. break;
  5655. }
  5656. case "openCourseEUpdate":
  5657. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5658. setTimeout(() => {
  5659. U.MD.U.L.login();
  5660. }, 2000);
  5661. } else {
  5662. _formdiv = new U.UF.UI.form(
  5663. "課程管理",
  5664. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5665. "id": "openCourseUpdate",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //創建窗體
  5671. break;
  5672. }
  5673. case "openCourseAiUpdate":
  5674. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5675. setTimeout(() => {
  5676. U.MD.U.L.login();
  5677. }, 2000);
  5678. } else {
  5679. _formdiv = new U.UF.UI.form(
  5680. "課程管理",
  5681. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5682. "id": "openCourseUpdate",
  5683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5684. "onresize": function () { }
  5685. }, {
  5686. closecallback: function () { }
  5687. }, { "style": { "height": "36px" } }).form; //創建窗體
  5688. break;
  5689. }
  5690. case "openCourseAiUpdate2":
  5691. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5692. setTimeout(() => {
  5693. U.MD.U.L.login();
  5694. }, 2000);
  5695. } else {
  5696. _formdiv = new U.UF.UI.form(
  5697. "課程管理",
  5698. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5699. "id": "openCourseUpdate",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //創建窗體
  5705. break;
  5706. }
  5707. case "openCourseNewUpdate":
  5708. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5709. setTimeout(() => {
  5710. U.MD.U.L.login();
  5711. }, 2000);
  5712. } else {
  5713. _formdiv = new U.UF.UI.form(
  5714. "課程管理",
  5715. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5716. "id": "openCourseUpdate",
  5717. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5718. "onresize": function () { }
  5719. }, {
  5720. closecallback: function () { }
  5721. }, { "style": { "height": "36px" } }).form; //創建窗體
  5722. break;
  5723. }
  5724. case "inviteLoginSz":
  5725. _formdiv = new U.UF.UI.form(
  5726. "隨機碼登錄",
  5727. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5728. "id": "loginSz",
  5729. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5730. "onresize": function () { }
  5731. }, {
  5732. closecallback: function () { }
  5733. }, { "style": { "height": "36px" } }).form; //創建窗體
  5734. break;
  5735. case "loginSz":
  5736. _formdiv = new U.UF.UI.form(
  5737. "教師登錄",
  5738. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5739. "id": "loginSz",
  5740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //創建窗體
  5745. break;
  5746. case "teacher":
  5747. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5748. setTimeout(() => {
  5749. U.MD.U.L.login();
  5750. }, 2000);
  5751. } else {
  5752. _formdiv = new U.UF.UI.form(
  5753. "教師管理",
  5754. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5755. "id": "teacher",
  5756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //創建窗體
  5761. break;
  5762. }
  5763. case "dataBoardSZArea":
  5764. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5765. setTimeout(() => {
  5766. U.MD.U.L.login();
  5767. }, 2000);
  5768. } else {
  5769. _formdiv = new U.UF.UI.form(
  5770. "綜合數據看闆",
  5771. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5772. "id": "dataBoardSZArea",
  5773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5774. "onresize": function () { }
  5775. }, {
  5776. closecallback: function () { }
  5777. }, { "style": { "height": "36px" } }).form; //創建窗體
  5778. break;
  5779. }
  5780. case "dataBoardSZCity":
  5781. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5782. setTimeout(() => {
  5783. U.MD.U.L.login();
  5784. }, 2000);
  5785. } else {
  5786. _formdiv = new U.UF.UI.form(
  5787. "綜合數據看闆",
  5788. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5789. "id": "dataBoardSZCity",
  5790. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5791. "onresize": function () { }
  5792. }, {
  5793. closecallback: function () { }
  5794. }, { "style": { "height": "36px" } }).form; //創建窗體
  5795. break;
  5796. }
  5797. case "classroom_observation_board":
  5798. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5799. setTimeout(() => {
  5800. U.MD.U.L.login();
  5801. }, 2000);
  5802. } else {
  5803. _formdiv = new U.UF.UI.form(
  5804. "課堂觀察",
  5805. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5806. "id": "classroom_observation_board",
  5807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //創建窗體
  5812. break;
  5813. }
  5814. case "classroom_observation_ob_comment":
  5815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5816. setTimeout(() => {
  5817. U.MD.U.L.login();
  5818. }, 2000);
  5819. } else {
  5820. _formdiv = new U.UF.UI.form(
  5821. "課堂審核",
  5822. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5823. "id": "classroom_observation_ob_comment",
  5824. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //創建窗體
  5829. break;
  5830. }
  5831. case "gptConfig":
  5832. _formdiv = new U.UF.UI.form(
  5833. data.name ? data.name : "應用中心",
  5834. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5835. "id": "gptConfig" + data.id,
  5836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //創建窗體
  5841. break;
  5842. case "testDetail":
  5843. _formdiv = new U.UF.UI.form(
  5844. "表單填寫",
  5845. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5846. "id": "testDetail" + data,
  5847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //創建窗體
  5852. break;
  5853. }
  5854. }
  5855. U.MD.D.I.openApplication = function (str, obj, info) {
  5856. obj = obj || {};
  5857. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  5858. _formdiv, //創建任務欄時同時彈出的窗體元素。
  5859. _userinfo = US.userInfo, //登錄用戶信息
  5860. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  5861. _oid = obj.organizeid || _userinfo.organizeid,
  5862. _type = US.userInfo.type,
  5863. _org = obj.org || US.userInfo.org,
  5864. _role = US.userInfo.role,
  5865. _classId = US.userInfo.classid,
  5866. _TscreenType = 1
  5867. _screenType = 2,
  5868. _SscreenType = 3;
  5869. let iframeBool = true
  5870. if(U.UF.UI.form.allForm[str]){
  5871. iframeBool = false
  5872. }
  5873. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5874. return;
  5875. }
  5876. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5877. if(opArray.includes(str)){
  5878. let _str = str
  5879. if(str == 'appStore'){
  5880. _str = "cocoFlow"
  5881. }else if(str == "futureClass"){
  5882. _str = "cocoNote"
  5883. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5884. _str = "IntelligentForm"
  5885. }else if(str == "testStudent" || str == "testStudentSies"){
  5886. _str = "TeacherCenter"
  5887. }
  5888. try {
  5889. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5890. } catch (error) {
  5891. console.log(error);
  5892. }
  5893. }
  5894. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5895. switch (str) {
  5896. case "studnetProject": //好友打開
  5897. _formdiv = new U.UF.UI.form(
  5898. "我的項目",
  5899. $$("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 }), {
  5900. "id": "studnetProject",
  5901. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5902. "onresize": function () { }
  5903. }, {
  5904. closecallback: function () { }
  5905. }, { "style": { "height": "36px" } }).form; //創建窗體
  5906. _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); } }
  5907. break;
  5908. case "studentEvaluate": //好友打開
  5909. _formdiv = new U.UF.UI.form(
  5910. "我的評價",
  5911. $$("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 }), {
  5912. "id": "studentEvaluate",
  5913. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //創建窗體
  5918. _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); } }
  5919. break;
  5920. case "my":
  5921. _formdiv = new U.UF.UI.form(
  5922. "我的資料",
  5923. $$("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 }), {
  5924. "id": "my",
  5925. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //創建窗體
  5930. _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); } }
  5931. break;
  5932. case "program":
  5933. _formdiv = new U.UF.UI.form(
  5934. "編程平臺",
  5935. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5936. "id": "program",
  5937. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //創建窗體
  5942. _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); } }
  5943. break;
  5944. case "library":
  5945. _formdiv = new U.UF.UI.form(
  5946. "素材庫",
  5947. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5948. "id": "library",
  5949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //創建窗體
  5954. _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); } }
  5955. break;
  5956. case "whiteboard":
  5957. _formdiv = new U.UF.UI.form(
  5958. "電子白闆",
  5959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5960. "id": "whiteboard",
  5961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //創建窗體
  5966. _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); } }
  5967. break;
  5968. case "investigation":
  5969. _formdiv = new U.UF.UI.form(
  5970. "問卷調查",
  5971. $$("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 }), {
  5972. "id": "investigation",
  5973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //創建窗體
  5978. _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); } }
  5979. break;
  5980. case "note":
  5981. _formdiv = new U.UF.UI.form(
  5982. "便簽分類",
  5983. $$("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 }), {
  5984. "id": "note",
  5985. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //創建窗體
  5990. _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); } }
  5991. break;
  5992. // case "score":
  5993. // _formdiv = new U.UF.UI.form(
  5994. // "量規評分",
  5995. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5996. // "id": "score",
  5997. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5998. // "onresize": function() {}
  5999. // }, {
  6000. // closecallback: function() {}
  6001. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6002. // _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); } }
  6003. // break;
  6004. case "mind":
  6005. _formdiv = new U.UF.UI.form(
  6006. "思維導圖",
  6007. $$("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"
  6008. "id": "mind",
  6009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //創建窗體
  6014. _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); } }
  6015. break;
  6016. case "doc":
  6017. // U.MD.D.I.isRoom();
  6018. _formdiv = new U.UF.UI.form(
  6019. "協同文檔",
  6020. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6021. "id": "doc",
  6022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6023. "onresize": function () { }
  6024. }, {
  6025. closecallback: function () { }
  6026. }, { "style": { "height": "36px" } }).form; //創建窗體
  6027. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6028. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6029. // })
  6030. _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); } }
  6031. break;
  6032. case "studentStudy":
  6033. _formdiv = new U.UF.UI.form(
  6034. "課程中心",
  6035. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6036. "id": "studentStudy",
  6037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6038. "onresize": function () { }
  6039. }, {
  6040. closecallback: function () { }
  6041. }, { "style": { "height": "36px" } }).form; //創建窗體
  6042. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6043. break;
  6044. case "train": //好友打開
  6045. _formdiv = new U.UF.UI.form(
  6046. "訓練平臺",
  6047. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6048. "id": "train",
  6049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6050. "onresize": function () { }
  6051. }, {
  6052. closecallback: function () { }
  6053. }, { "style": { "height": "36px" } }).form; //創建窗體
  6054. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6055. break;
  6056. case "mindNetwork": //好友打開
  6057. _formdiv = new U.UF.UI.form(
  6058. "思維網格",
  6059. $$("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 }), {
  6060. "id": "mindNetwork",
  6061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, { "style": { "height": "36px" } }).form; //創建窗體
  6066. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6067. break;
  6068. case "studentClassRoom": //好友打開
  6069. _formdiv = new U.UF.UI.form(
  6070. "實時課堂",
  6071. $$("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 }), {
  6072. "id": "studentClassRoom",
  6073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, { "style": { "height": "36px" } }).form; //創建窗體
  6078. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6079. setTimeout(() => {
  6080. U.UF.F.windowZooming(_formdiv)
  6081. }, 0);
  6082. break;
  6083. }
  6084. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6085. switch (str) {
  6086. case "studnetProject": //好友打開
  6087. _formdiv = new U.UF.UI.form(
  6088. "我的項目",
  6089. $$("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 }), {
  6090. "id": "studnetProject",
  6091. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, { "style": { "height": "36px" } }).form; //創建窗體
  6096. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的項目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6097. break;
  6098. case "studentEvaluate": //好友打開
  6099. _formdiv = new U.UF.UI.form(
  6100. "我的評價",
  6101. $$("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 }), {
  6102. "id": "studentEvaluate",
  6103. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, { "style": { "height": "36px" } }).form; //創建窗體
  6108. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6109. break;
  6110. case "my":
  6111. _formdiv = new U.UF.UI.form(
  6112. "我的資料",
  6113. $$("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 }), {
  6114. "id": "my",
  6115. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6116. "onresize": function () { }
  6117. }, {
  6118. closecallback: function () { }
  6119. }, { "style": { "height": "36px" } }).form; //創建窗體
  6120. _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); } }
  6121. break;
  6122. case "program":
  6123. _formdiv = new U.UF.UI.form(
  6124. "編程平臺",
  6125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6126. "id": "program",
  6127. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //創建窗體
  6132. _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); } }
  6133. break;
  6134. case "library":
  6135. _formdiv = new U.UF.UI.form(
  6136. "素材庫",
  6137. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6138. "id": "library",
  6139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, { "style": { "height": "36px" } }).form; //創建窗體
  6144. _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); } }
  6145. break;
  6146. case "whiteboard":
  6147. _formdiv = new U.UF.UI.form(
  6148. "電子白闆",
  6149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6150. "id": "whiteboard",
  6151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, { "style": { "height": "36px" } }).form; //創建窗體
  6156. _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); } }
  6157. break;
  6158. case "investigation":
  6159. _formdiv = new U.UF.UI.form(
  6160. "問卷調查",
  6161. $$("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 }), {
  6162. "id": "investigation",
  6163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6164. "onresize": function () { }
  6165. }, {
  6166. closecallback: function () { }
  6167. }, { "style": { "height": "36px" } }).form; //創建窗體
  6168. _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); } }
  6169. break;
  6170. case "note":
  6171. _formdiv = new U.UF.UI.form(
  6172. "便簽分類",
  6173. $$("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 }), {
  6174. "id": "note",
  6175. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6176. "onresize": function () { }
  6177. }, {
  6178. closecallback: function () { }
  6179. }, { "style": { "height": "36px" } }).form; //創建窗體
  6180. _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); } }
  6181. break;
  6182. // case "score":
  6183. // _formdiv = new U.UF.UI.form(
  6184. // "量規評分",
  6185. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6186. // "id": "score",
  6187. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6188. // "onresize": function() {}
  6189. // }, {
  6190. // closecallback: function() {}
  6191. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6192. // _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); } }
  6193. // break;
  6194. case "mind":
  6195. _formdiv = new U.UF.UI.form(
  6196. "思維導圖",
  6197. $$("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"
  6198. "id": "mind",
  6199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //創建窗體
  6204. _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); } }
  6205. break;
  6206. case "doc":
  6207. // U.MD.D.I.isRoom();
  6208. _formdiv = new U.UF.UI.form(
  6209. "協同文檔",
  6210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6211. "id": "doc",
  6212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, { "style": { "height": "36px" } }).form; //創建窗體
  6217. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6218. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6219. })
  6220. _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); } }
  6221. break;
  6222. case "train": //好友打開
  6223. _formdiv = new U.UF.UI.form(
  6224. "訓練平臺",
  6225. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6226. "id": "train",
  6227. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //創建窗體
  6232. _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); } }
  6233. break;
  6234. case "studentStudy":
  6235. _formdiv = new U.UF.UI.form(
  6236. "課程中心",
  6237. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6238. "id": "studentStudy",
  6239. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6240. "onresize": function () { }
  6241. }, {
  6242. closecallback: function () { }
  6243. }, { "style": { "height": "36px" } }).form; //創建窗體
  6244. _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); } }
  6245. break;
  6246. case "mindNetwork": //好友打開
  6247. _formdiv = new U.UF.UI.form(
  6248. "思維網格",
  6249. $$("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 }), {
  6250. "id": "mindNetwork",
  6251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //創建窗體
  6256. _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); } }
  6257. break;
  6258. case "studentClassRoom": //好友打開
  6259. _formdiv = new U.UF.UI.form(
  6260. "實時課堂",
  6261. $$("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 }), {
  6262. "id": "studentClassRoom",
  6263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6264. "onresize": function () { }
  6265. }, {
  6266. closecallback: function () { }
  6267. }, { "style": { "height": "36px" } }).form; //創建窗體
  6268. _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); } }
  6269. setTimeout(() => {
  6270. U.UF.F.windowZooming(_formdiv)
  6271. }, 0);
  6272. break;
  6273. }
  6274. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6275. //選擇應用處理
  6276. switch (str) {
  6277. case "project": //好友打開
  6278. _formdiv = new U.UF.UI.form(
  6279. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  6280. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6281. "id": "project",
  6282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //創建窗體
  6287. _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); } }
  6288. break;
  6289. case "student":
  6290. _formdiv = new U.UF.UI.form(
  6291. "學生管理",
  6292. $$("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 }), {
  6293. "id": "student",
  6294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //創建窗體
  6299. _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); } }
  6300. break;
  6301. case "evaluate":
  6302. _formdiv = new U.UF.UI.form(
  6303. "學生評價",
  6304. $$("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 }), {
  6305. "id": "evaluate",
  6306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6307. "onresize": function () { }
  6308. }, {
  6309. closecallback: function () { }
  6310. }, { "style": { "height": "36px" } }).form; //創建窗體
  6311. _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); } }
  6312. break;
  6313. case "sys":
  6314. _formdiv = new U.UF.UI.form(
  6315. "目標管理",
  6316. $$("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 }), {
  6317. "id": "sys",
  6318. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //創建窗體
  6323. _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); } }
  6324. break;
  6325. case "courseDesign":
  6326. _formdiv = new U.UF.UI.form(
  6327. "項目設計",
  6328. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6329. "id": "courseDesign",
  6330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //創建窗體
  6335. _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); } }
  6336. break;
  6337. case "program":
  6338. _formdiv = new U.UF.UI.form(
  6339. "編程平臺",
  6340. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6341. "id": "program",
  6342. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6343. "onresize": function () { }
  6344. }, {
  6345. closecallback: function () { }
  6346. }, { "style": { "height": "36px" } }).form; //創建窗體
  6347. _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); } }
  6348. break;
  6349. case "class":
  6350. _formdiv = new U.UF.UI.form(
  6351. "班級管理",
  6352. $$("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 }), {
  6353. "id": "class",
  6354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //創建窗體
  6359. _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); } }
  6360. break;
  6361. case "Grade":
  6362. _formdiv = new U.UF.UI.form(
  6363. "年級管理",
  6364. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6365. "id": "Grade",
  6366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //創建窗體
  6371. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年級管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6372. break;
  6373. case "teacherOffice":
  6374. _formdiv = new U.UF.UI.form(
  6375. "教研室",
  6376. $$("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 }), {
  6377. "id": "teacherOffice",
  6378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, { "style": { "height": "36px" } }).form; //創建窗體
  6383. _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); } }
  6384. break;
  6385. case "my":
  6386. _formdiv = new U.UF.UI.form(
  6387. "我的資料",
  6388. $$("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 }), {
  6389. "id": "my",
  6390. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //創建窗體
  6395. _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); } }
  6396. break;
  6397. case "notice":
  6398. _formdiv = new U.UF.UI.form(
  6399. "通知公告",
  6400. $$("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 }), {
  6401. "id": "notice",
  6402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6403. "onresize": function () { }
  6404. }, {
  6405. closecallback: function () { }
  6406. }, { "style": { "height": "36px" } }).form; //創建窗體
  6407. _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); } }
  6408. break;
  6409. case "library":
  6410. _formdiv = new U.UF.UI.form(
  6411. "素材庫",
  6412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6413. "id": "library",
  6414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6415. "onresize": function () { }
  6416. }, {
  6417. closecallback: function () { }
  6418. }, { "style": { "height": "36px" } }).form; //創建窗體
  6419. _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); } }
  6420. break;
  6421. case "whiteboard":
  6422. _formdiv = new U.UF.UI.form(
  6423. "電子白闆",
  6424. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6425. "id": "whiteboard",
  6426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6427. "onresize": function () { }
  6428. }, {
  6429. closecallback: function () { }
  6430. }, { "style": { "height": "36px" } }).form; //創建窗體
  6431. _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); } }
  6432. break;
  6433. case "investigation":
  6434. _formdiv = new U.UF.UI.form(
  6435. "問卷調查",
  6436. $$("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 }), {
  6437. "id": "investigation",
  6438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6439. "onresize": function () { }
  6440. }, {
  6441. closecallback: function () { }
  6442. }, { "style": { "height": "36px" } }).form; //創建窗體
  6443. _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); } }
  6444. break;
  6445. case "note":
  6446. _formdiv = new U.UF.UI.form(
  6447. "便簽分類",
  6448. $$("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 }), {
  6449. "id": "note",
  6450. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6451. "onresize": function () { }
  6452. }, {
  6453. closecallback: function () { }
  6454. }, { "style": { "height": "36px" } }).form; //創建窗體
  6455. _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); } }
  6456. break;
  6457. // case "score":
  6458. // _formdiv = new U.UF.UI.form(
  6459. // "量規評分",
  6460. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6461. // "id": "score",
  6462. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6463. // "onresize": function() {}
  6464. // }, {
  6465. // closecallback: function() {}
  6466. // }, { "style": { "height": "36px" } }).form; //創建窗體
  6467. // _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); } }
  6468. // break;
  6469. case "mind":
  6470. _formdiv = new U.UF.UI.form(
  6471. "思維導圖",
  6472. $$("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"
  6473. "id": "mind",
  6474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //創建窗體
  6479. _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); } }
  6480. break;
  6481. case "doc":
  6482. // U.MD.D.I.isRoom();
  6483. _formdiv = new U.UF.UI.form(
  6484. "協同文檔",
  6485. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6486. "id": "doc",
  6487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6488. "onresize": function () { }
  6489. }, {
  6490. closecallback: function () { }
  6491. }, { "style": { "height": "36px" } }).form; //創建窗體
  6492. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6493. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6494. })
  6495. _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); } }
  6496. break;
  6497. case "study":
  6498. _formdiv = new U.UF.UI.form(
  6499. "課程中心",
  6500. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6501. "id": "study",
  6502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //創建窗體
  6507. _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); } }
  6508. break;
  6509. case "mindNetwork": //好友打開
  6510. _formdiv = new U.UF.UI.form(
  6511. "思維網格",
  6512. $$("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 }), {
  6513. "id": "mindNetwork",
  6514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, { "style": { "height": "36px" } }).form; //創建窗體
  6519. _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); } }
  6520. break;
  6521. case "train": //好友打開
  6522. _formdiv = new U.UF.UI.form(
  6523. "訓練平臺",
  6524. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6525. "id": "mindNetwork",
  6526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //創建窗體
  6531. _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); } }
  6532. break;
  6533. case "teacherClassRoom": //好友打開
  6534. _formdiv = new U.UF.UI.form(
  6535. "實時課堂",
  6536. $$("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 }), {
  6537. "id": "teacherClassRoom",
  6538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //創建窗體
  6543. _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); } }
  6544. setTimeout(() => {
  6545. U.UF.F.windowZooming(_formdiv)
  6546. }, 0);
  6547. break;
  6548. }
  6549. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6550. switch (str) {
  6551. case "project": //好友打開
  6552. _formdiv = new U.UF.UI.form(
  6553. "課程管理",
  6554. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6555. "id": "project",
  6556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, { "style": { "height": "36px" } }).form; //創建窗體
  6561. _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); } }
  6562. break;
  6563. case "evaluate":
  6564. _formdiv = new U.UF.UI.form(
  6565. "學生評價",
  6566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6567. "id": "evaluate",
  6568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6569. "onresize": function () { }
  6570. }, {
  6571. closecallback: function () { }
  6572. }, { "style": { "height": "36px" } }).form; //創建窗體
  6573. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "學生評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6574. break;
  6575. case "notice":
  6576. _formdiv = new U.UF.UI.form(
  6577. "通知公告",
  6578. $$("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 }), {
  6579. "id": "notice",
  6580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //創建窗體
  6585. _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); } }
  6586. break;
  6587. case "stuLibrary":
  6588. _formdiv = new U.UF.UI.form(
  6589. "學習資料",
  6590. $$("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 }), {
  6591. "id": "stuLibrary",
  6592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //創建窗體
  6597. _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); } }
  6598. break;
  6599. case "program":
  6600. _formdiv = new U.UF.UI.form(
  6601. "編程平臺",
  6602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6603. "id": "program",
  6604. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, { "style": { "height": "36px" } }).form; //創建窗體
  6609. _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); } }
  6610. break;
  6611. case "whiteboard":
  6612. _formdiv = new U.UF.UI.form(
  6613. "電子白闆",
  6614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  6615. "id": "whiteboard",
  6616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //創建窗體
  6621. _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); } }
  6622. break;
  6623. case "investigation":
  6624. _formdiv = new U.UF.UI.form(
  6625. "問卷調查",
  6626. $$("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 }), {
  6627. "id": "investigation",
  6628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //創建窗體
  6633. _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); } }
  6634. break;
  6635. case "mind":
  6636. _formdiv = new U.UF.UI.form(
  6637. "思維導圖",
  6638. $$("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"
  6639. "id": "mind",
  6640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //創建窗體
  6645. _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); } }
  6646. break;
  6647. case "doc":
  6648. // U.MD.D.I.isRoom();
  6649. _formdiv = new U.UF.UI.form(
  6650. "協同文檔",
  6651. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6652. "id": "doc",
  6653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //創建窗體
  6658. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6659. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6660. })
  6661. _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); } }
  6662. break;
  6663. case "study":
  6664. _formdiv = new U.UF.UI.form(
  6665. "課程中心",
  6666. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6667. "id": "study",
  6668. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6669. "onresize": function () { }
  6670. }, {
  6671. closecallback: function () { }
  6672. }, { "style": { "height": "36px" } }).form; //創建窗體
  6673. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6674. break;
  6675. case "mindNetwork": //好友打開
  6676. _formdiv = new U.UF.UI.form(
  6677. "思維網格",
  6678. $$("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 }), {
  6679. "id": "mindNetwork",
  6680. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6681. "onresize": function () { }
  6682. }, {
  6683. closecallback: function () { }
  6684. }, { "style": { "height": "36px" } }).form; //創建窗體
  6685. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6686. break;
  6687. case "train": //好友打開
  6688. _formdiv = new U.UF.UI.form(
  6689. "訓練平臺",
  6690. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6691. "id": "train",
  6692. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6693. "onresize": function () { }
  6694. }, {
  6695. closecallback: function () { }
  6696. }, { "style": { "height": "36px" } }).form; //創建窗體
  6697. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6698. break;
  6699. case "sys":
  6700. _formdiv = new U.UF.UI.form(
  6701. "目標管理",
  6702. $$("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 }), {
  6703. "id": "sys",
  6704. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6705. "onresize": function () { }
  6706. }, {
  6707. closecallback: function () { }
  6708. }, { "style": { "height": "36px" } }).form; //創建窗體
  6709. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目標管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6710. break;
  6711. case "courseDesign":
  6712. _formdiv = new U.UF.UI.form(
  6713. "項目設計",
  6714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6715. "id": "courseDesign",
  6716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6717. "onresize": function () { }
  6718. }, {
  6719. closecallback: function () { }
  6720. }, { "style": { "height": "36px" } }).form; //創建窗體
  6721. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "項目設計", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6722. break;
  6723. }
  6724. } else if (!_type) {
  6725. switch (str) {
  6726. case "my":
  6727. _formdiv = new U.UF.UI.form(
  6728. "我的資料",
  6729. $$("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 }), {
  6730. "id": "my",
  6731. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6732. "onresize": function () { }
  6733. }, {
  6734. closecallback: function () { }
  6735. }, { "style": { "height": "36px" } }).form; //創建窗體
  6736. _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); } }
  6737. break;
  6738. }
  6739. }
  6740. switch (str) {
  6741. // AIprogram2 AI體驗 aihub.cocorobo.cn
  6742. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  6743. // AIprogram AI編程 ai-blockly.cocorobo.cn
  6744. case "formulaEdi": //公式編輯
  6745. _formdiv = new U.UF.UI.form(
  6746. "公式編輯",
  6747. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6748. "id": "formulaEdi",
  6749. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6750. "onresize": function () { }
  6751. }, {
  6752. closecallback: function () { }
  6753. }, { "style": { "height": "36px" } }).form; //創建窗體
  6754. _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); } }
  6755. break;
  6756. case "molStr": //分子結構
  6757. _formdiv = new U.UF.UI.form(
  6758. "分子結構",
  6759. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6760. "id": "molStr",
  6761. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6762. "onresize": function () { }
  6763. }, {
  6764. closecallback: function () { }
  6765. }, { "style": { "height": "36px" } }).form; //創建窗體
  6766. _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); } }
  6767. break;
  6768. case "timeAxis": //時間軸
  6769. _formdiv = new U.UF.UI.form(
  6770. "時間軸",
  6771. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6772. "id": "timeAxis",
  6773. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6774. "onresize": function () { }
  6775. }, {
  6776. closecallback: function () { }
  6777. }, { "style": { "height": "36px" } }).form; //創建窗體
  6778. _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); } }
  6779. break;
  6780. case "AIprogram2": //AI體驗
  6781. _formdiv = new U.UF.UI.form(
  6782. "AI體驗",
  6783. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6784. "id": "AIprogram2",
  6785. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6786. "onresize": function () { }
  6787. }, {
  6788. closecallback: function () { }
  6789. }, { "style": { "height": "36px" } }).form; //創建窗體
  6790. _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); } }
  6791. break;
  6792. case "Pythonprogram": //python編程
  6793. _formdiv = new U.UF.UI.form(
  6794. "Python編程",
  6795. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6796. "id": "Pythonprogram",
  6797. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6798. "onresize": function () { }
  6799. }, {
  6800. closecallback: function () { }
  6801. }, { "style": { "height": "36px" } }).form; //創建窗體
  6802. _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); } }
  6803. break;
  6804. case "AIprogram": //ai編程
  6805. _formdiv = new U.UF.UI.form(
  6806. "AI編程平臺",
  6807. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6808. "id": "AIprogram",
  6809. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6810. "onresize": function () { }
  6811. }, {
  6812. closecallback: function () { }
  6813. }, { "style": { "height": "36px" } }).form; //創建窗體
  6814. _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); } }
  6815. break;
  6816. case "CocoPi": //CocoPi
  6817. _formdiv = new U.UF.UI.form(
  6818. "CocoPi",
  6819. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.hk/?lang=zh-hant" }), {
  6820. "id": "CocoPi",
  6821. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6822. "onresize": function () { }
  6823. }, {
  6824. closecallback: function () { }
  6825. }, { "style": { "height": "36px" } }).form; //創建窗體
  6826. _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); } }
  6827. break;
  6828. case "Wood": //Wood
  6829. _formdiv = new U.UF.UI.form(
  6830. "海龜編程",
  6831. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  6832. "id": "Wood",
  6833. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6834. "onresize": function () { }
  6835. }, {
  6836. closecallback: function () { }
  6837. }, { "style": { "height": "36px" } }).form; //創建窗體
  6838. _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); } }
  6839. break;
  6840. case "car": //模擬駕駛
  6841. _formdiv = new U.UF.UI.form(
  6842. "模擬駕駛",
  6843. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  6844. "id": "car",
  6845. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6846. "onresize": function () { }
  6847. }, {
  6848. closecallback: function () { }
  6849. }, { "style": { "height": "36px" } }).form; //創建窗體
  6850. _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); } }
  6851. break;
  6852. case "lineSearch": //路徑搜索
  6853. _formdiv = new U.UF.UI.form(
  6854. "路徑搜索",
  6855. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  6856. "id": "lineSearch",
  6857. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6858. "onresize": function () { }
  6859. }, {
  6860. closecallback: function () { }
  6861. }, { "style": { "height": "36px" } }).form; //創建窗體
  6862. _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); } }
  6863. break;
  6864. case "deepLearning": //深度學習
  6865. _formdiv = new U.UF.UI.form(
  6866. "深度學習",
  6867. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  6868. "id": "deepLearning",
  6869. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6870. "onresize": function () { }
  6871. }, {
  6872. closecallback: function () { }
  6873. }, { "style": { "height": "36px" } }).form; //創建窗體
  6874. _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); } }
  6875. break;
  6876. case "allHistory": //深度學習
  6877. _formdiv = new U.UF.UI.form(
  6878. "全歷史",
  6879. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  6880. "id": "allHistory",
  6881. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6882. "onresize": function () { }
  6883. }, {
  6884. closecallback: function () { }
  6885. }, { "style": { "height": "36px" } }).form; //創建窗體
  6886. _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); } }
  6887. break;
  6888. case "chatPDF": //ai編程
  6889. _formdiv = new U.UF.UI.form(
  6890. "chatPDF",
  6891. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6892. "id": "chatPDF",
  6893. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6894. "onresize": function () { }
  6895. }, {
  6896. closecallback: function () { }
  6897. }, { "style": { "height": "36px" } }).form; //創建窗體
  6898. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6899. break;
  6900. case "resources": //國家教育
  6901. _formdiv = new U.UF.UI.form(
  6902. "國家教育",
  6903. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6904. "id": "resources",
  6905. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6906. "onresize": function () { }
  6907. }, {
  6908. closecallback: function () { }
  6909. }, { "style": { "height": "36px" } }).form; //創建窗體
  6910. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "國家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6911. break;
  6912. case "codeEdit": //源碼編輯
  6913. _formdiv = new U.UF.UI.form(
  6914. "源碼編輯",
  6915. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6916. "id": "codeEdit",
  6917. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, { "style": { "height": "36px" } }).form; //創建窗體
  6922. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源碼編輯", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6923. break; //
  6924. case "MindMap": //MindMap
  6925. _formdiv = new U.UF.UI.form(
  6926. "MindMap",
  6927. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6928. "id": "MindMap",
  6929. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6930. "onresize": function () { }
  6931. }, {
  6932. closecallback: function () { }
  6933. }, { "style": { "height": "36px" } }).form; //創建窗體
  6934. _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); } }
  6935. break;
  6936. case "netWorkPanel": //netWorkPanel
  6937. _formdiv = new U.UF.UI.form(
  6938. "netWorkPanel",
  6939. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6940. "id": "netWorkPanel",
  6941. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6942. "onresize": function () { }
  6943. }, {
  6944. closecallback: function () { }
  6945. }, { "style": { "height": "36px" } }).form; //創建窗體
  6946. _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); } }
  6947. break;
  6948. case "GeoGebra": //GeoGebra
  6949. _formdiv = new U.UF.UI.form(
  6950. "GeoGebra",
  6951. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  6952. "id": "GeoGebra",
  6953. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6954. "onresize": function () { }
  6955. }, {
  6956. closecallback: function () { }
  6957. }, { "style": { "height": "36px" } }).form; //創建窗體
  6958. _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); } }
  6959. break;
  6960. case "translation": //翻譯
  6961. _formdiv = new U.UF.UI.form(
  6962. "翻譯",
  6963. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6964. "id": "translation",
  6965. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6966. "onresize": function () { }
  6967. }, {
  6968. closecallback: function () { }
  6969. }, { "style": { "height": "36px" } }).form; //創建窗體
  6970. _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); } }
  6971. break;
  6972. case "mohe": //魔盒
  6973. _formdiv = new U.UF.UI.form(
  6974. "魔盒識字",
  6975. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6976. "id": "mohe",
  6977. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6978. "onresize": function () { }
  6979. }, {
  6980. closecallback: function () { }
  6981. }, { "style": { "height": "36px" } }).form; //創建窗體
  6982. _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); } }
  6983. break;
  6984. case "24game": //24點
  6985. _formdiv = new U.UF.UI.form(
  6986. "24點",
  6987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6988. "id": "24game",
  6989. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6990. "onresize": function () { }
  6991. }, {
  6992. closecallback: function () { }
  6993. }, { "style": { "height": "36px" } }).form; //創建窗體
  6994. _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); } }
  6995. break;
  6996. case "case":
  6997. _formdiv = new U.UF.UI.form(
  6998. "課程進展",
  6999. $$("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 }), {
  7000. "id": "case",
  7001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7002. "onresize": function () { }
  7003. }, {
  7004. closecallback: function () { }
  7005. }, { "style": { "height": "36px" } }).form; //創建窗體
  7006. _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); } }
  7007. break;
  7008. case "snf":
  7009. _formdiv = new U.UF.UI.form(
  7010. "賽諾梵",
  7011. $$("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" }), {
  7012. "id": "snf",
  7013. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7014. "onresize": function () { }
  7015. }, {
  7016. closecallback: function () { }
  7017. }, { "style": { "height": "36px" } }).form; //創建窗體
  7018. _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); } }
  7019. break;
  7020. case "hanFamily":
  7021. _formdiv = new U.UF.UI.form(
  7022. "漢字家族",
  7023. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7024. "id": "hanFamily",
  7025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, { "style": { "height": "36px" } }).form; //創建窗體
  7030. _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); } }
  7031. break;
  7032. case "hanClassics":
  7033. _formdiv = new U.UF.UI.form(
  7034. "國學經典",
  7035. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7036. "id": "hanClassics",
  7037. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //創建窗體
  7042. _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); } }
  7043. break;
  7044. case "hanTraining":
  7045. _formdiv = new U.UF.UI.form(
  7046. "筆畫訓練",
  7047. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7048. "id": "hanTraining",
  7049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () { }
  7053. }, { "style": { "height": "36px" } }).form; //創建窗體
  7054. _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); } }
  7055. break;
  7056. case "hanClass":
  7057. _formdiv = new U.UF.UI.form(
  7058. "書法課堂",
  7059. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7060. "id": "hanClass",
  7061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7062. "onresize": function () { }
  7063. }, {
  7064. closecallback: function () { }
  7065. }, { "style": { "height": "36px" } }).form; //創建窗體
  7066. _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); } }
  7067. break;
  7068. case "han":
  7069. _formdiv = new U.UF.UI.form(
  7070. "漢字宮",
  7071. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7072. "id": "han",
  7073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7074. "onresize": function () { }
  7075. }, {
  7076. closecallback: function () { }
  7077. }, { "style": { "height": "36px" } }).form; //創建窗體
  7078. _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); } }
  7079. break;
  7080. case "projectGM": //課程管理
  7081. _formdiv = new U.UF.UI.form(
  7082. "課程管理",
  7083. $$("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 }), {
  7084. "id": "projectGM",
  7085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7086. "onresize": function () { }
  7087. }, {
  7088. closecallback: function () { }
  7089. }, { "style": { "height": "36px" } }).form; //創建窗體
  7090. _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); } }
  7091. break;
  7092. case "studyGM": //課程中心
  7093. _formdiv = new U.UF.UI.form(
  7094. "課程中心",
  7095. $$("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
  7096. "id": "study",
  7097. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7098. "onresize": function () { }
  7099. }, {
  7100. closecallback: function () { }
  7101. }, { "style": { "height": "36px" } }).form; //創建窗體
  7102. _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); } }
  7103. break;
  7104. // studentGM
  7105. case "studentGM": //學生管理
  7106. _formdiv = new U.UF.UI.form(
  7107. "學生管理",
  7108. $$("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 }), {
  7109. "id": "studentGM",
  7110. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7111. "onresize": function () { }
  7112. }, {
  7113. closecallback: function () { }
  7114. }, { "style": { "height": "36px" } }).form; //創建窗體
  7115. _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); } }
  7116. break;
  7117. case "evaluateGM": //學生評價
  7118. _formdiv = new U.UF.UI.form(
  7119. "學生評價",
  7120. $$("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 }), {
  7121. "id": "evaluateGM",
  7122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7123. "onresize": function () { }
  7124. }, {
  7125. closecallback: function () { }
  7126. }, { "style": { "height": "36px" } }).form; //創建窗體
  7127. _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); } }
  7128. break;
  7129. // classGM
  7130. case "classGM": //班級管理
  7131. _formdiv = new U.UF.UI.form(
  7132. "班級管理",
  7133. $$("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 }), {
  7134. "id": "classGM",
  7135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7136. "onresize": function () { }
  7137. }, {
  7138. closecallback: function () { }
  7139. }, { "style": { "height": "36px" } }).form; //創建窗體
  7140. _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); } }
  7141. break;
  7142. // dataGM
  7143. case "dataGM":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  7147. "id": "dataGM",
  7148. "style": { "width": "42%", "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/gm/data.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7154. break;
  7155. // caseGM
  7156. case "caseGM": //課程進展
  7157. _formdiv = new U.UF.UI.form(
  7158. "課程進展",
  7159. $$("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 }), {
  7160. "id": "caseGM",
  7161. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7162. "onresize": function () { }
  7163. }, {
  7164. closecallback: function () { }
  7165. }, { "style": { "height": "36px" } }).form; //創建窗體
  7166. _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); } }
  7167. break;
  7168. // meterialGM
  7169. case "meterialGM": //素材庫
  7170. _formdiv = new U.UF.UI.form(
  7171. "素材庫",
  7172. $$("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 }), {
  7173. "id": "meterialGM",
  7174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //創建窗體
  7179. _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); } }
  7180. break;
  7181. // evaluateSGM
  7182. case "evaluateSGM": //我的評價
  7183. _formdiv = new U.UF.UI.form(
  7184. "我的評價",
  7185. $$("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 }), {
  7186. "id": "evaluateSGM",
  7187. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7188. "onresize": function () { }
  7189. }, {
  7190. closecallback: function () { }
  7191. }, { "style": { "height": "36px" } }).form; //創建窗體
  7192. _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); } }
  7193. break;
  7194. case "jupyter": //jupyter
  7195. _formdiv = new U.UF.UI.form(
  7196. "jupyter",
  7197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7198. "id": "jupyter",
  7199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7200. "onresize": function () { }
  7201. }, {
  7202. closecallback: function () { }
  7203. }, { "style": { "height": "36px" } }).form; //創建窗體
  7204. _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); } }
  7205. break;
  7206. case "number": //數字實驗室
  7207. _formdiv = new U.UF.UI.form(
  7208. "數字實驗室",
  7209. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7210. "id": "number",
  7211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7212. "onresize": function () { }
  7213. }, {
  7214. closecallback: function () { }
  7215. }, { "style": { "height": "36px" } }).form; //創建窗體
  7216. _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); } }
  7217. break;
  7218. case "studentCourse": //項目管理 學生
  7219. _formdiv = new U.UF.UI.form(
  7220. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  7221. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7222. "id": "studentCourse",
  7223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7224. "onresize": function () { }
  7225. }, {
  7226. closecallback: function () { }
  7227. }, { "style": { "height": "36px" } }).form; //創建窗體
  7228. _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); } }
  7229. break;
  7230. case "studentCourseS": //項目管理 老師
  7231. _formdiv = new U.UF.UI.form(
  7232. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  7233. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7234. "id": "studentCourseS",
  7235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7236. "onresize": function () { }
  7237. }, {
  7238. closecallback: function () { }
  7239. }, { "style": { "height": "36px" } }).form; //創建窗體
  7240. _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); } }
  7241. break;
  7242. case "studentIndex": //項目中心
  7243. _formdiv = new U.UF.UI.form(
  7244. "項目中心",
  7245. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  7246. "id": "studentIndex",
  7247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7248. "onresize": function () { }
  7249. }, {
  7250. closecallback: function () { }
  7251. }, { "style": { "height": "36px" } }).form; //創建窗體
  7252. _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); } }
  7253. break;
  7254. case "CaseDesignS":
  7255. _formdiv = new U.UF.UI.form(
  7256. "項目進展",
  7257. $$("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 }), {
  7258. "id": "case",
  7259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7260. "onresize": function () { }
  7261. }, {
  7262. closecallback: function () { }
  7263. }, { "style": { "height": "36px" } }).form; //創建窗體
  7264. _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); } }
  7265. break;
  7266. case "tcStudent": //騰訊學生管理
  7267. _formdiv = new U.UF.UI.form(
  7268. "學生管理",
  7269. $$("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 }), {
  7270. "id": "tcStudent",
  7271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7272. "onresize": function () { }
  7273. }, {
  7274. closecallback: function () { }
  7275. }, { "style": { "height": "36px" } }).form; //創建窗體
  7276. _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); } }
  7277. break;
  7278. case "tcSchool": //騰訊學校管理
  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/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7282. "id": "tcSchool",
  7283. "style": { "width": "90%", "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/school.png)" }, "name": "學校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7289. break;
  7290. case "tcTeacher": //騰訊學校管理
  7291. _formdiv = new U.UF.UI.form(
  7292. "教師管理",
  7293. $$("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 }), {
  7294. "id": "tcTeacher",
  7295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7296. "onresize": function () { }
  7297. }, {
  7298. closecallback: function () { }
  7299. }, { "style": { "height": "36px" } }).form; //創建窗體
  7300. _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); } }
  7301. break;
  7302. case "teacher":
  7303. _formdiv = new U.UF.UI.form(
  7304. "教師管理",
  7305. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7306. "id": "teacher",
  7307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7308. "onresize": function () { }
  7309. }, {
  7310. closecallback: function () { }
  7311. }, { "style": { "height": "36px" } }).form; //創建窗體
  7312. _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); } }
  7313. break;
  7314. case "tcData": //騰訊我的資料
  7315. _formdiv = new U.UF.UI.form(
  7316. "我的資料",
  7317. $$("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 }), {
  7318. "id": "tcData",
  7319. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7320. "onresize": function () { }
  7321. }, {
  7322. closecallback: function () { }
  7323. }, { "style": { "height": "36px" } }).form; //創建窗體
  7324. _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); } }
  7325. break;
  7326. case "tcNotice": //騰訊消息通知
  7327. _formdiv = new U.UF.UI.form(
  7328. "消息通知",
  7329. $$("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 }), {
  7330. "id": "tcNotice",
  7331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7332. "onresize": function () { }
  7333. }, {
  7334. closecallback: function () { }
  7335. }, { "style": { "height": "36px" } }).form; //創建窗體
  7336. _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); } }
  7337. break;
  7338. case "myReport": //好友打開
  7339. _formdiv = new U.UF.UI.form(
  7340. "我的評價",
  7341. $$("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 }), {
  7342. "id": "myReport",
  7343. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7344. "onresize": function () { }
  7345. }, {
  7346. closecallback: function () { }
  7347. }, { "style": { "height": "36px" } }).form; //創建窗體
  7348. _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); } }
  7349. break;
  7350. case "learnAna": //好友打開
  7351. _formdiv = new U.UF.UI.form(
  7352. "學習分析",
  7353. $$("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 }), {
  7354. "id": "learnAna",
  7355. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7356. "onresize": function () { }
  7357. }, {
  7358. closecallback: function () { }
  7359. }, { "style": { "height": "36px" } }).form; //創建窗體
  7360. _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); } }
  7361. break;
  7362. case "AIChat": //AI共創
  7363. _formdiv = new U.UF.UI.form(
  7364. "AI共創",
  7365. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  7366. "id": "AIChat",
  7367. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7368. "onresize": function () { }
  7369. }, {
  7370. istop: true,
  7371. closecallback: function () { $("#aichat_icon").remove(); },
  7372. narrowcallback: function () {
  7373. if (!$("#aichat_icon")[0]) {
  7374. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7375. }
  7376. },
  7377. }, { "style": { "height": "36px" } }).form; //創建窗體
  7378. _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); } }
  7379. break;
  7380. case "ainew": //AI共創
  7381. _formdiv = new U.UF.UI.form(
  7382. "AI協同",
  7383. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  7384. "id": "ainew",
  7385. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7386. "onresize": function () { }
  7387. }, {
  7388. closecallback: function () { }
  7389. }, { "style": { "height": "36px" } }).form; //創建窗體
  7390. _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); } }
  7391. break;
  7392. case "gpt4": //gpt4
  7393. _formdiv = new U.UF.UI.form(
  7394. "AI助手",
  7395. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7396. "id": "gpt4",
  7397. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7398. "onresize": function () { }
  7399. }, {
  7400. closecallback: function () { }
  7401. }, { "style": { "height": "36px" } }).form; //創建窗體
  7402. _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); } }
  7403. break;
  7404. case "aigpt": //gpt4
  7405. _formdiv = new U.UF.UI.form(
  7406. "AI助手+",
  7407. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7408. "id": "aigpt",
  7409. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7410. "onresize": function () { }
  7411. }, {
  7412. closecallback: function () {
  7413. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7414. }
  7415. }, { "style": { "height": "36px" } }).form; //創建窗體
  7416. _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); } }
  7417. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7418. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7419. })
  7420. break;
  7421. case "aiKnowledge": //aiKnowledge
  7422. let _url = "https://cloud.cocorobo.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role
  7423. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7424. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7425. }
  7426. _formdiv = new U.UF.UI.form(
  7427. "知識建構",
  7428. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7429. "id": "aiKnowledge",
  7430. "style": { "width": "100%", "height": "100%", "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/aiKnowledge.png)" }, "name": "知識建構", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7436. break;
  7437. case "futureClass": //AI共創
  7438. _formdiv = new U.UF.UI.form(
  7439. "協同建構",
  7440. $$("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
  7441. "id": "synergyCourse",
  7442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7443. "onresize": function () { }
  7444. }, {
  7445. closecallback: function () {
  7446. $("iframe", _formdiv)[0].contentWindow.loginout();
  7447. }
  7448. }, { "style": { "height": "36px" } }).form; //創建窗體
  7449. _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); } }
  7450. break;
  7451. case "aiagent": //ai agent
  7452. _formdiv = new U.UF.UI.form(
  7453. "AI Agent",
  7454. $$("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" }), {
  7455. "id": "AIAgent",
  7456. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7457. "onresize": function () { }
  7458. }, {
  7459. closecallback: function () { }
  7460. }, { "style": { "height": "36px" } }).form; //創建窗體
  7461. _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); } }
  7462. break;
  7463. case "dataBoard": //數據看闆
  7464. _formdiv = new U.UF.UI.form(
  7465. "數據看闆",
  7466. $$("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 }), {
  7467. "id": "dataBoard",
  7468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7469. "onresize": function () { }
  7470. }, {
  7471. closecallback: function () { }
  7472. }, { "style": { "height": "36px" } }).form; //創建窗體
  7473. _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); } }
  7474. break;
  7475. case "dataBoardSies": //數據融合
  7476. _formdiv = new U.UF.UI.form(
  7477. "數據融合",
  7478. $$("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 }), {
  7479. "id": "dataBoardSies",
  7480. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7481. "onresize": function () { }
  7482. }, {
  7483. closecallback: function () { }
  7484. }, { "style": { "height": "36px" } }).form; //創建窗體
  7485. _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); } }
  7486. break;
  7487. case "dataBoardNew": //數據看闆
  7488. _formdiv = new U.UF.UI.form(
  7489. "綜合看闆",
  7490. $$("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 }), {
  7491. "id": "dataBoardNew",
  7492. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7493. "onresize": function () { }
  7494. }, {
  7495. closecallback: function () { }
  7496. }, { "style": { "height": "36px" } }).form; //創建窗體
  7497. _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); } }
  7498. break;
  7499. case "dataBoardTest": //數據看闆
  7500. _formdiv = new U.UF.UI.form(
  7501. "評測看闆",
  7502. $$("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 }), {
  7503. "id": "dataBoardTest",
  7504. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7505. "onresize": function () { }
  7506. }, {
  7507. closecallback: function () { }
  7508. }, { "style": { "height": "36px" } }).form; //創建窗體
  7509. _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); } }
  7510. break;
  7511. case "AIAnalyse": //AI共創
  7512. _formdiv = new U.UF.UI.form(
  7513. "AI分析",
  7514. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  7515. "id": "AIAnalyse",
  7516. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7517. "onresize": function () { }
  7518. }, {
  7519. closecallback: function () { }
  7520. }, { "style": { "height": "36px" } }).form; //創建窗體
  7521. _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); } }
  7522. break;
  7523. case "studioCourse": //AI共創
  7524. _formdiv = new U.UF.UI.form(
  7525. "工作管理",
  7526. $$("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 }), {
  7527. "id": "studioCourse",
  7528. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7529. "onresize": function () { }
  7530. }, {
  7531. closecallback: function () { }
  7532. }, { "style": { "height": "36px" } }).form; //創建窗體
  7533. _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); } }
  7534. break;
  7535. case "studioIndex": //AI共創
  7536. _formdiv = new U.UF.UI.form(
  7537. "工作中心",
  7538. $$("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 }), {
  7539. "id": "studioIndex",
  7540. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7541. "onresize": function () { }
  7542. }, {
  7543. closecallback: function () { }
  7544. }, { "style": { "height": "36px" } }).form; //創建窗體
  7545. _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); } }
  7546. break;
  7547. case "source":
  7548. _formdiv = new U.UF.UI.form(
  7549. "教學資源",
  7550. $$("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 }), {
  7551. "id": "source",
  7552. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7553. "onresize": function () { }
  7554. }, {
  7555. closecallback: function () { }
  7556. }, { "style": { "height": "36px" } }).form; //創建窗體
  7557. _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); } }
  7558. break;
  7559. case "testTeacher":
  7560. _formdiv = new U.UF.UI.form(
  7561. "智能錶單",
  7562. $$("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 }), {
  7563. "id": "testTeacher",
  7564. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, { "style": { "height": "36px" } }).form; //創建窗體
  7569. _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); } }
  7570. break;
  7571. case "testStudent":
  7572. _formdiv = new U.UF.UI.form(
  7573. "教師中心",
  7574. $$("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 }), {
  7575. "id": "testStudent",
  7576. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7577. "onresize": function () { }
  7578. }, {
  7579. closecallback: function () { }
  7580. }, { "style": { "height": "36px" } }).form; //創建窗體
  7581. _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); } }
  7582. break;
  7583. case "testTeacherSies":
  7584. _formdiv = new U.UF.UI.form(
  7585. "教師管理",
  7586. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7587. "id": "testTeacherSies",
  7588. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7589. "onresize": function () { }
  7590. }, {
  7591. closecallback: function () { }
  7592. }, { "style": { "height": "36px" } }).form; //創建窗體
  7593. _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); } }
  7594. break;
  7595. case "testStudentSies":
  7596. _formdiv = new U.UF.UI.form(
  7597. "教師中心",
  7598. $$("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 }), {
  7599. "id": "testStudentSies",
  7600. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7601. "onresize": function () { }
  7602. }, {
  7603. closecallback: function () { }
  7604. }, { "style": { "height": "36px" } }).form; //創建窗體
  7605. _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); } }
  7606. break;
  7607. case "ytpbl": //消息通知
  7608. _formdiv = new U.UF.UI.form(
  7609. "案例徵集",
  7610. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7611. "id": "ytpbl",
  7612. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7613. "onresize": function () { }
  7614. }, {
  7615. closecallback: function () { }
  7616. }, { "style": { "height": "36px" } }).form; //創建窗體
  7617. _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); } }
  7618. // 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");
  7619. break;
  7620. case "aiCourseResource": //人工智能窗體
  7621. _formdiv = new U.UF.UI.form(
  7622. false,
  7623. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  7624. "id": "aiCourseResource",
  7625. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7626. "onresize": function () { },
  7627. "isdrag": false,
  7628. }, {
  7629. closecallback: function () { }
  7630. }, { "style": { "height": "36px" } }).form; //創建窗體
  7631. _taskbar = ''
  7632. break;
  7633. case "szdjgCocooroboX": //圖形化編程
  7634. _formdiv = new U.UF.UI.form(
  7635. "圖形化編程",
  7636. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  7637. "id": "szdjgCocooroboX",
  7638. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7639. "onresize": function () { }
  7640. }, {
  7641. closecallback: function () { }
  7642. }, { "style": { "height": "36px" } }).form; //創建窗體
  7643. _taskbar = ''
  7644. break;
  7645. case "szdjgPython": //python編程
  7646. _formdiv = new U.UF.UI.form(
  7647. "Python編程",
  7648. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  7649. "id": "szdjgPython",
  7650. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7651. "onresize": function () { }
  7652. }, {
  7653. closecallback: function () { }
  7654. }, { "style": { "height": "36px" } }).form; //創建窗體
  7655. _taskbar = ''
  7656. break;
  7657. case "Record":
  7658. _formdiv = new U.UF.UI.form(
  7659. "觀察記錄",
  7660. $$("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 }), {
  7661. "id": "Record",
  7662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7663. "onresize": function () { }
  7664. }, {
  7665. closecallback: function () { }
  7666. }, { "style": { "height": "36px" } }).form; //創建窗體
  7667. _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); } }
  7668. break;
  7669. case "aigptCourse":
  7670. _formdiv = new U.UF.UI.form(
  7671. "AI智能體",
  7672. $$("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' }), {
  7673. "id": "aigptCourse",
  7674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7675. "onresize": function () { }
  7676. }, {
  7677. closecallback: function () { }
  7678. }, { "style": { "height": "36px" } }).form; //創建窗體
  7679. _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); } }
  7680. break;
  7681. case "classroomObservation":
  7682. _formdiv = new U.UF.UI.form(
  7683. "課堂觀察",
  7684. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7685. "id": "classroomObservation",
  7686. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7687. "onresize": function () { }
  7688. }, {
  7689. closecallback: function () { }
  7690. }, { "style": { "height": "36px" } }).form; //創建窗體
  7691. _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); } }
  7692. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7693. break;
  7694. case "pblCourse":
  7695. _formdiv = new U.UF.UI.form(
  7696. "學生PBL",
  7697. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7698. "id": "pblCourse",
  7699. "style": { "width": "90%", "height": "90%", "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/pblCourse.png)" }, "name": "學生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7705. break;
  7706. case "appStore":
  7707. U.MD.D.addOp('','cocoflowOpen','')
  7708. _formdiv = new U.UF.UI.form(
  7709. "CocoFlow",
  7710. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.hk/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7711. "id": "appStore",
  7712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7713. "onresize": function () { }
  7714. }, {
  7715. closecallback: function () { }
  7716. }, { "style": { "height": "36px" } }).form; //創建窗體
  7717. _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); } }
  7718. break;
  7719. case "sassPlatform":
  7720. _formdiv = new U.UF.UI.form(
  7721. "Sass通用後臺管理",
  7722. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7723. "id": "sassPlatform",
  7724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7725. "onresize": function () { }
  7726. }, {
  7727. closecallback: function () { }
  7728. }, { "style": { "height": "36px" } }).form; //創建窗體
  7729. _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); } }
  7730. break;
  7731. case "EDU":
  7732. _formdiv = new U.UF.UI.form(
  7733. "EDU",
  7734. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7735. "id": "EDU",
  7736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7737. "onresize": function () { }
  7738. }, {
  7739. closecallback: function () { }
  7740. }, { "style": { "height": "36px" } }).form; //創建窗體
  7741. _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); } }
  7742. break;
  7743. case "knowledge":
  7744. _formdiv = new U.UF.UI.form(
  7745. "知識庫",
  7746. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7747. "id": "knowledge",
  7748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7749. "onresize": function () { }
  7750. }, {
  7751. closecallback: function () { }
  7752. }, { "style": { "height": "36px" } }).form; //創建窗體
  7753. _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); } }
  7754. break;
  7755. case "userExamine":
  7756. _formdiv = new U.UF.UI.form(
  7757. "賬號申請",
  7758. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7759. "id": "userExamine",
  7760. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7761. "onresize": function () { }
  7762. }, {
  7763. closecallback: function () { }
  7764. }, { "style": { "height": "36px" } }).form; //創建窗體
  7765. break;
  7766. case "cocoflowDeskTop": //cocoflowDeskTop
  7767. _formdiv = new U.UF.UI.form(
  7768. false,
  7769. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.hk/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7770. "id": "cocoflowDeskTop",
  7771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7772. "onresize": function () { },
  7773. }, {
  7774. closecallback: function () { },
  7775. "isdrag": false,
  7776. }, { "style": { "height": "36px" } }).form; //創建窗體
  7777. _taskbar = ''
  7778. break;
  7779. case "liyuanLogin": //liyuanLogin
  7780. _formdiv = new U.UF.UI.form(
  7781. false,
  7782. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7783. "id": "liyuanLogin",
  7784. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7785. "onresize": function () { },
  7786. }, {
  7787. closecallback: function () { },
  7788. isdrag: false,
  7789. isstretching: false,
  7790. isenlarge: false,
  7791. isnarrow: false
  7792. }, { "style": { "height": "36px" } }).form; //創建窗體
  7793. _taskbar = ''
  7794. break;
  7795. case "updatePaDialog":
  7796. _formdiv = new U.UF.UI.form(
  7797. "密碼修改",
  7798. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.hk/#/changePswd?userid=" + _userid }), {
  7799. "id": "updatePaDialog",
  7800. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7801. "onresize": function () { },
  7802. }, {
  7803. closecallback: function () { },
  7804. isclose: false,
  7805. isdrag: false,
  7806. isstretching: false,
  7807. isenlarge: false,
  7808. isnarrow: false
  7809. }, { "style": { "height": "36px" } }).form; //創建窗體
  7810. break;
  7811. }
  7812. //U.MD.D.I.openClick(str);
  7813. //如果有任務欄信息
  7814. if (_taskbar) {
  7815. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7816. }
  7817. if(iframeBool){
  7818. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7819. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7820. // console.log("iframe進入");
  7821. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7822. // };
  7823. setTimeout(() => {
  7824. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7825. }, 2000);
  7826. }
  7827. }
  7828. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7829. var _formdiv, //創建任務欄時同時彈出的窗體元素。
  7830. _userinfo = US.userInfo, //登錄用戶信息
  7831. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解構賦值獲取用戶信息
  7832. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定義
  7833. let iframeBool = true;
  7834. let queryString = ''
  7835. if(array && array.length){
  7836. const paramsMap = {
  7837. userid: _userid,
  7838. org: _org,
  7839. oid: _oid,
  7840. type: _type,
  7841. role: _role,
  7842. classId: _classId,
  7843. TscreenType: _TscreenType,
  7844. SscreenType: _SscreenType
  7845. };
  7846. const canshu = array
  7847. .filter(param => paramsMap[param] !== undefined)
  7848. .map(param => `${param}=${paramsMap[param]}`);
  7849. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查詢字符串
  7850. }
  7851. let _url = url + queryString
  7852. if(U.UF.UI.form.allForm[id]){
  7853. iframeBool = false
  7854. }
  7855. _formdiv = new U.UF.UI.form(
  7856. false,
  7857. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  7858. {
  7859. "id": id,
  7860. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7861. "onresize": function () { },
  7862. },
  7863. {
  7864. closecallback: function () { },
  7865. isdrag: false,
  7866. isstretching: false,
  7867. isenlarge: false,
  7868. isnarrow: false
  7869. },
  7870. { "style": { "height": "36px" } },
  7871. undefined,
  7872. undefined,
  7873. dom
  7874. ).form
  7875. }
  7876. // U.MD.D.I.openClick = function(str){
  7877. // var click = '';
  7878. // switch(str){
  7879. // case 'friend':
  7880. // click = '我的好友';
  7881. // break;
  7882. // case 'domain':
  7883. // click = '域名管理';
  7884. // break;
  7885. // case 'disk':
  7886. // click = '我的雲盤';
  7887. // break;
  7888. // case 'word':
  7889. // click = 'Word';
  7890. // break;
  7891. // case 'excel':
  7892. // click = 'Execl';
  7893. // break;
  7894. // case 'txt':
  7895. // click = '文本文件';
  7896. // break;
  7897. // case 'lookupFriend':
  7898. // click = '查找好友';
  7899. // break;
  7900. // case 'ftp':
  7901. // click = 'FTP';
  7902. // break;
  7903. // case 'group':
  7904. // click = '群組';
  7905. // break;
  7906. // case 'set':
  7907. // click = '我的設置';
  7908. // break;
  7909. // case 'systemSet':
  7910. // click = '繫統設置';
  7911. // break;
  7912. // case 'boomYun':
  7913. // click = '互聯辦公';
  7914. // break;
  7915. // case 'xz':
  7916. // click = '雲端下載';
  7917. // break;
  7918. // case 'client':
  7919. // click = '有思瀏覽器';
  7920. // break;
  7921. // case 'backEndProgramming':
  7922. // click = '在線後臺編程';
  7923. // break;
  7924. // case 'frontEndProgramming':
  7925. // click = '在線前端編程';
  7926. // break;
  7927. // default: break;
  7928. // }
  7929. // if(U.MD.D.I.Ip && click){
  7930. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7931. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7932. // })
  7933. // }
  7934. // }
  7935. /**
  7936. *函數作用:ajax簡易函數,使用post格式
  7937. *@param url {data} 後臺地址
  7938. *@param data {data} 參數json
  7939. *@param fn {data} 回調函數
  7940. *
  7941. */
  7942. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7943. // var xhr = new XMLHttpRequest();
  7944. // xhr.open("GET",url,true);
  7945. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7946. // xhr.onreadystatechange = function(){
  7947. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7948. // fn.call(this,xhr.responseText);
  7949. // }
  7950. // };
  7951. // xhr.send();
  7952. // }
  7953. /*判斷是否是內網IP*/
  7954. // U.MD.D.I.isInnerIPFn = function(str){
  7955. // var curPageUrl = str;
  7956. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  7957. // curPageUrl =curPageUrl.replace(reg1,'');
  7958. // // console.log('curPageUrl-1 '+curPageUrl);
  7959. // var reg2 = /\:+/g;//替換冒號為一點
  7960. // curPageUrl =curPageUrl.replace(reg2,'.');
  7961. // // console.log('curPageUrl-2 '+curPageUrl);
  7962. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  7963. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7964. // if(curPageUrl[2] != '16'){
  7965. // return ipAddress;
  7966. // }else{
  7967. // return false;
  7968. // }
  7969. // }
  7970. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7971. // //compatibility for firefox and chrome
  7972. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7973. // var pc = new myPeerConnection({
  7974. // iceServers: []
  7975. // }),
  7976. // noop = function() {},
  7977. // localIPs = {},
  7978. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7979. // key;
  7980. // function iterateIP(ip) {
  7981. // if (!localIPs[ip]) onNewIP(ip);
  7982. // localIPs[ip] = true;
  7983. // }
  7984. // //create a bogus data channel
  7985. // pc.createDataChannel("");
  7986. // // create offer and set local description
  7987. // pc.createOffer().then(function(sdp) {
  7988. // sdp.sdp.split('\n').forEach(function(line) {
  7989. // if (line.indexOf('candidate') < 0) return;
  7990. // line.match(ipRegex).forEach(iterateIP);
  7991. // });
  7992. // pc.setLocalDescription(sdp, noop, noop);
  7993. // }).catch(function(reason) {
  7994. // // An error occurred, so handle the failure to connect
  7995. // });
  7996. // //sten for candidate events
  7997. // pc.onicecandidate = function(ice) {
  7998. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7999. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8000. // };
  8001. // }
  8002. // U.MD.D.I.getUserIpBool = function(callback){
  8003. // U.MD.D.I.getUserIP(function(ip){
  8004. // alert("Got IP! :" + ip);
  8005. // });
  8006. //}
  8007. //#endregion
  8008. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8009. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8010. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8011. _userinfo = US.userInfo, //登錄用戶信息
  8012. _userid = US.userInfo.userid //登錄用戶id
  8013. let _iframe;
  8014. let _cid = cid,
  8015. _stage = stage,
  8016. _task = task,
  8017. _tool = tool;
  8018. var _jie = $$("div", {
  8019. "style": {
  8020. "position": "absolute",
  8021. "bottom": "50px",
  8022. "right": "50px",
  8023. "zIndex": "9999",
  8024. "backgroundColor": "#2268bc",
  8025. "color": "#fff",
  8026. "padding": "12px 20px",
  8027. "cursor": "pointer",
  8028. "borderRadius": "4px",
  8029. },
  8030. "innerHTML": "提交作業"
  8031. })
  8032. let aTool = ''
  8033. let _loading = document.createElement('div')
  8034. _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;"
  8035. // _loading.id = "";
  8036. let _lchild = document.createElement('div')
  8037. let _limg = document.createElement('img')
  8038. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8039. _limg.style = "width: 26px;margin-right: 10px;"
  8040. _lchild.appendChild(_limg)
  8041. let _lspan = document.createElement('span')
  8042. _lspan.innerHTML = "上傳中..."
  8043. _lchild.appendChild(_lspan)
  8044. _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%);"
  8045. _loading.appendChild(_lchild)
  8046. var _box = $$('div', {
  8047. "style": {
  8048. "position": "relative",
  8049. "width": "100%",
  8050. "height": "100%",
  8051. },
  8052. })
  8053. _box.appendChild(_loading)
  8054. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8055. switch (str) {
  8056. case "whiteboard":
  8057. aTool = 1;
  8058. _iframe = $$("iframe", {
  8059. "frameborder": "no",
  8060. "border": "0",
  8061. "scrolling ": "no",
  8062. "style": {
  8063. "cssText": "border:0;width:100%;height:100%"
  8064. },
  8065. "src": "https://iwb.cocorobo.hk/"
  8066. })
  8067. _box.appendChild(_iframe);
  8068. _box.appendChild(_jie);
  8069. _formdiv = new U.UF.UI.form(
  8070. "電子白闆",
  8071. _box, {
  8072. "id": "whiteboard" + cid + stage + task + tool,
  8073. "style": {
  8074. "width": "90%",
  8075. "height": "90%",
  8076. "overflow": 'hidden'
  8077. },
  8078. "onresize": function () { }
  8079. }, {
  8080. closecallback: function () { }
  8081. }, {
  8082. "style": {
  8083. "height": "36px"
  8084. }
  8085. }).form; //創建窗體
  8086. _taskbar = {
  8087. "id": str + _formdiv.id,
  8088. "style": {
  8089. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8090. },
  8091. "name": "電子白闆",
  8092. "forms": _formdiv,
  8093. "click": function () {
  8094. U.MD.D.I.openApplication(str, obj, info);
  8095. }
  8096. }
  8097. break;
  8098. case "mind":
  8099. aTool = 3;
  8100. _iframe = $$("iframe", {
  8101. "frameborder": "no",
  8102. "border": "0",
  8103. "scrolling ": "no",
  8104. "style": {
  8105. "cssText": "border:0;width:100%;height:100%"
  8106. },
  8107. "src": "/kityminder-editor/dist/index.html"
  8108. })
  8109. _box.appendChild(_iframe);
  8110. _box.appendChild(_jie);
  8111. _formdiv = new U.UF.UI.form(
  8112. "思維導圖",
  8113. _box, { //"/jsmind/example/demo.html"
  8114. "id": "mind" + cid + stage + task + tool,
  8115. "style": {
  8116. "width": "90%",
  8117. "height": "90%",
  8118. "overflow": 'hidden'
  8119. },
  8120. "onresize": function () { }
  8121. }, {
  8122. closecallback: function () { }
  8123. }, {
  8124. "style": {
  8125. "height": "36px"
  8126. }
  8127. }).form; //創建窗體
  8128. _taskbar = {
  8129. "id": str + _formdiv.id,
  8130. "style": {
  8131. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8132. },
  8133. "name": "思維導圖",
  8134. "forms": _formdiv,
  8135. "click": function () {
  8136. U.MD.D.I.openApplication(str, obj, info);
  8137. }
  8138. }
  8139. break;
  8140. case "MindMap":
  8141. aTool = 3;
  8142. _iframe = $$("iframe", {
  8143. "frameborder": "no",
  8144. "border": "0",
  8145. "scrolling ": "no",
  8146. "style": {
  8147. "cssText": "border:0;width:100%;height:100%"
  8148. },
  8149. "src": "//cloud.cocorobo.hk/mind/"
  8150. })
  8151. _box.appendChild(_iframe);
  8152. _box.appendChild(_jie);
  8153. _formdiv = new U.UF.UI.form(
  8154. "思維導圖",
  8155. _box, { //"/jsmind/example/demo.html"
  8156. "id": "mind" + cid + stage + task + tool,
  8157. "style": {
  8158. "width": "90%",
  8159. "height": "90%",
  8160. "overflow": 'hidden'
  8161. },
  8162. "onresize": function () { }
  8163. }, {
  8164. closecallback: function () { }
  8165. }, {
  8166. "style": {
  8167. "height": "36px"
  8168. }
  8169. }).form; //創建窗體
  8170. _taskbar = {
  8171. "id": str + _formdiv.id,
  8172. "style": {
  8173. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8174. },
  8175. "name": "思維導圖",
  8176. "forms": _formdiv,
  8177. "click": function () {
  8178. U.MD.D.I.openApplication(str, obj, info);
  8179. }
  8180. }
  8181. break;
  8182. case "doc":
  8183. aTool = 6;
  8184. _iframe = $$("iframe", {
  8185. "frameborder": "no",
  8186. "border": "0",
  8187. "scrolling ": "no",
  8188. "style": {
  8189. "cssText": "border:0;width:100%;height:100%"
  8190. },
  8191. "src": "/Office/Word/WordEditArea.htm"
  8192. })
  8193. _box.appendChild(_iframe);
  8194. _box.appendChild(_jie);
  8195. _formdiv = new U.UF.UI.form(
  8196. "協同文檔",
  8197. _box, {
  8198. "id": "doc" + cid + stage + task + tool,
  8199. "style": {
  8200. "width": "90%",
  8201. "height": "90%",
  8202. "overflow": 'hidden'
  8203. },
  8204. "onresize": function () { }
  8205. }, {
  8206. closecallback: function () { }
  8207. }, {
  8208. "style": {
  8209. "height": "36px"
  8210. }
  8211. }).form; //創建窗體
  8212. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8213. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8214. })
  8215. _taskbar = {
  8216. "id": str + _formdiv.id,
  8217. "style": {
  8218. "backgroundImage": "url(/img/icon/doc.png)"
  8219. },
  8220. "name": "協同文檔",
  8221. "forms": _formdiv,
  8222. "click": function () {
  8223. U.MD.D.I.openApplication(str, obj, info);
  8224. }
  8225. }
  8226. break;
  8227. case "mindNetwork": //好友打開
  8228. aTool = 7;
  8229. _iframe = $$("iframe", {
  8230. "webkitallowfullscreen": "",
  8231. "mozallowfullscreen": "",
  8232. "allowfullscreen": "",
  8233. "frameborder": "no",
  8234. "border": "0",
  8235. "scrolling ": "no",
  8236. "style": {
  8237. "cssText": "border:0; width:100%; height:100%;"
  8238. },
  8239. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8240. })
  8241. _box.appendChild(_iframe);
  8242. _box.appendChild(_jie);
  8243. _formdiv = new U.UF.UI.form(
  8244. "思維網格",
  8245. _box, {
  8246. "id": "mindNetwork" + cid + stage + task + tool,
  8247. "style": {
  8248. "width": "90%",
  8249. "height": "90%",
  8250. "overflow": 'hidden'
  8251. },
  8252. "onresize": function () { }
  8253. }, {
  8254. closecallback: function () { }
  8255. }, {
  8256. "style": {
  8257. "height": "36px"
  8258. }
  8259. }).form; //創建窗體
  8260. _taskbar = {
  8261. "id": str + _formdiv.id,
  8262. "style": {
  8263. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8264. },
  8265. "name": "思維網格",
  8266. "forms": _formdiv,
  8267. "click": function () {
  8268. U.MD.D.I.openApplication(str, obj, info);
  8269. }
  8270. }
  8271. break;
  8272. case "courseDesign":
  8273. _iframe = $$("iframe", {
  8274. "webkitallowfullscreen": "",
  8275. "mozallowfullscreen": "",
  8276. "allowfullscreen": "",
  8277. "frameborder": "no",
  8278. "border": "0",
  8279. "scrolling ": "no",
  8280. "style": {
  8281. "cssText": "border:0; width:100%; height:100%;"
  8282. },
  8283. "src": "/course-design-vue"
  8284. })
  8285. _box.appendChild(_iframe);
  8286. _box.appendChild(_jie);
  8287. _formdiv = new U.UF.UI.form(
  8288. "項目設計",
  8289. _box, {
  8290. "id": "courseDesign" + cid + stage + task + tool,
  8291. "style": {
  8292. "width": "90%",
  8293. "height": "90%",
  8294. "overflow": 'hidden'
  8295. },
  8296. "onresize": function () { }
  8297. }, {
  8298. closecallback: function () { }
  8299. }, {
  8300. "style": {
  8301. "height": "36px"
  8302. }
  8303. }).form; //創建窗體
  8304. _taskbar = {
  8305. "id": str + _formdiv.id,
  8306. "style": {
  8307. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8308. },
  8309. "name": "項目設計",
  8310. "forms": _formdiv,
  8311. "click": function () {
  8312. U.MD.D.I.openApplication(str, obj, info);
  8313. }
  8314. }
  8315. break;
  8316. }
  8317. const script1 = document.createElement("script");
  8318. script1.type = "text/javascript";
  8319. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8320. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8321. const script2 = document.createElement("script");
  8322. script2.type = "text/javascript";
  8323. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8324. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8325. const script3 = document.createElement("script");
  8326. script3.type = "text/javascript";
  8327. script3.charset = "UTF-8";
  8328. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8329. const script4 = document.createElement("script");
  8330. script4.type = "text/javascript";
  8331. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8332. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8333. if (_iframe) {
  8334. if (str == 'doc') {
  8335. _iframe = _formdiv.querySelector('iframe')
  8336. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8337. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8338. _iframe.contentWindow.document.body.appendChild(script1);
  8339. _iframe.contentWindow.document.body.appendChild(script2);
  8340. // _iframe.contentWindow.document.body.appendChild(script3);
  8341. _iframe.contentWindow.document.body.appendChild(script4);
  8342. })
  8343. if (onloadListener) {
  8344. _iframe.contentDocument.location.reload()
  8345. } else {
  8346. _iframe.contentDocument.location.reload()
  8347. }
  8348. } else if (str == 'courseDesign') {
  8349. U.UF.DL.iframeLoad(_iframe, function () {
  8350. // _iframe.contentWindow.U.MD.O.W.load();
  8351. // _iframe.contentWindow.document.body.appendChild(script1);
  8352. _iframe.contentWindow.document.body.appendChild(script2);
  8353. _iframe.contentWindow.document.body.appendChild(script4);
  8354. })
  8355. } else if (str == 'mind') {
  8356. _iframe = _formdiv.querySelector('iframe')
  8357. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8358. //
  8359. _iframe.contentWindow.document.body.appendChild(script1);
  8360. _iframe.contentWindow.document.body.appendChild(script2);
  8361. _iframe.contentWindow.document.body.appendChild(script4);
  8362. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8363. })
  8364. if (onloadListener) {
  8365. _iframe.contentDocument.location.reload()
  8366. } else {
  8367. _iframe.contentDocument.location.reload()
  8368. }
  8369. } else if (str == 'whiteboard') {
  8370. _iframe = _formdiv.querySelector('iframe')
  8371. let onloadListener = _iframe.onload = () => {
  8372. _iframe.contentWindow.document.body.appendChild(script1);
  8373. _iframe.contentWindow.document.body.appendChild(script2);
  8374. _iframe.contentWindow.document.body.appendChild(script4);
  8375. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8376. };
  8377. // if (onloadListener) {
  8378. // try {
  8379. // _iframe.src += "?cocorobo="+new Date().getTime()
  8380. // _iframe.contentWindow.document.location.reload()
  8381. // } catch (error) {
  8382. // }
  8383. // } else {
  8384. // _iframe.contentDocument.location.reload()
  8385. // }
  8386. } else {
  8387. _iframe.onload = () => {
  8388. _iframe.contentWindow.document.body.appendChild(script1);
  8389. _iframe.contentWindow.document.body.appendChild(script2);
  8390. // _iframe.contentWindow.document.body.appendChild(script3);
  8391. _iframe.contentWindow.document.body.appendChild(script4);
  8392. };
  8393. }
  8394. _jie.onclick = async () => {
  8395. let text = ''
  8396. if (aTool == 1) {
  8397. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8398. } else if (aTool == 6) {
  8399. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8400. } else if (aTool == 3) {
  8401. text = await U.MD.D.I.getEditorContent(_iframe);
  8402. }
  8403. _loading.style.display = 'flex'
  8404. console.log(_loading);
  8405. var _ajs = _iframe.contentWindow.document.createElement("script");
  8406. _ajs.type = "text/javascript";
  8407. _ajs.innerHTML =
  8408. // 'console.log(' + _loading + ');\n' +
  8409. 'var _js = document.createElement("script");\n' +
  8410. '_js.type="text/javascript";\n' +
  8411. '_js.charset="UTF-8";\n' +
  8412. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8413. "_js.onload = function(){\n" +
  8414. ' var a = document.getElementsByTagName("img")\n' +
  8415. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8416. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8417. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8418. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8419. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8420. "beforeUpload_shishi(file," +
  8421. "'" +
  8422. _userid +
  8423. "'" +
  8424. ", " +
  8425. "'" +
  8426. _cid +
  8427. "'" +
  8428. ", " +
  8429. "'" +
  8430. _stage +
  8431. "'" +
  8432. ", " +
  8433. "'" +
  8434. _task +
  8435. "'" +
  8436. ", " +
  8437. "'" +
  8438. _tool +
  8439. "'" +
  8440. ", " +
  8441. "'" +
  8442. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8443. "'" +
  8444. ", " +
  8445. "'" +
  8446. aTool +
  8447. "'" +
  8448. ", " +
  8449. "`" +
  8450. text +
  8451. "`" +
  8452. ")\n" +
  8453. " });\n" +
  8454. "}\n" +
  8455. "document.head.appendChild(_js);\n";
  8456. _iframe.contentWindow.document.head.appendChild(_ajs);
  8457. }
  8458. }
  8459. //U.MD.D.I.openClick(str);
  8460. //如果有任務欄信息
  8461. // if (_taskbar) {
  8462. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8463. // }
  8464. }
  8465. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8466. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8467. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8468. _userinfo = US.userInfo, //登錄用戶信息
  8469. _userid = US.userInfo.userid //登錄用戶id
  8470. let _iframe;
  8471. let _cid = cid,
  8472. _stage = stage,
  8473. _task = task,
  8474. _tool = tool;
  8475. var _jie = $$("div", {
  8476. "style": {
  8477. "position": "absolute",
  8478. "bottom": "50px",
  8479. "right": "50px",
  8480. "zIndex": "9999",
  8481. "backgroundColor": "#2268bc",
  8482. "color": "#fff",
  8483. "padding": "12px 20px",
  8484. "cursor": "pointer",
  8485. "borderRadius": "4px",
  8486. },
  8487. "innerHTML": "提交作業"
  8488. })
  8489. let aTool = ''
  8490. let _loading = document.createElement('div')
  8491. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  8492. // _loading.id = "";
  8493. let _lchild = document.createElement('div')
  8494. let _limg = document.createElement('img')
  8495. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8496. _limg.style = "width: 26px;margin-right: 10px;"
  8497. _lchild.appendChild(_limg)
  8498. let _lspan = document.createElement('span')
  8499. _lspan.innerHTML = "上傳中..."
  8500. _lchild.appendChild(_lspan)
  8501. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  8502. _loading.appendChild(_lchild)
  8503. let _box = $$('div', {
  8504. "style": {
  8505. "position": "relative",
  8506. "width": "100%",
  8507. "height": "100%",
  8508. },
  8509. })
  8510. _box.appendChild(_loading)
  8511. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8512. switch (str) {
  8513. case "whiteboard":
  8514. aTool = 1;
  8515. _iframe = $$("iframe", {
  8516. "frameborder": "no",
  8517. "border": "0",
  8518. "scrolling ": "no",
  8519. "style": {
  8520. "cssText": "border:0;width:100%;height:100%"
  8521. },
  8522. "src": "https://iwb.cocorobo.hk/"
  8523. })
  8524. _box.appendChild(_iframe);
  8525. _box.appendChild(_jie);
  8526. _formdiv = new U.UF.UI.form(
  8527. "電子白闆",
  8528. _box, {
  8529. "id": "whiteboard" + cid + stage + task + tool,
  8530. "style": {
  8531. "width": "90%",
  8532. "height": "90%",
  8533. "overflow": 'hidden'
  8534. },
  8535. "onresize": function () { }
  8536. }, {
  8537. closecallback: function () { }
  8538. }, {
  8539. "style": {
  8540. "height": "36px"
  8541. }
  8542. }).form; //創建窗體
  8543. _taskbar = {
  8544. "id": str + _formdiv.id,
  8545. "style": {
  8546. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8547. },
  8548. "name": "電子白闆",
  8549. "forms": _formdiv,
  8550. "click": function () {
  8551. U.MD.D.I.openApplication(str, obj, info);
  8552. }
  8553. }
  8554. break;
  8555. case "mind":
  8556. aTool = 3;
  8557. _iframe = $$("iframe", {
  8558. "frameborder": "no",
  8559. "border": "0",
  8560. "scrolling ": "no",
  8561. "style": {
  8562. "cssText": "border:0;width:100%;height:100%"
  8563. },
  8564. "src": "/kityminder-editor/dist/index.html"
  8565. })
  8566. _box.appendChild(_iframe);
  8567. _box.appendChild(_jie);
  8568. _formdiv = new U.UF.UI.form(
  8569. "思維導圖",
  8570. _box, { //"/jsmind/example/demo.html"
  8571. "id": "mind" + cid + stage + task + tool,
  8572. "style": {
  8573. "width": "90%",
  8574. "height": "90%",
  8575. "overflow": 'hidden'
  8576. },
  8577. "onresize": function () { }
  8578. }, {
  8579. closecallback: function () { }
  8580. }, {
  8581. "style": {
  8582. "height": "36px"
  8583. }
  8584. }).form; //創建窗體
  8585. _taskbar = {
  8586. "id": str + _formdiv.id,
  8587. "style": {
  8588. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8589. },
  8590. "name": "思維導圖",
  8591. "forms": _formdiv,
  8592. "click": function () {
  8593. U.MD.D.I.openApplication(str, obj, info);
  8594. }
  8595. }
  8596. break;
  8597. case "MindMap":
  8598. aTool = 3;
  8599. _iframe = $$("iframe", {
  8600. "frameborder": "no",
  8601. "border": "0",
  8602. "scrolling ": "no",
  8603. "style": {
  8604. "cssText": "border:0;width:100%;height:100%"
  8605. },
  8606. "src": "//cloud.cocorobo.hk/mind/"
  8607. })
  8608. _box.appendChild(_iframe);
  8609. _box.appendChild(_jie);
  8610. _formdiv = new U.UF.UI.form(
  8611. "思維導圖",
  8612. _box, { //"/jsmind/example/demo.html"
  8613. "id": "mind" + cid + stage + task + tool,
  8614. "style": {
  8615. "width": "90%",
  8616. "height": "90%",
  8617. "overflow": 'hidden'
  8618. },
  8619. "onresize": function () { }
  8620. }, {
  8621. closecallback: function () { }
  8622. }, {
  8623. "style": {
  8624. "height": "36px"
  8625. }
  8626. }).form; //創建窗體
  8627. _taskbar = {
  8628. "id": str + _formdiv.id,
  8629. "style": {
  8630. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8631. },
  8632. "name": "思維導圖",
  8633. "forms": _formdiv,
  8634. "click": function () {
  8635. U.MD.D.I.openApplication(str, obj, info);
  8636. }
  8637. }
  8638. break;
  8639. case "doc":
  8640. aTool = 6;
  8641. _iframe = $$("iframe", {
  8642. "frameborder": "no",
  8643. "border": "0",
  8644. "scrolling ": "no",
  8645. "style": {
  8646. "cssText": "border:0;width:100%;height:100%"
  8647. },
  8648. "src": "/Office/Word/WordEditArea.htm"
  8649. })
  8650. _box.appendChild(_iframe);
  8651. _box.appendChild(_jie);
  8652. _formdiv = new U.UF.UI.form(
  8653. "協同文檔",
  8654. _box, {
  8655. "id": "doc" + cid + stage + task + tool,
  8656. "style": {
  8657. "width": "90%",
  8658. "height": "90%",
  8659. "overflow": 'hidden'
  8660. },
  8661. "onresize": function () { }
  8662. }, {
  8663. closecallback: function () { }
  8664. }, {
  8665. "style": {
  8666. "height": "36px"
  8667. }
  8668. }).form; //創建窗體
  8669. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8670. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8671. })
  8672. _taskbar = {
  8673. "id": str + _formdiv.id,
  8674. "style": {
  8675. "backgroundImage": "url(/img/icon/doc.png)"
  8676. },
  8677. "name": "協同文檔",
  8678. "forms": _formdiv,
  8679. "click": function () {
  8680. U.MD.D.I.openApplication(str, obj, info);
  8681. }
  8682. }
  8683. break;
  8684. case "mindNetwork": //好友打開
  8685. aTool = 7;
  8686. _iframe = $$("iframe", {
  8687. "webkitallowfullscreen": "",
  8688. "mozallowfullscreen": "",
  8689. "allowfullscreen": "",
  8690. "frameborder": "no",
  8691. "border": "0",
  8692. "scrolling ": "no",
  8693. "style": {
  8694. "cssText": "border:0; width:100%; height:100%;"
  8695. },
  8696. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8697. })
  8698. _box.appendChild(_iframe);
  8699. _box.appendChild(_jie);
  8700. _formdiv = new U.UF.UI.form(
  8701. "思維網格",
  8702. _box, {
  8703. "id": "mindNetwork" + cid + stage + task + tool,
  8704. "style": {
  8705. "width": "90%",
  8706. "height": "90%",
  8707. "overflow": 'hidden'
  8708. },
  8709. "onresize": function () { }
  8710. }, {
  8711. closecallback: function () { }
  8712. }, {
  8713. "style": {
  8714. "height": "36px"
  8715. }
  8716. }).form; //創建窗體
  8717. _taskbar = {
  8718. "id": str + _formdiv.id,
  8719. "style": {
  8720. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8721. },
  8722. "name": "思維網格",
  8723. "forms": _formdiv,
  8724. "click": function () {
  8725. U.MD.D.I.openApplication(str, obj, info);
  8726. }
  8727. }
  8728. break;
  8729. case "courseDesign":
  8730. _iframe = $$("iframe", {
  8731. "webkitallowfullscreen": "",
  8732. "mozallowfullscreen": "",
  8733. "allowfullscreen": "",
  8734. "frameborder": "no",
  8735. "border": "0",
  8736. "scrolling ": "no",
  8737. "style": {
  8738. "cssText": "border:0; width:100%; height:100%;"
  8739. },
  8740. "src": "/course-design-vue"
  8741. })
  8742. _box.appendChild(_iframe);
  8743. _box.appendChild(_jie);
  8744. _formdiv = new U.UF.UI.form(
  8745. "項目設計",
  8746. _box, {
  8747. "id": "courseDesign" + cid + stage + task + tool,
  8748. "style": {
  8749. "width": "90%",
  8750. "height": "90%",
  8751. "overflow": 'hidden'
  8752. },
  8753. "onresize": function () { }
  8754. }, {
  8755. closecallback: function () { }
  8756. }, {
  8757. "style": {
  8758. "height": "36px"
  8759. }
  8760. }).form; //創建窗體
  8761. _taskbar = {
  8762. "id": str + _formdiv.id,
  8763. "style": {
  8764. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8765. },
  8766. "name": "項目設計",
  8767. "forms": _formdiv,
  8768. "click": function () {
  8769. U.MD.D.I.openApplication(str, obj, info);
  8770. }
  8771. }
  8772. break;
  8773. }
  8774. const script1 = document.createElement("script");
  8775. script1.type = "text/javascript";
  8776. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8777. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8778. const script2 = document.createElement("script");
  8779. script2.type = "text/javascript";
  8780. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8781. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8782. const script3 = document.createElement("script");
  8783. script3.type = "text/javascript";
  8784. script3.charset = "UTF-8";
  8785. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8786. const script4 = document.createElement("script");
  8787. script4.type = "text/javascript";
  8788. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8789. script4.src = window.origin + "/js/Common/jietu2E.js";
  8790. if (_iframe) {
  8791. if (str == 'doc') {
  8792. _iframe = _formdiv.querySelector('iframe')
  8793. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8794. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8795. _iframe.contentWindow.document.body.appendChild(script1);
  8796. _iframe.contentWindow.document.body.appendChild(script2);
  8797. // _iframe.contentWindow.document.body.appendChild(script3);
  8798. _iframe.contentWindow.document.body.appendChild(script4);
  8799. })
  8800. if (onloadListener) {
  8801. _iframe.contentDocument.location.reload()
  8802. } else {
  8803. _iframe.contentDocument.location.reload()
  8804. }
  8805. } else if (str == 'courseDesign') {
  8806. U.UF.DL.iframeLoad(_iframe, function () {
  8807. // _iframe.contentWindow.U.MD.O.W.load();
  8808. // _iframe.contentWindow.document.body.appendChild(script1);
  8809. _iframe.contentWindow.document.body.appendChild(script2);
  8810. _iframe.contentWindow.document.body.appendChild(script4);
  8811. })
  8812. } else if (str == 'mind') {
  8813. _iframe = _formdiv.querySelector('iframe')
  8814. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8815. //
  8816. _iframe.contentWindow.document.body.appendChild(script1);
  8817. _iframe.contentWindow.document.body.appendChild(script2);
  8818. _iframe.contentWindow.document.body.appendChild(script4);
  8819. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8820. })
  8821. if (onloadListener) {
  8822. _iframe.contentDocument.location.reload()
  8823. } else {
  8824. _iframe.contentDocument.location.reload()
  8825. }
  8826. } else if (str == 'whiteboard') {
  8827. _iframe = _formdiv.querySelector('iframe')
  8828. let onloadListener = _iframe.onload = () => {
  8829. _iframe.contentWindow.document.body.appendChild(script1);
  8830. _iframe.contentWindow.document.body.appendChild(script2);
  8831. _iframe.contentWindow.document.body.appendChild(script4);
  8832. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8833. };
  8834. // if (onloadListener) {
  8835. // try {
  8836. // _iframe.src += "?cocorobo="+new Date().getTime()
  8837. // _iframe.contentWindow.document.location.reload()
  8838. // } catch (error) {
  8839. // }
  8840. // } else {
  8841. // _iframe.contentDocument.location.reload()
  8842. // }
  8843. } else {
  8844. _iframe.onload = () => {
  8845. _iframe.contentWindow.document.body.appendChild(script1);
  8846. _iframe.contentWindow.document.body.appendChild(script2);
  8847. // _iframe.contentWindow.document.body.appendChild(script3);
  8848. _iframe.contentWindow.document.body.appendChild(script4);
  8849. };
  8850. }
  8851. _jie.onclick = async () => {
  8852. let text = ''
  8853. if (aTool == 1) {
  8854. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8855. } else if (aTool == 6) {
  8856. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8857. } else if (aTool == 3) {
  8858. text = await U.MD.D.I.getEditorContent(_iframe);
  8859. }
  8860. _loading.style.display = 'flex'
  8861. console.log(_loading);
  8862. var _ajs = _iframe.contentWindow.document.createElement("script");
  8863. _ajs.type = "text/javascript";
  8864. _ajs.innerHTML =
  8865. // 'console.log(' + _loading + ');\n' +
  8866. 'var _js = document.createElement("script");\n' +
  8867. '_js.type="text/javascript";\n' +
  8868. '_js.charset="UTF-8";\n' +
  8869. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8870. "_js.onload = function(){\n" +
  8871. ' var a = document.getElementsByTagName("img")\n' +
  8872. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8873. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8874. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8875. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8876. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8877. "beforeUpload_shishi(file," +
  8878. "'" +
  8879. _userid +
  8880. "'" +
  8881. ", " +
  8882. "'" +
  8883. _cid +
  8884. "'" +
  8885. ", " +
  8886. "'" +
  8887. _stage +
  8888. "'" +
  8889. ", " +
  8890. "'" +
  8891. _task +
  8892. "'" +
  8893. ", " +
  8894. "'" +
  8895. _tool +
  8896. "'" +
  8897. ", " +
  8898. "'" +
  8899. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8900. "'" +
  8901. ", " +
  8902. "'" +
  8903. aTool +
  8904. "'" +
  8905. ", " +
  8906. "`" +
  8907. text +
  8908. "`" +
  8909. ")\n" +
  8910. " });\n" +
  8911. "}\n" +
  8912. "document.head.appendChild(_js);\n";
  8913. _iframe.contentWindow.document.head.appendChild(_ajs);
  8914. }
  8915. }
  8916. //U.MD.D.I.openClick(str);
  8917. //如果有任務欄信息
  8918. // if (_taskbar) {
  8919. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  8920. // }
  8921. }
  8922. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8923. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8924. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8925. _userid = student.userid, //登錄用戶id
  8926. _username = student.student //用戶名字
  8927. let _iframe;
  8928. let _cid = cid,
  8929. _stage = stage,
  8930. _task = task,
  8931. _tool = tool;
  8932. var _jie = $$("div", {
  8933. "style": {
  8934. "position": "absolute",
  8935. "bottom": "50px",
  8936. "right": "50px",
  8937. "zIndex": "9999",
  8938. "backgroundColor": "#2268bc",
  8939. "color": "#fff",
  8940. "padding": "12px 20px",
  8941. "cursor": "pointer",
  8942. "borderRadius": "4px",
  8943. },
  8944. "innerHTML": "提交作業"
  8945. })
  8946. let aTool = ''
  8947. let _loading = document.createElement('div')
  8948. _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;"
  8949. // _loading.id = "";
  8950. let _lchild = document.createElement('div')
  8951. let _limg = document.createElement('img')
  8952. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8953. _limg.style = "width: 26px;margin-right: 10px;"
  8954. _lchild.appendChild(_limg)
  8955. let _lspan = document.createElement('span')
  8956. _lspan.innerHTML = "上傳中..."
  8957. _lchild.appendChild(_lspan)
  8958. _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%);"
  8959. _loading.appendChild(_lchild)
  8960. var _box = $$('div', {
  8961. "style": {
  8962. "position": "relative",
  8963. "width": "100%",
  8964. "height": "100%",
  8965. },
  8966. })
  8967. _box.appendChild(_loading)
  8968. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8969. switch (str) {
  8970. case "whiteboard":
  8971. aTool = 1;
  8972. _iframe = $$("iframe", {
  8973. "frameborder": "no",
  8974. "border": "0",
  8975. "scrolling ": "no",
  8976. "style": {
  8977. "cssText": "border:0;width:100%;height:100%"
  8978. },
  8979. "src": "https://iwb.cocorobo.hk/"
  8980. })
  8981. _box.appendChild(_iframe);
  8982. _box.appendChild(_jie);
  8983. _formdiv = new U.UF.UI.form(
  8984. "電子白闆-" + _username,
  8985. _box, {
  8986. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8987. "style": {
  8988. "width": "90%",
  8989. "height": "90%",
  8990. "overflow": 'hidden'
  8991. },
  8992. "onresize": function () { }
  8993. }, {
  8994. closecallback: function () { }
  8995. }, {
  8996. "style": {
  8997. "height": "36px"
  8998. }
  8999. }).form; //創建窗體
  9000. _taskbar = {
  9001. "id": str + _formdiv.id,
  9002. "style": {
  9003. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9004. },
  9005. "name": "電子白闆",
  9006. "forms": _formdiv,
  9007. "click": function () {
  9008. U.MD.D.I.openApplication(str, obj, info);
  9009. }
  9010. }
  9011. break;
  9012. case "mind":
  9013. aTool = 3;
  9014. _iframe = $$("iframe", {
  9015. "frameborder": "no",
  9016. "border": "0",
  9017. "scrolling ": "no",
  9018. "style": {
  9019. "cssText": "border:0;width:100%;height:100%"
  9020. },
  9021. "src": "/kityminder-editor/dist/index.html"
  9022. })
  9023. _box.appendChild(_iframe);
  9024. _box.appendChild(_jie);
  9025. _formdiv = new U.UF.UI.form(
  9026. "思維導圖-" + _username,
  9027. _box, { //"/jsmind/example/demo.html"
  9028. "id": "mind" + cid + stage + task + tool + _userid,
  9029. "style": {
  9030. "width": "90%",
  9031. "height": "90%",
  9032. "overflow": 'hidden'
  9033. },
  9034. "onresize": function () { }
  9035. }, {
  9036. closecallback: function () { }
  9037. }, {
  9038. "style": {
  9039. "height": "36px"
  9040. }
  9041. }).form; //創建窗體
  9042. _taskbar = {
  9043. "id": str + _formdiv.id,
  9044. "style": {
  9045. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9046. },
  9047. "name": "思維導圖",
  9048. "forms": _formdiv,
  9049. "click": function () {
  9050. U.MD.D.I.openApplication(str, obj, info);
  9051. }
  9052. }
  9053. break;
  9054. case "MindMap":
  9055. aTool = 3;
  9056. _iframe = $$("iframe", {
  9057. "frameborder": "no",
  9058. "border": "0",
  9059. "scrolling ": "no",
  9060. "style": {
  9061. "cssText": "border:0;width:100%;height:100%"
  9062. },
  9063. "src": "//cloud.cocorobo.hk/mind/"
  9064. })
  9065. _box.appendChild(_iframe);
  9066. _box.appendChild(_jie);
  9067. _formdiv = new U.UF.UI.form(
  9068. "思維導圖-" + _username,
  9069. _box, { //"/jsmind/example/demo.html"
  9070. "id": "mind" + cid + stage + task + tool + _userid,
  9071. "style": {
  9072. "width": "90%",
  9073. "height": "90%",
  9074. "overflow": 'hidden'
  9075. },
  9076. "onresize": function () { }
  9077. }, {
  9078. closecallback: function () { }
  9079. }, {
  9080. "style": {
  9081. "height": "36px"
  9082. }
  9083. }).form; //創建窗體
  9084. _taskbar = {
  9085. "id": str + _formdiv.id,
  9086. "style": {
  9087. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9088. },
  9089. "name": "思維導圖",
  9090. "forms": _formdiv,
  9091. "click": function () {
  9092. U.MD.D.I.openApplication(str, obj, info);
  9093. }
  9094. }
  9095. break;
  9096. case "doc":
  9097. aTool = 6;
  9098. _iframe = $$("iframe", {
  9099. "frameborder": "no",
  9100. "border": "0",
  9101. "scrolling ": "no",
  9102. "style": {
  9103. "cssText": "border:0;width:100%;height:100%"
  9104. },
  9105. "src": "/Office/Word/WordEditArea.htm"
  9106. })
  9107. _box.appendChild(_iframe);
  9108. _box.appendChild(_jie);
  9109. _formdiv = new U.UF.UI.form(
  9110. "協同文檔-" + _username,
  9111. _box, {
  9112. "id": "doc" + cid + stage + task + tool + _userid,
  9113. "style": {
  9114. "width": "90%",
  9115. "height": "90%",
  9116. "overflow": 'hidden'
  9117. },
  9118. "onresize": function () { }
  9119. }, {
  9120. closecallback: function () { }
  9121. }, {
  9122. "style": {
  9123. "height": "36px"
  9124. }
  9125. }).form; //創建窗體
  9126. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9127. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9128. })
  9129. _taskbar = {
  9130. "id": str + _formdiv.id,
  9131. "style": {
  9132. "backgroundImage": "url(/img/icon/doc.png)"
  9133. },
  9134. "name": "協同文檔",
  9135. "forms": _formdiv,
  9136. "click": function () {
  9137. U.MD.D.I.openApplication(str, obj, info);
  9138. }
  9139. }
  9140. break;
  9141. case "mindNetwork": //好友打開
  9142. aTool = 7;
  9143. _iframe = $$("iframe", {
  9144. "webkitallowfullscreen": "",
  9145. "mozallowfullscreen": "",
  9146. "allowfullscreen": "",
  9147. "frameborder": "no",
  9148. "border": "0",
  9149. "scrolling ": "no",
  9150. "style": {
  9151. "cssText": "border:0; width:100%; height:100%;"
  9152. },
  9153. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9154. })
  9155. _box.appendChild(_iframe);
  9156. _box.appendChild(_jie);
  9157. _formdiv = new U.UF.UI.form(
  9158. "思維網格-" + _username,
  9159. _box, {
  9160. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9161. "style": {
  9162. "width": "90%",
  9163. "height": "90%",
  9164. "overflow": 'hidden'
  9165. },
  9166. "onresize": function () { }
  9167. }, {
  9168. closecallback: function () { }
  9169. }, {
  9170. "style": {
  9171. "height": "36px"
  9172. }
  9173. }).form; //創建窗體
  9174. _taskbar = {
  9175. "id": str + _formdiv.id,
  9176. "style": {
  9177. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9178. },
  9179. "name": "思維網格",
  9180. "forms": _formdiv,
  9181. "click": function () {
  9182. U.MD.D.I.openApplication(str, obj, info);
  9183. }
  9184. }
  9185. break;
  9186. case "courseDesign":
  9187. _iframe = $$("iframe", {
  9188. "webkitallowfullscreen": "",
  9189. "mozallowfullscreen": "",
  9190. "allowfullscreen": "",
  9191. "frameborder": "no",
  9192. "border": "0",
  9193. "scrolling ": "no",
  9194. "style": {
  9195. "cssText": "border:0; width:100%; height:100%;"
  9196. },
  9197. "src": "/course-design-vue"
  9198. })
  9199. _box.appendChild(_iframe);
  9200. _box.appendChild(_jie);
  9201. _formdiv = new U.UF.UI.form(
  9202. "項目設計-" + _username,
  9203. _box, {
  9204. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9205. "style": {
  9206. "width": "90%",
  9207. "height": "90%",
  9208. "overflow": 'hidden'
  9209. },
  9210. "onresize": function () { }
  9211. }, {
  9212. closecallback: function () { }
  9213. }, {
  9214. "style": {
  9215. "height": "36px"
  9216. }
  9217. }).form; //創建窗體
  9218. _taskbar = {
  9219. "id": str + _formdiv.id,
  9220. "style": {
  9221. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9222. },
  9223. "name": "項目設計",
  9224. "forms": _formdiv,
  9225. "click": function () {
  9226. U.MD.D.I.openApplication(str, obj, info);
  9227. }
  9228. }
  9229. break;
  9230. }
  9231. const script1 = document.createElement("script");
  9232. script1.type = "text/javascript";
  9233. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9234. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9235. const script2 = document.createElement("script");
  9236. script2.type = "text/javascript";
  9237. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9238. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9239. const script3 = document.createElement("script");
  9240. script3.type = "text/javascript";
  9241. script3.charset = "UTF-8";
  9242. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9243. const script4 = document.createElement("script");
  9244. script4.type = "text/javascript";
  9245. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9246. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  9247. if (_iframe) {
  9248. if (str == 'doc') {
  9249. _iframe = _formdiv.querySelector('iframe')
  9250. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9251. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9252. _iframe.contentWindow.document.body.appendChild(script1);
  9253. _iframe.contentWindow.document.body.appendChild(script2);
  9254. // _iframe.contentWindow.document.body.appendChild(script3);
  9255. _iframe.contentWindow.document.body.appendChild(script4);
  9256. })
  9257. if (onloadListener) {
  9258. _iframe.contentDocument.location.reload()
  9259. } else {
  9260. _iframe.contentDocument.location.reload()
  9261. }
  9262. } else if (str == 'courseDesign') {
  9263. U.UF.DL.iframeLoad(_iframe, function () {
  9264. // _iframe.contentWindow.U.MD.O.W.load();
  9265. // _iframe.contentWindow.document.body.appendChild(script1);
  9266. _iframe.contentWindow.document.body.appendChild(script2);
  9267. _iframe.contentWindow.document.body.appendChild(script4);
  9268. })
  9269. } else if (str == 'mind') {
  9270. _iframe = _formdiv.querySelector('iframe')
  9271. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9272. //
  9273. _iframe.contentWindow.document.body.appendChild(script1);
  9274. _iframe.contentWindow.document.body.appendChild(script2);
  9275. _iframe.contentWindow.document.body.appendChild(script4);
  9276. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9277. })
  9278. if (onloadListener) {
  9279. _iframe.contentDocument.location.reload()
  9280. } else {
  9281. _iframe.contentDocument.location.reload()
  9282. }
  9283. } else if (str == 'whiteboard') {
  9284. _iframe = _formdiv.querySelector('iframe')
  9285. let onloadListener = _iframe.onload = () => {
  9286. _iframe.contentWindow.document.body.appendChild(script1);
  9287. _iframe.contentWindow.document.body.appendChild(script2);
  9288. _iframe.contentWindow.document.body.appendChild(script4);
  9289. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9290. };
  9291. // if (onloadListener) {
  9292. // try {
  9293. // _iframe.src += "?cocorobo="+new Date().getTime()
  9294. // _iframe.contentWindow.document.location.reload()
  9295. // } catch (error) {
  9296. // }
  9297. // } else {
  9298. // _iframe.contentDocument.location.reload()
  9299. // }
  9300. } else {
  9301. _iframe.onload = () => {
  9302. _iframe.contentWindow.document.body.appendChild(script1);
  9303. _iframe.contentWindow.document.body.appendChild(script2);
  9304. // _iframe.contentWindow.document.body.appendChild(script3);
  9305. _iframe.contentWindow.document.body.appendChild(script4);
  9306. };
  9307. }
  9308. _jie.onclick = async () => {
  9309. let text = ''
  9310. if (aTool == 1) {
  9311. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9312. } else if (aTool == 6) {
  9313. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9314. } else if (aTool == 3) {
  9315. text = await U.MD.D.I.getEditorContent(_iframe);
  9316. }
  9317. _loading.style.display = 'flex'
  9318. console.log(_loading);
  9319. var _ajs = _iframe.contentWindow.document.createElement("script");
  9320. _ajs.type = "text/javascript";
  9321. _ajs.innerHTML =
  9322. // 'console.log(' + _loading + ');\n' +
  9323. 'var _js = document.createElement("script");\n' +
  9324. '_js.type="text/javascript";\n' +
  9325. '_js.charset="UTF-8";\n' +
  9326. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9327. "_js.onload = function(){\n" +
  9328. ' var a = document.getElementsByTagName("img")\n' +
  9329. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9330. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9331. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9332. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9333. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9334. "beforeUpload_shishi(file," +
  9335. "'" +
  9336. _userid +
  9337. "'" +
  9338. ", " +
  9339. "'" +
  9340. _cid +
  9341. "'" +
  9342. ", " +
  9343. "'" +
  9344. _stage +
  9345. "'" +
  9346. ", " +
  9347. "'" +
  9348. _task +
  9349. "'" +
  9350. ", " +
  9351. "'" +
  9352. _tool +
  9353. "'" +
  9354. ", " +
  9355. "'" +
  9356. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9357. "'" +
  9358. ", " +
  9359. "'" +
  9360. aTool +
  9361. "'" +
  9362. ", " +
  9363. "`" +
  9364. text +
  9365. "`" +
  9366. ")\n" +
  9367. " });\n" +
  9368. "}\n" +
  9369. "document.head.appendChild(_js);\n";
  9370. _iframe.contentWindow.document.head.appendChild(_ajs);
  9371. }
  9372. }
  9373. }
  9374. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9375. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9376. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9377. _userid = student.userid, //登錄用戶id
  9378. _username = student.student //用戶名字
  9379. let _iframe;
  9380. let _cid = cid,
  9381. _stage = stage,
  9382. _task = task,
  9383. _tool = tool;
  9384. var _jie = $$("div", {
  9385. "style": {
  9386. "position": "absolute",
  9387. "bottom": "50px",
  9388. "right": "50px",
  9389. "zIndex": "9999",
  9390. "backgroundColor": "#2268bc",
  9391. "color": "#fff",
  9392. "padding": "12px 20px",
  9393. "cursor": "pointer",
  9394. "borderRadius": "4px",
  9395. },
  9396. "innerHTML": "提交作業"
  9397. })
  9398. let aTool = ''
  9399. let _loading = document.createElement('div')
  9400. _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;"
  9401. // _loading.id = "";
  9402. let _lchild = document.createElement('div')
  9403. let _limg = document.createElement('img')
  9404. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9405. _limg.style = "width: 26px;margin-right: 10px;"
  9406. _lchild.appendChild(_limg)
  9407. let _lspan = document.createElement('span')
  9408. _lspan.innerHTML = "上傳中..."
  9409. _lchild.appendChild(_lspan)
  9410. _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%);"
  9411. _loading.appendChild(_lchild)
  9412. var _box = $$('div', {
  9413. "style": {
  9414. "position": "relative",
  9415. "width": "100%",
  9416. "height": "100%",
  9417. },
  9418. })
  9419. _box.appendChild(_loading)
  9420. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9421. switch (str) {
  9422. case "whiteboard":
  9423. aTool = 1;
  9424. _iframe = $$("iframe", {
  9425. "frameborder": "no",
  9426. "border": "0",
  9427. "scrolling ": "no",
  9428. "style": {
  9429. "cssText": "border:0;width:100%;height:100%"
  9430. },
  9431. "src": "https://iwb.cocorobo.hk/"
  9432. })
  9433. _box.appendChild(_iframe);
  9434. _box.appendChild(_jie);
  9435. _formdiv = new U.UF.UI.form(
  9436. "電子白闆-" + _username,
  9437. _box, {
  9438. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9439. "style": {
  9440. "width": "90%",
  9441. "height": "90%",
  9442. "overflow": 'hidden'
  9443. },
  9444. "onresize": function () { }
  9445. }, {
  9446. closecallback: function () { }
  9447. }, {
  9448. "style": {
  9449. "height": "36px"
  9450. }
  9451. }).form; //創建窗體
  9452. _taskbar = {
  9453. "id": str + _formdiv.id,
  9454. "style": {
  9455. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9456. },
  9457. "name": "電子白闆",
  9458. "forms": _formdiv,
  9459. "click": function () {
  9460. U.MD.D.I.openApplication(str, obj, info);
  9461. }
  9462. }
  9463. break;
  9464. case "mind":
  9465. aTool = 3;
  9466. _iframe = $$("iframe", {
  9467. "frameborder": "no",
  9468. "border": "0",
  9469. "scrolling ": "no",
  9470. "style": {
  9471. "cssText": "border:0;width:100%;height:100%"
  9472. },
  9473. "src": "/kityminder-editor/dist/index.html"
  9474. })
  9475. _box.appendChild(_iframe);
  9476. _box.appendChild(_jie);
  9477. _formdiv = new U.UF.UI.form(
  9478. "思維導圖-" + _username,
  9479. _box, { //"/jsmind/example/demo.html"
  9480. "id": "mind" + cid + stage + task + tool + _userid,
  9481. "style": {
  9482. "width": "90%",
  9483. "height": "90%",
  9484. "overflow": 'hidden'
  9485. },
  9486. "onresize": function () { }
  9487. }, {
  9488. closecallback: function () { }
  9489. }, {
  9490. "style": {
  9491. "height": "36px"
  9492. }
  9493. }).form; //創建窗體
  9494. _taskbar = {
  9495. "id": str + _formdiv.id,
  9496. "style": {
  9497. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9498. },
  9499. "name": "思維導圖",
  9500. "forms": _formdiv,
  9501. "click": function () {
  9502. U.MD.D.I.openApplication(str, obj, info);
  9503. }
  9504. }
  9505. break;
  9506. case "MindMap":
  9507. aTool = 3;
  9508. _iframe = $$("iframe", {
  9509. "frameborder": "no",
  9510. "border": "0",
  9511. "scrolling ": "no",
  9512. "style": {
  9513. "cssText": "border:0;width:100%;height:100%"
  9514. },
  9515. "src": "//cloud.cocorobo.hk/mind/"
  9516. })
  9517. _box.appendChild(_iframe);
  9518. _box.appendChild(_jie);
  9519. _formdiv = new U.UF.UI.form(
  9520. "思維導圖-" + _username,
  9521. _box, { //"/jsmind/example/demo.html"
  9522. "id": "mind" + cid + stage + task + tool + _userid,
  9523. "style": {
  9524. "width": "90%",
  9525. "height": "90%",
  9526. "overflow": 'hidden'
  9527. },
  9528. "onresize": function () { }
  9529. }, {
  9530. closecallback: function () { }
  9531. }, {
  9532. "style": {
  9533. "height": "36px"
  9534. }
  9535. }).form; //創建窗體
  9536. _taskbar = {
  9537. "id": str + _formdiv.id,
  9538. "style": {
  9539. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9540. },
  9541. "name": "思維導圖",
  9542. "forms": _formdiv,
  9543. "click": function () {
  9544. U.MD.D.I.openApplication(str, obj, info);
  9545. }
  9546. }
  9547. break;
  9548. case "doc":
  9549. aTool = 6;
  9550. _iframe = $$("iframe", {
  9551. "frameborder": "no",
  9552. "border": "0",
  9553. "scrolling ": "no",
  9554. "style": {
  9555. "cssText": "border:0;width:100%;height:100%"
  9556. },
  9557. "src": "/Office/Word/WordEditArea.htm"
  9558. })
  9559. _box.appendChild(_iframe);
  9560. _box.appendChild(_jie);
  9561. _formdiv = new U.UF.UI.form(
  9562. "協同文檔-" + _username,
  9563. _box, {
  9564. "id": "doc" + cid + stage + task + tool + _userid,
  9565. "style": {
  9566. "width": "90%",
  9567. "height": "90%",
  9568. "overflow": 'hidden'
  9569. },
  9570. "onresize": function () { }
  9571. }, {
  9572. closecallback: function () { }
  9573. }, {
  9574. "style": {
  9575. "height": "36px"
  9576. }
  9577. }).form; //創建窗體
  9578. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9579. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9580. })
  9581. _taskbar = {
  9582. "id": str + _formdiv.id,
  9583. "style": {
  9584. "backgroundImage": "url(/img/icon/doc.png)"
  9585. },
  9586. "name": "協同文檔",
  9587. "forms": _formdiv,
  9588. "click": function () {
  9589. U.MD.D.I.openApplication(str, obj, info);
  9590. }
  9591. }
  9592. break;
  9593. case "mindNetwork": //好友打開
  9594. aTool = 7;
  9595. _iframe = $$("iframe", {
  9596. "webkitallowfullscreen": "",
  9597. "mozallowfullscreen": "",
  9598. "allowfullscreen": "",
  9599. "frameborder": "no",
  9600. "border": "0",
  9601. "scrolling ": "no",
  9602. "style": {
  9603. "cssText": "border:0; width:100%; height:100%;"
  9604. },
  9605. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9606. })
  9607. _box.appendChild(_iframe);
  9608. _box.appendChild(_jie);
  9609. _formdiv = new U.UF.UI.form(
  9610. "思維網格-" + _username,
  9611. _box, {
  9612. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9613. "style": {
  9614. "width": "90%",
  9615. "height": "90%",
  9616. "overflow": 'hidden'
  9617. },
  9618. "onresize": function () { }
  9619. }, {
  9620. closecallback: function () { }
  9621. }, {
  9622. "style": {
  9623. "height": "36px"
  9624. }
  9625. }).form; //創建窗體
  9626. _taskbar = {
  9627. "id": str + _formdiv.id,
  9628. "style": {
  9629. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9630. },
  9631. "name": "思維網格",
  9632. "forms": _formdiv,
  9633. "click": function () {
  9634. U.MD.D.I.openApplication(str, obj, info);
  9635. }
  9636. }
  9637. break;
  9638. case "courseDesign":
  9639. _iframe = $$("iframe", {
  9640. "webkitallowfullscreen": "",
  9641. "mozallowfullscreen": "",
  9642. "allowfullscreen": "",
  9643. "frameborder": "no",
  9644. "border": "0",
  9645. "scrolling ": "no",
  9646. "style": {
  9647. "cssText": "border:0; width:100%; height:100%;"
  9648. },
  9649. "src": "/course-design-vue"
  9650. })
  9651. _box.appendChild(_iframe);
  9652. _box.appendChild(_jie);
  9653. _formdiv = new U.UF.UI.form(
  9654. "項目設計-" + _username,
  9655. _box, {
  9656. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9657. "style": {
  9658. "width": "90%",
  9659. "height": "90%",
  9660. "overflow": 'hidden'
  9661. },
  9662. "onresize": function () { }
  9663. }, {
  9664. closecallback: function () { }
  9665. }, {
  9666. "style": {
  9667. "height": "36px"
  9668. }
  9669. }).form; //創建窗體
  9670. _taskbar = {
  9671. "id": str + _formdiv.id,
  9672. "style": {
  9673. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9674. },
  9675. "name": "項目設計",
  9676. "forms": _formdiv,
  9677. "click": function () {
  9678. U.MD.D.I.openApplication(str, obj, info);
  9679. }
  9680. }
  9681. break;
  9682. }
  9683. const script1 = document.createElement("script");
  9684. script1.type = "text/javascript";
  9685. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9686. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9687. const script2 = document.createElement("script");
  9688. script2.type = "text/javascript";
  9689. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9690. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9691. const script3 = document.createElement("script");
  9692. script3.type = "text/javascript";
  9693. script3.charset = "UTF-8";
  9694. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9695. const script4 = document.createElement("script");
  9696. script4.type = "text/javascript";
  9697. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9698. script4.src = window.origin + "/js/Common/jietu2E.js";
  9699. if (_iframe) {
  9700. if (str == 'doc') {
  9701. _iframe = _formdiv.querySelector('iframe')
  9702. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9703. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9704. _iframe.contentWindow.document.body.appendChild(script1);
  9705. _iframe.contentWindow.document.body.appendChild(script2);
  9706. // _iframe.contentWindow.document.body.appendChild(script3);
  9707. _iframe.contentWindow.document.body.appendChild(script4);
  9708. })
  9709. if (onloadListener) {
  9710. _iframe.contentDocument.location.reload()
  9711. } else {
  9712. _iframe.contentDocument.location.reload()
  9713. }
  9714. } else if (str == 'courseDesign') {
  9715. U.UF.DL.iframeLoad(_iframe, function () {
  9716. // _iframe.contentWindow.U.MD.O.W.load();
  9717. // _iframe.contentWindow.document.body.appendChild(script1);
  9718. _iframe.contentWindow.document.body.appendChild(script2);
  9719. _iframe.contentWindow.document.body.appendChild(script4);
  9720. })
  9721. } else if (str == 'mind') {
  9722. _iframe = _formdiv.querySelector('iframe')
  9723. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9724. //
  9725. _iframe.contentWindow.document.body.appendChild(script1);
  9726. _iframe.contentWindow.document.body.appendChild(script2);
  9727. _iframe.contentWindow.document.body.appendChild(script4);
  9728. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9729. })
  9730. if (onloadListener) {
  9731. _iframe.contentDocument.location.reload()
  9732. } else {
  9733. _iframe.contentDocument.location.reload()
  9734. }
  9735. } else if (str == 'whiteboard') {
  9736. _iframe = _formdiv.querySelector('iframe')
  9737. let onloadListener = _iframe.onload = () => {
  9738. _iframe.contentWindow.document.body.appendChild(script1);
  9739. _iframe.contentWindow.document.body.appendChild(script2);
  9740. _iframe.contentWindow.document.body.appendChild(script4);
  9741. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9742. };
  9743. // if (onloadListener) {
  9744. // try {
  9745. // _iframe.src += "?cocorobo="+new Date().getTime()
  9746. // _iframe.contentWindow.document.location.reload()
  9747. // } catch (error) {
  9748. // }
  9749. // } else {
  9750. // _iframe.contentDocument.location.reload()
  9751. // }
  9752. } else {
  9753. _iframe.onload = () => {
  9754. _iframe.contentWindow.document.body.appendChild(script1);
  9755. _iframe.contentWindow.document.body.appendChild(script2);
  9756. // _iframe.contentWindow.document.body.appendChild(script3);
  9757. _iframe.contentWindow.document.body.appendChild(script4);
  9758. };
  9759. }
  9760. _jie.onclick = async () => {
  9761. let text = ''
  9762. if (aTool == 1) {
  9763. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9764. } else if (aTool == 6) {
  9765. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9766. } else if (aTool == 3) {
  9767. text = await U.MD.D.I.getEditorContent(_iframe);
  9768. }
  9769. _loading.style.display = 'flex'
  9770. console.log(_loading);
  9771. var _ajs = _iframe.contentWindow.document.createElement("script");
  9772. _ajs.type = "text/javascript";
  9773. _ajs.innerHTML =
  9774. // 'console.log(' + _loading + ');\n' +
  9775. 'var _js = document.createElement("script");\n' +
  9776. '_js.type="text/javascript";\n' +
  9777. '_js.charset="UTF-8";\n' +
  9778. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9779. "_js.onload = function(){\n" +
  9780. ' var a = document.getElementsByTagName("img")\n' +
  9781. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9782. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9783. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9784. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9785. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9786. "beforeUpload_shishi(file," +
  9787. "'" +
  9788. _userid +
  9789. "'" +
  9790. ", " +
  9791. "'" +
  9792. _cid +
  9793. "'" +
  9794. ", " +
  9795. "'" +
  9796. _stage +
  9797. "'" +
  9798. ", " +
  9799. "'" +
  9800. _task +
  9801. "'" +
  9802. ", " +
  9803. "'" +
  9804. _tool +
  9805. "'" +
  9806. ", " +
  9807. "'" +
  9808. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9809. "'" +
  9810. ", " +
  9811. "'" +
  9812. aTool +
  9813. "'" +
  9814. ", " +
  9815. "`" +
  9816. text +
  9817. "`" +
  9818. ")\n" +
  9819. " });\n" +
  9820. "}\n" +
  9821. "document.head.appendChild(_js);\n";
  9822. _iframe.contentWindow.document.head.appendChild(_ajs);
  9823. }
  9824. }
  9825. }
  9826. U.MD.D.I.getEditorContent = function (iframe) {
  9827. return new Promise((resolve, reject) => {
  9828. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9829. console.log(content);
  9830. resolve(content)
  9831. });
  9832. });
  9833. }
  9834. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9835. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9836. // if (res.value[0].length > 0) {
  9837. // // resolve(res.value[0][0].text);
  9838. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9839. // $(fileInput).val('');
  9840. // });
  9841. // }
  9842. // }, [], { "type": "GET", "withCredentials": true });
  9843. var xmlhttp;
  9844. var Mac, Sn, DeviceId
  9845. if (window.XMLHttpRequest) {
  9846. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9847. xmlhttp = new XMLHttpRequest();
  9848. }
  9849. else {
  9850. // IE6, IE5 瀏覽器執行代碼
  9851. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9852. }
  9853. xmlhttp.onreadystatechange = function () {
  9854. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9855. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9856. // resolve(res.value[0][0].text);
  9857. if (type == '2') {
  9858. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9859. } else if (type == '3') {
  9860. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9861. }
  9862. } else {
  9863. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9864. }
  9865. }
  9866. }
  9867. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9868. xmlhttp.send();
  9869. }
  9870. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9871. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9872. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9873. _userinfo = US.userInfo, //登錄用戶信息
  9874. _userid = US.userInfo.userid //登錄用戶id
  9875. let _iframe;
  9876. let _cid = cid,
  9877. _stage = stage,
  9878. _task = task,
  9879. _tool = tool;
  9880. var _jie = $$("div", {
  9881. "style": {
  9882. "position": "absolute",
  9883. "bottom": "50px",
  9884. "right": "50px",
  9885. "zIndex": "9999",
  9886. "backgroundColor": "#2268bc",
  9887. "color": "#fff",
  9888. "padding": "12px 20px",
  9889. "cursor": "pointer",
  9890. "borderRadius": "4px",
  9891. },
  9892. "innerHTML": "確認並提交"
  9893. })
  9894. let aTool = ''
  9895. let _loading = document.createElement('div')
  9896. _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;"
  9897. // _loading.id = "";
  9898. let _lchild = document.createElement('div')
  9899. let _limg = document.createElement('img')
  9900. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9901. _limg.style = "width: 26px;margin-right: 10px;"
  9902. _lchild.appendChild(_limg)
  9903. let _lspan = document.createElement('span')
  9904. _lspan.innerHTML = "上傳中..."
  9905. _lchild.appendChild(_lspan)
  9906. _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%);"
  9907. _loading.appendChild(_lchild)
  9908. var _box = $$('div', {
  9909. "style": {
  9910. "position": "relative",
  9911. "width": "100%",
  9912. "height": "100%",
  9913. },
  9914. })
  9915. _box.appendChild(_loading)
  9916. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9917. switch (str) {
  9918. case "whiteboard":
  9919. aTool = 1;
  9920. _iframe = $$("iframe", {
  9921. "frameborder": "no",
  9922. "border": "0",
  9923. "scrolling ": "no",
  9924. "style": {
  9925. "cssText": "border:0;width:100%;height:100%"
  9926. },
  9927. "src": "https://iwb.cocorobo.hk/"
  9928. })
  9929. _box.appendChild(_iframe);
  9930. _box.appendChild(_jie);
  9931. _formdiv = new U.UF.UI.form(
  9932. "電子白闆",
  9933. _box, {
  9934. "id": "whiteboards" + cid + stage + task + tool,
  9935. "style": {
  9936. "width": "90%",
  9937. "height": "90%",
  9938. "overflow": 'hidden'
  9939. },
  9940. "onresize": function () { }
  9941. }, {
  9942. closecallback: function () { }
  9943. }, {
  9944. "style": {
  9945. "height": "36px"
  9946. }
  9947. }).form; //創建窗體
  9948. _taskbar = {
  9949. "id": str + _formdiv.id,
  9950. "style": {
  9951. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9952. },
  9953. "name": "電子白闆",
  9954. "forms": _formdiv,
  9955. "click": function () {
  9956. U.MD.D.I.openApplication(str, obj, info);
  9957. }
  9958. }
  9959. break;
  9960. case "mind":
  9961. aTool = 3;
  9962. _iframe = $$("iframe", {
  9963. "frameborder": "no",
  9964. "border": "0",
  9965. "scrolling ": "no",
  9966. "style": {
  9967. "cssText": "border:0;width:100%;height:100%"
  9968. },
  9969. "src": "/kityminder-editor/dist/index.html"
  9970. });
  9971. _box.appendChild(_iframe);
  9972. _box.appendChild(_jie);
  9973. _formdiv = new U.UF.UI.form(
  9974. "思維導圖",
  9975. _box, { //"/jsmind/example/demo.html"
  9976. "id": "minds" + cid + stage + task + tool,
  9977. "style": {
  9978. "width": "90%",
  9979. "height": "90%",
  9980. "overflow": 'hidden'
  9981. },
  9982. "onresize": function () { }
  9983. }, {
  9984. closecallback: function () { }
  9985. }, {
  9986. "style": {
  9987. "height": "36px"
  9988. }
  9989. }).form; //創建窗體
  9990. _taskbar = {
  9991. "id": str + _formdiv.id,
  9992. "style": {
  9993. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9994. },
  9995. "name": "思維導圖",
  9996. "forms": _formdiv,
  9997. "click": function () {
  9998. U.MD.D.I.openApplication(str, obj, info);
  9999. }
  10000. }
  10001. break;
  10002. case "doc":
  10003. aTool = 6;
  10004. _iframe = $$("iframe", {
  10005. "frameborder": "no",
  10006. "border": "0",
  10007. "scrolling ": "no",
  10008. "style": {
  10009. "cssText": "border:0;width:100%;height:100%"
  10010. },
  10011. "src": "/Office/Word/WordEditArea.htm"
  10012. })
  10013. _box.appendChild(_iframe);
  10014. _box.appendChild(_jie);
  10015. _formdiv = new U.UF.UI.form(
  10016. "協同文檔",
  10017. _box, {
  10018. "id": "docs" + cid + stage + task + tool,
  10019. "style": {
  10020. "width": "90%",
  10021. "height": "90%",
  10022. "overflow": 'hidden'
  10023. },
  10024. "onresize": function () { }
  10025. }, {
  10026. closecallback: function () { }
  10027. }, {
  10028. "style": {
  10029. "height": "36px"
  10030. }
  10031. }).form; //創建窗體
  10032. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10033. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10034. })
  10035. _taskbar = {
  10036. "id": str + _formdiv.id,
  10037. "style": {
  10038. "backgroundImage": "url(/img/icon/doc.png)"
  10039. },
  10040. "name": "協同文檔",
  10041. "forms": _formdiv,
  10042. "click": function () {
  10043. U.MD.D.I.openApplication(str, obj, info);
  10044. }
  10045. }
  10046. break;
  10047. }
  10048. const script1 = document.createElement("script");
  10049. script1.type = "text/javascript";
  10050. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10051. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  10052. const script2 = document.createElement("script");
  10053. script2.type = "text/javascript";
  10054. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10055. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  10056. const script3 = document.createElement("script");
  10057. script3.type = "text/javascript";
  10058. script3.charset = "UTF-8";
  10059. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  10060. const script4 = document.createElement("script");
  10061. script4.type = "text/javascript";
  10062. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10063. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  10064. if (_iframe) {
  10065. if (str == 'doc') {
  10066. _iframe = _formdiv.querySelector('iframe')
  10067. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10068. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10069. _iframe.contentWindow.document.body.appendChild(script1);
  10070. _iframe.contentWindow.document.body.appendChild(script2);
  10071. // _iframe.contentWindow.document.body.appendChild(script3);
  10072. _iframe.contentWindow.document.body.appendChild(script4);
  10073. })
  10074. if (onloadListener) {
  10075. _iframe.contentDocument.location.reload()
  10076. } else {
  10077. _iframe.contentDocument.location.reload()
  10078. }
  10079. } else if (str == 'mind') {
  10080. _iframe = _formdiv.querySelector('iframe')
  10081. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10082. _iframe.contentWindow.document.body.appendChild(script1);
  10083. _iframe.contentWindow.document.body.appendChild(script2);
  10084. _iframe.contentWindow.document.body.appendChild(script4);
  10085. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10086. })
  10087. if (onloadListener) {
  10088. _iframe.contentDocument.location.reload()
  10089. } else {
  10090. _iframe.contentDocument.location.reload()
  10091. }
  10092. } else {
  10093. _iframe.onload = () => {
  10094. _iframe.contentWindow.document.body.appendChild(script1);
  10095. _iframe.contentWindow.document.body.appendChild(script2);
  10096. // _iframe.contentWindow.document.body.appendChild(script3);
  10097. _iframe.contentWindow.document.body.appendChild(script4);
  10098. };
  10099. }
  10100. _jie.onclick = async () => {
  10101. let text = ''
  10102. if (aTool == 6) {
  10103. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10104. } else if (aTool == 3) {
  10105. text = await U.MD.D.I.getEditorContent(_iframe);
  10106. }
  10107. _loading.style.display = 'flex'
  10108. console.log(_loading);
  10109. var _ajs = _iframe.contentWindow.document.createElement("script");
  10110. _ajs.type = "text/javascript";
  10111. _ajs.innerHTML =
  10112. // 'console.log(' + _loading + ');\n' +
  10113. 'var _js = document.createElement("script");\n' +
  10114. '_js.type="text/javascript";\n' +
  10115. '_js.charset="UTF-8";\n' +
  10116. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  10117. "_js.onload = function(){\n" +
  10118. ' var a = document.getElementsByTagName("img")\n' +
  10119. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10120. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10121. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10122. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10123. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  10124. "beforeUpload_shishi(file," +
  10125. "'" +
  10126. _userid +
  10127. "'" +
  10128. ", " +
  10129. "'" +
  10130. _cid +
  10131. "'" +
  10132. ", " +
  10133. "'" +
  10134. _stage +
  10135. "'" +
  10136. ", " +
  10137. "'" +
  10138. _task +
  10139. "'" +
  10140. ", " +
  10141. "'" +
  10142. _tool +
  10143. "'" +
  10144. ", " +
  10145. "'" +
  10146. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10147. "'" +
  10148. ", " +
  10149. "'" +
  10150. aTool +
  10151. "'" +
  10152. ", " +
  10153. "`" +
  10154. text +
  10155. "`" +
  10156. ")\n" +
  10157. " });\n" +
  10158. "}\n" +
  10159. "document.head.appendChild(_js);\n";
  10160. _iframe.contentWindow.document.head.appendChild(_ajs);
  10161. }
  10162. }
  10163. //U.MD.D.I.openClick(str);
  10164. //如果有任務欄信息
  10165. // if (_taskbar) {
  10166. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10167. // }
  10168. }
  10169. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10170. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10171. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10172. _userinfo = US.userInfo, //登錄用戶信息
  10173. _userid = US.userInfo.userid //登錄用戶id
  10174. let _iframe;
  10175. let _cid = cid,
  10176. _stage = stage,
  10177. _task = task,
  10178. _tool = tool;
  10179. var _jie = $$("div", {
  10180. "style": {
  10181. "position": "absolute",
  10182. "bottom": "50px",
  10183. "right": "50px",
  10184. "zIndex": "9999",
  10185. "backgroundColor": "#2268bc",
  10186. "color": "#fff",
  10187. "padding": "12px 20px",
  10188. "cursor": "pointer",
  10189. "borderRadius": "4px",
  10190. },
  10191. "innerHTML": "確認並提交"
  10192. })
  10193. let aTool = ''
  10194. let _loading = document.createElement('div')
  10195. _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;"
  10196. // _loading.id = "";
  10197. let _lchild = document.createElement('div')
  10198. let _limg = document.createElement('img')
  10199. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10200. _limg.style = "width: 26px;margin-right: 10px;"
  10201. _lchild.appendChild(_limg)
  10202. let _lspan = document.createElement('span')
  10203. _lspan.innerHTML = "上傳中..."
  10204. _lchild.appendChild(_lspan)
  10205. _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%);"
  10206. _loading.appendChild(_lchild)
  10207. var _box = $$('div', {
  10208. "style": {
  10209. "position": "relative",
  10210. "width": "100%",
  10211. "height": "100%",
  10212. },
  10213. })
  10214. _box.appendChild(_loading)
  10215. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10216. switch (str) {
  10217. case "whiteboard":
  10218. aTool = 1;
  10219. _iframe = $$("iframe", {
  10220. "frameborder": "no",
  10221. "border": "0",
  10222. "scrolling ": "no",
  10223. "style": {
  10224. "cssText": "border:0;width:100%;height:100%"
  10225. },
  10226. "src": "https://iwb.cocorobo.hk/"
  10227. })
  10228. _box.appendChild(_iframe);
  10229. _box.appendChild(_jie);
  10230. _formdiv = new U.UF.UI.form(
  10231. "電子白闆",
  10232. _box, {
  10233. "id": "whiteboards" + cid + stage + task + tool,
  10234. "style": {
  10235. "width": "90%",
  10236. "height": "90%",
  10237. "overflow": 'hidden'
  10238. },
  10239. "onresize": function () { }
  10240. }, {
  10241. closecallback: function () { }
  10242. }, {
  10243. "style": {
  10244. "height": "36px"
  10245. }
  10246. }).form; //創建窗體
  10247. _taskbar = {
  10248. "id": str + _formdiv.id,
  10249. "style": {
  10250. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10251. },
  10252. "name": "電子白闆",
  10253. "forms": _formdiv,
  10254. "click": function () {
  10255. U.MD.D.I.openApplication(str, obj, info);
  10256. }
  10257. }
  10258. break;
  10259. case "mind":
  10260. aTool = 3;
  10261. _iframe = $$("iframe", {
  10262. "frameborder": "no",
  10263. "border": "0",
  10264. "scrolling ": "no",
  10265. "style": {
  10266. "cssText": "border:0;width:100%;height:100%"
  10267. },
  10268. "src": "/kityminder-editor/dist/index.html"
  10269. });
  10270. _box.appendChild(_iframe);
  10271. _box.appendChild(_jie);
  10272. _formdiv = new U.UF.UI.form(
  10273. "思維導圖",
  10274. _box, { //"/jsmind/example/demo.html"
  10275. "id": "minds" + cid + stage + task + tool,
  10276. "style": {
  10277. "width": "90%",
  10278. "height": "90%",
  10279. "overflow": 'hidden'
  10280. },
  10281. "onresize": function () { }
  10282. }, {
  10283. closecallback: function () { }
  10284. }, {
  10285. "style": {
  10286. "height": "36px"
  10287. }
  10288. }).form; //創建窗體
  10289. _taskbar = {
  10290. "id": str + _formdiv.id,
  10291. "style": {
  10292. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10293. },
  10294. "name": "思維導圖",
  10295. "forms": _formdiv,
  10296. "click": function () {
  10297. U.MD.D.I.openApplication(str, obj, info);
  10298. }
  10299. }
  10300. break;
  10301. case "doc":
  10302. aTool = 6;
  10303. _iframe = $$("iframe", {
  10304. "frameborder": "no",
  10305. "border": "0",
  10306. "scrolling ": "no",
  10307. "style": {
  10308. "cssText": "border:0;width:100%;height:100%"
  10309. },
  10310. "src": "/Office/Word/WordEditArea.htm"
  10311. })
  10312. _box.appendChild(_iframe);
  10313. _box.appendChild(_jie);
  10314. _formdiv = new U.UF.UI.form(
  10315. "協同文檔",
  10316. _box, {
  10317. "id": "docs" + cid + stage + task + tool,
  10318. "style": {
  10319. "width": "90%",
  10320. "height": "90%",
  10321. "overflow": 'hidden'
  10322. },
  10323. "onresize": function () { }
  10324. }, {
  10325. closecallback: function () { }
  10326. }, {
  10327. "style": {
  10328. "height": "36px"
  10329. }
  10330. }).form; //創建窗體
  10331. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10332. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10333. })
  10334. _taskbar = {
  10335. "id": str + _formdiv.id,
  10336. "style": {
  10337. "backgroundImage": "url(/img/icon/doc.png)"
  10338. },
  10339. "name": "協同文檔",
  10340. "forms": _formdiv,
  10341. "click": function () {
  10342. U.MD.D.I.openApplication(str, obj, info);
  10343. }
  10344. }
  10345. break;
  10346. }
  10347. const script1 = document.createElement("script");
  10348. script1.type = "text/javascript";
  10349. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10350. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  10351. const script2 = document.createElement("script");
  10352. script2.type = "text/javascript";
  10353. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10354. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  10355. const script3 = document.createElement("script");
  10356. script3.type = "text/javascript";
  10357. script3.charset = "UTF-8";
  10358. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  10359. const script4 = document.createElement("script");
  10360. script4.type = "text/javascript";
  10361. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10362. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  10363. if (_iframe) {
  10364. if (str == 'doc') {
  10365. _iframe = _formdiv.querySelector('iframe')
  10366. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10367. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10368. _iframe.contentWindow.document.body.appendChild(script1);
  10369. _iframe.contentWindow.document.body.appendChild(script2);
  10370. // _iframe.contentWindow.document.body.appendChild(script3);
  10371. _iframe.contentWindow.document.body.appendChild(script4);
  10372. })
  10373. if (onloadListener) {
  10374. _iframe.contentDocument.location.reload()
  10375. } else {
  10376. _iframe.contentDocument.location.reload()
  10377. }
  10378. } else if (str == 'mind') {
  10379. _iframe = _formdiv.querySelector('iframe')
  10380. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10381. _iframe.contentWindow.document.body.appendChild(script1);
  10382. _iframe.contentWindow.document.body.appendChild(script2);
  10383. _iframe.contentWindow.document.body.appendChild(script4);
  10384. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10385. })
  10386. if (onloadListener) {
  10387. _iframe.contentDocument.location.reload()
  10388. } else {
  10389. _iframe.contentDocument.location.reload()
  10390. }
  10391. } else {
  10392. _iframe.onload = () => {
  10393. _iframe.contentWindow.document.body.appendChild(script1);
  10394. _iframe.contentWindow.document.body.appendChild(script2);
  10395. // _iframe.contentWindow.document.body.appendChild(script3);
  10396. _iframe.contentWindow.document.body.appendChild(script4);
  10397. };
  10398. }
  10399. _jie.onclick = async () => {
  10400. let text = ''
  10401. if (aTool == 6) {
  10402. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10403. } else if (aTool == 3) {
  10404. text = await U.MD.D.I.getEditorContent(_iframe);
  10405. }
  10406. _loading.style.display = 'flex'
  10407. console.log(_loading);
  10408. var _ajs = _iframe.contentWindow.document.createElement("script");
  10409. _ajs.type = "text/javascript";
  10410. _ajs.innerHTML =
  10411. // 'console.log(' + _loading + ');\n' +
  10412. 'var _js = document.createElement("script");\n' +
  10413. '_js.type="text/javascript";\n' +
  10414. '_js.charset="UTF-8";\n' +
  10415. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  10416. "_js.onload = function(){\n" +
  10417. ' var a = document.getElementsByTagName("img")\n' +
  10418. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10419. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10420. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10421. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10422. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  10423. "beforeUpload_shishi(file," +
  10424. "'" +
  10425. _userid +
  10426. "'" +
  10427. ", " +
  10428. "'" +
  10429. _cid +
  10430. "'" +
  10431. ", " +
  10432. "'" +
  10433. _stage +
  10434. "'" +
  10435. ", " +
  10436. "'" +
  10437. _task +
  10438. "'" +
  10439. ", " +
  10440. "'" +
  10441. _tool +
  10442. "'" +
  10443. ", " +
  10444. "'" +
  10445. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10446. "'" +
  10447. ", " +
  10448. "'" +
  10449. aTool +
  10450. "'" +
  10451. ", " +
  10452. "`" +
  10453. text +
  10454. "`" +
  10455. ")\n" +
  10456. " });\n" +
  10457. "}\n" +
  10458. "document.head.appendChild(_js);\n";
  10459. _iframe.contentWindow.document.head.appendChild(_ajs);
  10460. }
  10461. }
  10462. //U.MD.D.I.openClick(str);
  10463. //如果有任務欄信息
  10464. // if (_taskbar) {
  10465. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10466. // }
  10467. }
  10468. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10469. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10470. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10471. _userinfo = US.userInfo, //登錄用戶信息
  10472. _userid = US.userInfo.userid //登錄用戶id
  10473. let _iframe;
  10474. let _cid = cid,
  10475. _stage = stage,
  10476. _task = task,
  10477. _tool = tool;
  10478. var _jie = $$("div", {
  10479. "style": {
  10480. "position": "absolute",
  10481. "bottom": "50px",
  10482. "right": "50px",
  10483. "zIndex": "9999",
  10484. "backgroundColor": "#2268bc",
  10485. "color": "#fff",
  10486. "padding": "12px 20px",
  10487. "cursor": "pointer",
  10488. "borderRadius": "4px",
  10489. },
  10490. "innerHTML": "上傳模闆"
  10491. })
  10492. let aTool = ''
  10493. let _loading = document.createElement('div')
  10494. _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;"
  10495. // _loading.id = "";
  10496. let _lchild = document.createElement('div')
  10497. let _limg = document.createElement('img')
  10498. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10499. _limg.style = "width: 26px;margin-right: 10px;"
  10500. _lchild.appendChild(_limg)
  10501. let _lspan = document.createElement('span')
  10502. _lspan.innerHTML = "上傳中..."
  10503. _lchild.appendChild(_lspan)
  10504. _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%);"
  10505. _loading.appendChild(_lchild)
  10506. var _box = $$('div', {
  10507. "style": {
  10508. "position": "relative",
  10509. "width": "100%",
  10510. "height": "100%",
  10511. },
  10512. })
  10513. _box.appendChild(_loading)
  10514. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10515. switch (str) {
  10516. case "whiteboard":
  10517. aTool = 1;
  10518. _iframe = $$("iframe", {
  10519. "frameborder": "no",
  10520. "border": "0",
  10521. "scrolling ": "no",
  10522. "style": {
  10523. "cssText": "border:0;width:100%;height:100%"
  10524. },
  10525. "src": "https://iwb.cocorobo.hk/"
  10526. })
  10527. _box.appendChild(_iframe);
  10528. _box.appendChild(_jie);
  10529. _formdiv = new U.UF.UI.form(
  10530. "電子白闆",
  10531. _box, {
  10532. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10533. "style": {
  10534. "width": "90%",
  10535. "height": "90%",
  10536. "overflow": 'hidden'
  10537. },
  10538. "onresize": function () { }
  10539. }, {
  10540. closecallback: function () { }
  10541. }, {
  10542. "style": {
  10543. "height": "36px"
  10544. }
  10545. }).form; //創建窗體
  10546. _taskbar = {
  10547. "id": str + _formdiv.id,
  10548. "style": {
  10549. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10550. },
  10551. "name": "電子白闆",
  10552. "forms": _formdiv,
  10553. "click": function () {
  10554. U.MD.D.I.openApplication(str, obj, info);
  10555. }
  10556. }
  10557. break;
  10558. case "mind":
  10559. aTool = 3;
  10560. _iframe = $$("iframe", {
  10561. "frameborder": "no",
  10562. "border": "0",
  10563. "scrolling ": "no",
  10564. "style": {
  10565. "cssText": "border:0;width:100%;height:100%"
  10566. },
  10567. "src": "/kityminder-editor/dist/index.html"
  10568. });
  10569. _box.appendChild(_iframe);
  10570. _box.appendChild(_jie);
  10571. _formdiv = new U.UF.UI.form(
  10572. "思維導圖",
  10573. _box, { //"/jsmind/example/demo.html"
  10574. "id": "minds_Yu" + cid + stage + task + tool,
  10575. "style": {
  10576. "width": "90%",
  10577. "height": "90%",
  10578. "overflow": 'hidden'
  10579. },
  10580. "onresize": function () { }
  10581. }, {
  10582. closecallback: function () { }
  10583. }, {
  10584. "style": {
  10585. "height": "36px"
  10586. }
  10587. }).form; //創建窗體
  10588. _taskbar = {
  10589. "id": str + _formdiv.id,
  10590. "style": {
  10591. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10592. },
  10593. "name": "思維導圖",
  10594. "forms": _formdiv,
  10595. "click": function () {
  10596. U.MD.D.I.openApplication(str, obj, info);
  10597. }
  10598. }
  10599. break;
  10600. case "doc":
  10601. aTool = 6;
  10602. _iframe = $$("iframe", {
  10603. "frameborder": "no",
  10604. "border": "0",
  10605. "scrolling ": "no",
  10606. "style": {
  10607. "cssText": "border:0;width:100%;height:100%"
  10608. },
  10609. "src": "/Office/Word/WordEditArea.htm"
  10610. })
  10611. _box.appendChild(_iframe);
  10612. _box.appendChild(_jie);
  10613. _formdiv = new U.UF.UI.form(
  10614. "協同文檔",
  10615. _box, {
  10616. "id": "docs_Yu" + cid + stage + task + tool,
  10617. "style": {
  10618. "width": "90%",
  10619. "height": "90%",
  10620. "overflow": 'hidden'
  10621. },
  10622. "onresize": function () { }
  10623. }, {
  10624. closecallback: function () { }
  10625. }, {
  10626. "style": {
  10627. "height": "36px"
  10628. }
  10629. }).form; //創建窗體
  10630. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10631. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10632. })
  10633. _taskbar = {
  10634. "id": str + _formdiv.id,
  10635. "style": {
  10636. "backgroundImage": "url(/img/icon/doc.png)"
  10637. },
  10638. "name": "協同文檔",
  10639. "forms": _formdiv,
  10640. "click": function () {
  10641. U.MD.D.I.openApplication(str, obj, info);
  10642. }
  10643. }
  10644. break;
  10645. case "CocoPi":
  10646. aTool = 57;
  10647. _iframe = $$("iframe", {
  10648. "allowpaymentrequest": "allowpaymentrequest",
  10649. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10650. "webkitallowfullscreen": "",
  10651. "mozallowfullscreen": "",
  10652. "frameborder": "no",
  10653. "border": "0",
  10654. "scrolling ": "no",
  10655. "style": {
  10656. "cssText": "border:0;width:100%;height:100%"
  10657. },
  10658. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10659. })
  10660. _box.appendChild(_iframe);
  10661. _box.appendChild(_jie);
  10662. _formdiv = new U.UF.UI.form(
  10663. "CocoPi",
  10664. _box, {
  10665. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10666. "style": {
  10667. "width": "90%",
  10668. "height": "90%",
  10669. "overflow": 'hidden'
  10670. },
  10671. "onresize": function () { }
  10672. }, {
  10673. closecallback: function () { }
  10674. }, {
  10675. "style": {
  10676. "height": "36px"
  10677. }
  10678. }).form; //創建窗體
  10679. _taskbar = {
  10680. "id": str + _formdiv.id,
  10681. "style": {
  10682. "backgroundImage": "url(/img/icon/cocopi.png)"
  10683. },
  10684. "name": "CocoPi",
  10685. "forms": _formdiv,
  10686. "click": function () {
  10687. U.MD.D.I.openApplication(str, obj, info);
  10688. }
  10689. }
  10690. break;
  10691. }
  10692. if (_iframe) {
  10693. if (str == 'doc') {
  10694. _iframe = _formdiv.querySelector('iframe')
  10695. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10696. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10697. })
  10698. if (onloadListener) {
  10699. _iframe.contentDocument.location.reload()
  10700. } else {
  10701. _iframe.contentDocument.location.reload()
  10702. }
  10703. } else if (str == 'mind') {
  10704. _iframe = _formdiv.querySelector('iframe')
  10705. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10706. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10707. })
  10708. if (onloadListener) {
  10709. _iframe.contentDocument.location.reload()
  10710. } else {
  10711. _iframe.contentDocument.location.reload()
  10712. }
  10713. } else if (str == 'whiteboard') {
  10714. _iframe = _formdiv.querySelector('iframe')
  10715. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10716. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10717. })
  10718. // if (onloadListener) {
  10719. // try {
  10720. // _iframe.src += "?cocorobo="+new Date().getTime()
  10721. // _iframe.contentWindow.document.location.reload()
  10722. // } catch (error) {
  10723. // }
  10724. // } else {
  10725. // _iframe.contentDocument.location.reload()
  10726. // }
  10727. } else if (str == 'CocoPi') {
  10728. _iframe = _formdiv.querySelector('iframe')
  10729. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10730. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10731. })
  10732. if (onloadListener) {
  10733. _iframe.contentDocument.location.reload()
  10734. } else {
  10735. _iframe.contentDocument.location.reload()
  10736. }
  10737. } else {
  10738. _iframe.onload = () => { };
  10739. }
  10740. _jie.onclick = async () => {
  10741. let text = ''
  10742. let type = '2'
  10743. if (aTool == 1) {
  10744. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10745. type = '3'
  10746. } else if (aTool == 6) {
  10747. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10748. type = '1'
  10749. } else if (aTool == 3) {
  10750. text = await U.MD.D.I.getEditorContent(_iframe);
  10751. type = '2'
  10752. } else if (aTool == 57) {
  10753. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10754. type = '4'
  10755. }
  10756. _loading.style.display = 'flex'
  10757. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10758. }
  10759. }
  10760. //U.MD.D.I.openClick(str);
  10761. //如果有任務欄信息
  10762. // if (_taskbar) {
  10763. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  10764. // }
  10765. }
  10766. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10767. var xmlhttp;
  10768. var Mac, Sn, DeviceId
  10769. if (window.XMLHttpRequest) {
  10770. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10771. xmlhttp = new XMLHttpRequest();
  10772. }
  10773. else {
  10774. // IE6, IE5 瀏覽器執行代碼
  10775. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10776. }
  10777. xmlhttp.onreadystatechange = function () {
  10778. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10779. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10780. // resolve(res.value[0][0].text);
  10781. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10782. }
  10783. }
  10784. }
  10785. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10786. xmlhttp.send();
  10787. }
  10788. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10789. var xmlhttp;
  10790. var Mac, Sn, DeviceId
  10791. if (window.XMLHttpRequest) {
  10792. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10793. xmlhttp = new XMLHttpRequest();
  10794. }
  10795. else {
  10796. // IE6, IE5 瀏覽器執行代碼
  10797. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10798. }
  10799. xmlhttp.onreadystatechange = function () {
  10800. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10801. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10802. // resolve(res.value[0][0].text);
  10803. if (type == '2') {
  10804. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10805. } else if (type == '3') {
  10806. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10807. } else if (type == '4') {
  10808. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10809. }
  10810. } else {
  10811. if (type == '2') {
  10812. iframe.contentWindow.editor.minder.importData('json', '')
  10813. } else if (type == '3') {
  10814. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10815. } else if (type == '4') {
  10816. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10817. }
  10818. }
  10819. }
  10820. }
  10821. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10822. xmlhttp.send();
  10823. }
  10824. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10825. var xmlhttp;
  10826. var Mac, Sn, DeviceId
  10827. if (window.XMLHttpRequest) {
  10828. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  10829. xmlhttp = new XMLHttpRequest();
  10830. }
  10831. else {
  10832. // IE6, IE5 瀏覽器執行代碼
  10833. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10834. }
  10835. xmlhttp.onreadystatechange = function () {
  10836. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10837. if (xmlhttp.response) {
  10838. // resolve(res.value[0][0].text);
  10839. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10840. // $(fileInput).val('');
  10841. // });
  10842. span.innerHTML = '上傳成功'
  10843. setTimeout(() => {
  10844. loading.style.display = 'none'
  10845. }, 1000);
  10846. }
  10847. }
  10848. }
  10849. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10850. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10851. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10852. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10853. // 設置請求頭,錶示請求體的編碼格式
  10854. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10855. // 設置請求體,使用url-encoded格式的數據
  10856. }
  10857. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10858. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10859. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10860. _userinfo = US.userInfo, //登錄用戶信息
  10861. _userid = US.userInfo.userid //登錄用戶id
  10862. let _iframe;
  10863. let _cid = cid,
  10864. _stage = stage,
  10865. _task = task,
  10866. _tool = tool;
  10867. var _jie = $$("div", {
  10868. "style": {
  10869. "position": "absolute",
  10870. "bottom": "50px",
  10871. "right": "50px",
  10872. "zIndex": "9999",
  10873. "backgroundColor": "#2268bc",
  10874. "color": "#fff",
  10875. "padding": "12px 20px",
  10876. "cursor": "pointer",
  10877. "borderRadius": "4px",
  10878. },
  10879. "innerHTML": "提交作業"
  10880. })
  10881. let aTool = ''
  10882. let _loading = document.createElement('div')
  10883. _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;"
  10884. // _loading.id = "";
  10885. let _lchild = document.createElement('div')
  10886. let _limg = document.createElement('img')
  10887. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10888. _limg.style = "width: 26px;margin-right: 10px;"
  10889. _lchild.appendChild(_limg)
  10890. let _lspan = document.createElement('span')
  10891. _lspan.innerHTML = "上傳中..."
  10892. _lchild.appendChild(_lspan)
  10893. _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%);"
  10894. _loading.appendChild(_lchild)
  10895. var _box = $$('div', {
  10896. "style": {
  10897. "position": "relative",
  10898. "width": "100%",
  10899. "height": "100%",
  10900. },
  10901. })
  10902. _box.appendChild(_loading)
  10903. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10904. switch (str) {
  10905. case "CocoPi":
  10906. aTool = 57;
  10907. _iframe = $$("iframe", {
  10908. "allowpaymentrequest": "allowpaymentrequest",
  10909. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10910. "webkitallowfullscreen": "",
  10911. "mozallowfullscreen": "",
  10912. "frameborder": "no",
  10913. "border": "0",
  10914. "scrolling ": "no",
  10915. "style": {
  10916. "cssText": "border:0;width:100%;height:100%"
  10917. },
  10918. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  10919. })
  10920. _box.appendChild(_iframe);
  10921. _box.appendChild(_jie);
  10922. _formdiv = new U.UF.UI.form(
  10923. "CocoPi",
  10924. _box, {
  10925. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10926. "style": {
  10927. "width": "90%",
  10928. "height": "90%",
  10929. "overflow": 'hidden'
  10930. },
  10931. "onresize": function () { }
  10932. }, {
  10933. closecallback: function () { }
  10934. }, {
  10935. "style": {
  10936. "height": "36px"
  10937. }
  10938. }).form; //創建窗體
  10939. _taskbar = {
  10940. "id": str + _formdiv.id,
  10941. "style": {
  10942. "backgroundImage": "url(/img/icon/cocopi.png)"
  10943. },
  10944. "name": "CocoPi",
  10945. "forms": _formdiv,
  10946. "click": function () {
  10947. U.MD.D.I.openApplication(str, obj, info);
  10948. }
  10949. }
  10950. break;
  10951. }
  10952. if (_iframe) {
  10953. if (str == 'CocoPi') {
  10954. _iframe = _formdiv.querySelector('iframe')
  10955. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10956. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10957. })
  10958. if (onloadListener) {
  10959. _iframe.contentDocument.location.reload()
  10960. } else {
  10961. _iframe.contentDocument.location.reload()
  10962. }
  10963. }
  10964. _jie.onclick = async () => {
  10965. let text = ''
  10966. if (aTool == 57) {
  10967. text = _iframe.contentWindow.getLoadXmlStr()
  10968. }
  10969. _loading.style.display = 'flex'
  10970. console.log(_loading);
  10971. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10972. _loading.style.display = 'none'
  10973. let _div = document.createElement('div')
  10974. _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;"
  10975. let _inner = document.createElement('div')
  10976. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10977. _inner.innerHTML = "上傳成功"
  10978. _div.appendChild(_inner)
  10979. _iframe.contentWindow.window.document.body.appendChild(_div)
  10980. _div.onclick = () => {
  10981. _iframe.contentWindow.window.document.body.removeChild(_div)
  10982. }
  10983. setTimeout(() => {
  10984. _iframe.contentWindow.window.document.body.removeChild(_div)
  10985. }, 1000);
  10986. }, [], { "type": "POST", "withCredentials": true });
  10987. }
  10988. }
  10989. }
  10990. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10991. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  10992. _formdiv, //創建任務欄時同時彈出的窗體元素。
  10993. _userid = student.userid, //登錄用戶id
  10994. _username = student.student //用戶名字
  10995. let _iframe;
  10996. let _cid = cid,
  10997. _stage = stage,
  10998. _task = task,
  10999. _tool = tool;
  11000. var _jie = $$("div", {
  11001. "style": {
  11002. "position": "absolute",
  11003. "bottom": "50px",
  11004. "right": "50px",
  11005. "zIndex": "9999",
  11006. "backgroundColor": "#2268bc",
  11007. "color": "#fff",
  11008. "padding": "12px 20px",
  11009. "cursor": "pointer",
  11010. "borderRadius": "4px",
  11011. },
  11012. "innerHTML": "提交作業"
  11013. })
  11014. let aTool = ''
  11015. let _loading = document.createElement('div')
  11016. _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;"
  11017. // _loading.id = "";
  11018. let _lchild = document.createElement('div')
  11019. let _limg = document.createElement('img')
  11020. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11021. _limg.style = "width: 26px;margin-right: 10px;"
  11022. _lchild.appendChild(_limg)
  11023. let _lspan = document.createElement('span')
  11024. _lspan.innerHTML = "上傳中..."
  11025. _lchild.appendChild(_lspan)
  11026. _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%);"
  11027. _loading.appendChild(_lchild)
  11028. var _box = $$('div', {
  11029. "style": {
  11030. "position": "relative",
  11031. "width": "100%",
  11032. "height": "100%",
  11033. },
  11034. })
  11035. _box.appendChild(_loading)
  11036. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11037. switch (str) {
  11038. case "CocoPi":
  11039. aTool = 57;
  11040. _iframe = $$("iframe", {
  11041. "allowpaymentrequest": "allowpaymentrequest",
  11042. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11043. "webkitallowfullscreen": "",
  11044. "mozallowfullscreen": "",
  11045. "frameborder": "no",
  11046. "border": "0",
  11047. "scrolling ": "no",
  11048. "style": {
  11049. "cssText": "border:0;width:100%;height:100%"
  11050. },
  11051. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  11052. })
  11053. _box.appendChild(_iframe);
  11054. _box.appendChild(_jie);
  11055. _formdiv = new U.UF.UI.form(
  11056. "CocoPi-" + _username,
  11057. _box, {
  11058. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11059. "style": {
  11060. "width": "90%",
  11061. "height": "90%",
  11062. "overflow": 'hidden'
  11063. },
  11064. "onresize": function () { }
  11065. }, {
  11066. closecallback: function () { }
  11067. }, {
  11068. "style": {
  11069. "height": "36px"
  11070. }
  11071. }).form; //創建窗體
  11072. _taskbar = {
  11073. "id": str + _formdiv.id,
  11074. "style": {
  11075. "backgroundImage": "url(/img/icon/cocopi.png)"
  11076. },
  11077. "name": "CocoPi",
  11078. "forms": _formdiv,
  11079. "click": function () {
  11080. U.MD.D.I.openApplication(str, obj, info);
  11081. }
  11082. }
  11083. break;
  11084. }
  11085. if (_iframe) {
  11086. if (str == 'CocoPi') {
  11087. _iframe = _formdiv.querySelector('iframe')
  11088. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11089. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11090. })
  11091. if (onloadListener) {
  11092. _iframe.contentDocument.location.reload()
  11093. } else {
  11094. _iframe.contentDocument.location.reload()
  11095. }
  11096. }
  11097. _jie.onclick = async () => {
  11098. let text = ''
  11099. if (aTool == 57) {
  11100. text = _iframe.contentWindow.getLoadXmlStr()
  11101. }
  11102. _loading.style.display = 'flex'
  11103. console.log(_loading);
  11104. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11105. _loading.style.display = 'none'
  11106. let _div = document.createElement('div')
  11107. _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;"
  11108. let _inner = document.createElement('div')
  11109. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11110. _inner.innerHTML = "上傳成功"
  11111. _div.appendChild(_inner)
  11112. _iframe.contentWindow.window.document.body.appendChild(_div)
  11113. _div.onclick = () => {
  11114. _iframe.contentWindow.window.document.body.removeChild(_div)
  11115. }
  11116. setTimeout(() => {
  11117. _iframe.contentWindow.window.document.body.removeChild(_div)
  11118. }, 1000);
  11119. }, [], { "type": "POST", "withCredentials": true });
  11120. }
  11121. }
  11122. }
  11123. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11124. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11125. if (res.value[0].length > 0) {
  11126. if (atool == 57) {
  11127. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11128. }
  11129. } else {
  11130. if (atool == 57) {
  11131. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11132. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11133. }
  11134. }
  11135. }, [], { "type": "POST", "withCredentials": true });
  11136. }
  11137. U.MD.D.addOp = function(text,type,time){
  11138. var userInfo = US.userInfo;
  11139. if(Object.keys(userInfo).length !== 0){
  11140. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11141. }, [], { "type": "POST", "withCredentials": true });
  11142. }
  11143. }