HomeView.vue 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013
  1. <script setup>
  2. import {
  3. ref,
  4. reactive,
  5. onMounted,
  6. watch,
  7. nextTick,
  8. onBeforeUnmount,
  9. } from "vue";
  10. import { useRoute } from "vue-router";
  11. // VR
  12. import "aframe";
  13. // i18n
  14. import { useI18n } from "vue-i18n";
  15. // Axios
  16. import axios from "axios";
  17. // Moment
  18. import moment from "moment";
  19. // Animate
  20. import "animate.css";
  21. // Swiper
  22. import { Swiper, SwiperSlide } from "swiper/vue";
  23. import { Navigation, Autoplay } from "swiper/modules";
  24. import "swiper/css";
  25. import "swiper/css/navigation";
  26. // Recorder
  27. import Recorder from "recorder-core";
  28. import "recorder-core/src/engine/mp3";
  29. import "recorder-core/src/engine/mp3-engine";
  30. // QR Code
  31. import { QrcodeStream, QrcodeDropZone, QrcodeCapture } from "vue-qrcode-reader";
  32. // Components
  33. import Navbar from "../components/Navbar.vue";
  34. import TicketPurchase from "../components/TicketPurchase.vue";
  35. // 測試
  36. import videojs from "video.js";
  37. import "video.js/dist/video-js.css";
  38. // import 'videojs-vr/dist/videojs-vr.css';
  39. import "videojs-vr/dist/videojs-vr.css";
  40. import "videojs-vr"; // 確保正確引入 VR 插件
  41. let vrVideo = ref(null);
  42. let player;
  43. onMounted(() => {
  44. if (vrVideo.value) {
  45. // console.log(player.plugins_);
  46. player = videojs(vrVideo.value, {
  47. controls: true,
  48. autoplay: true,
  49. loop: true,
  50. // plugins: {
  51. // vr: {
  52. // projection: '360', // 確保設置為 360
  53. // debug: true // 打開 debug 以便於檢查問題
  54. // }
  55. // }
  56. });
  57. console.log(player.plugins_);
  58. if (!player.mediainfo) {
  59. player.mediainfo = {};
  60. }
  61. if (!player.mediainfo.projection) {
  62. player.mediainfo.projection = "360";
  63. }
  64. // player.vr({ projection: "AUTO" });
  65. // 檢查插件是否成功初始化
  66. player.ready(() => {
  67. console.log("Video.js is ready with VR plugin");
  68. });
  69. }
  70. });
  71. onBeforeUnmount(() => {
  72. if (player) {
  73. player.dispose();
  74. }
  75. });
  76. const { t, locale } = useI18n();
  77. const route = useRoute();
  78. const routeParam = ref(null);
  79. let qrCodeDialog = ref(false);
  80. let qrCodeLoading = ref(true);
  81. let location = ref(""); // 當前位置
  82. // QR Code 掃描
  83. function onDetect(detectedCodes) {
  84. console.log("detectedCodes", detectedCodes);
  85. const url = new URL(detectedCodes[0].rawValue);
  86. location.value = url.searchParams.get("location");
  87. let val;
  88. let lang = getLang();
  89. if (lang === "en") {
  90. switch (location.value) {
  91. case "B1 鼎泰豐":
  92. val = "b1 Din Tai Fung";
  93. break;
  94. case "B1 中環":
  95. val = "b1 Centre";
  96. break;
  97. case "B1 2號電梯":
  98. val = "b1 Elevator No.2";
  99. break;
  100. case "B1 4號電梯":
  101. val = "b1 Elevator No.4";
  102. break;
  103. case "B1 3號電梯":
  104. val = "b1 Elevator No.3";
  105. break;
  106. case "1F 信義環":
  107. val = "1f South Xinyi";
  108. break;
  109. case "1F 3號電梯":
  110. val = "1f Elevator No.3";
  111. break;
  112. case "2F 3號電梯":
  113. val = "2f Elevator No.3";
  114. break;
  115. case "88F 觀景台":
  116. val = "88f Observatory";
  117. break;
  118. case "89F 觀景台":
  119. val = "89f Observatory";
  120. break;
  121. default:
  122. break;
  123. }
  124. } else if (lang === "ch") {
  125. val = location.value;
  126. }
  127. if (location.value && location.value !== "") {
  128. qrCodeDialog.value = false;
  129. messages.value.push({
  130. label: "text",
  131. author: "ai",
  132. body: `${t("current_location")}:${val}`,
  133. });
  134. changeLocation(location.value); // 選擇導覽位置
  135. } else {
  136. qrCodeDialog.value = false;
  137. messages.value.push({
  138. label: "text",
  139. author: "ai",
  140. body: "讀取錯誤,請重新掃描。",
  141. });
  142. }
  143. }
  144. // 判斷 vue-qrcode-reader 是否加載完成
  145. function onInit(capabilities) {
  146. qrCodeLoading.value = false;
  147. }
  148. onMounted(() => {
  149. // 取得當前路由參數
  150. routeParam.value = route.path.replace("/", "");
  151. console.log("網址參數", routeParam.value);
  152. window.addEventListener("resize", handleResize);
  153. });
  154. const userMessage = ref("");
  155. let modules = [Navigation, Autoplay]; // Swiper
  156. // AI 客服回覆訊息
  157. let messages = ref([]);
  158. watch(messages.value, (val) => {
  159. console.log("messages", val);
  160. scrollToBottom();
  161. updateMenuHeight();
  162. });
  163. let ad = ref({}); // 彈跳視窗廣告
  164. let qaQuery = reactive([]);
  165. const chatArea = ref(null); // 對話框
  166. // 滾動到對話框底部
  167. const scrollToBottom = () => {
  168. setTimeout(() => {
  169. // chatArea.value.scrollTop = chatArea.value.scrollHeight;
  170. window.scrollTo({
  171. top: document.body.scrollHeight,
  172. behavior: "smooth", // 平滑滾動
  173. });
  174. }, 100);
  175. // let list = messages.value;
  176. // const item = list[list.length - 1];
  177. // if (item.label === "text") {
  178. // setTimeout(() => {
  179. // chatArea.value.scrollTop = chatArea.value.scrollHeight;
  180. // }, 100);
  181. // }
  182. };
  183. // 對話選項(按鈕)
  184. function setBtnValue(val) {
  185. console.log("value", val);
  186. userMessage.value = val;
  187. sendMessage("text");
  188. }
  189. // 傳送訊息 (如 type="text" 代表為純文字訊息,不需語音回覆)
  190. async function sendMessage(type = "") {
  191. if (userMessage.value === "") {
  192. return;
  193. }
  194. console.log("sendMessage", userMessage.value);
  195. qaQuery.push(userMessage.value);
  196. let url = "https://api.itri-101-5g.com/v1/qa/";
  197. try {
  198. // 使用者訊息
  199. messages.value.push({
  200. label: "text",
  201. body: userMessage.value,
  202. author: "user",
  203. });
  204. userMessage.value = "";
  205. // hideMenu.value = true;
  206. axios
  207. .post(
  208. url,
  209. new URLSearchParams({
  210. query: JSON.stringify(qaQuery), // 使用者問句
  211. language: selectLang.value, // 語系
  212. category: assignCategory.value, // 類別
  213. subtype: assignSubtype.value, // 詳細類別(非必填)
  214. from_loc: "", // 定位點
  215. to_loc: "", // 導覽點
  216. }),
  217. {
  218. headers: {
  219. "Content-Type": "application/x-www-form-urlencoded",
  220. },
  221. }
  222. )
  223. .then((response) => {
  224. // if (showAnchor.value) {
  225. // getVideo(response.data);
  226. // }
  227. // AI 客服回傳訊息
  228. messages.value.push({
  229. label: "text",
  230. author: "ai",
  231. body: response.data.response,
  232. });
  233. console.log("response", response);
  234. if (type !== "text") {
  235. handleTTS(response.data.response); // 取得語音回覆
  236. }
  237. if (response.data.data.length) {
  238. let info = {
  239. buttonList: [], // 按鈕
  240. ticketList: [], // 票券
  241. };
  242. let labelContent;
  243. response.data.data.map((item) => {
  244. if (item.type === "button") {
  245. console.log("按鈕");
  246. info.buttonList.push(item);
  247. labelContent = "ticket";
  248. } else if (item.type === "ticket") {
  249. console.log("票");
  250. info.ticketList.push(item);
  251. labelContent = "ticket";
  252. } else if (item.type === "brand") {
  253. console.log("品牌");
  254. info.ticketList.push(item);
  255. labelContent = "brand";
  256. } else if (
  257. item.type === "lost_property" ||
  258. item.type === "complain"
  259. ) {
  260. labelContent = "contact-form";
  261. }
  262. });
  263. console.log("info", info);
  264. console.log("labelContent", labelContent);
  265. setTimeout(() => {
  266. if (labelContent !== "contact-form") {
  267. messages.value.push({
  268. label: labelContent,
  269. author: "ai",
  270. body: info,
  271. });
  272. } else {
  273. messages.value.push({
  274. label: "contact-form",
  275. author: "ai",
  276. body: "",
  277. });
  278. }
  279. }, 10);
  280. }
  281. })
  282. .catch((error) => {
  283. console.error("Error:", error);
  284. });
  285. console.log("messages.value", messages.value);
  286. } catch (error) {
  287. console.log("error", error);
  288. }
  289. }
  290. // let isTTSVideo = ref(false); // API 是否回傳影片
  291. // let ttsVideo = ref(null); // 影片 dom
  292. // let ttsVideoSrc = ref(""); // 影片路徑
  293. // let videoPause = ref(false); // 暫停按鈕
  294. let hideMenu = ref(false); // 底部選單
  295. let showInput = ref(false); // 輸入框
  296. // 取得 mp4
  297. // async function getVideo(data) {
  298. // console.log("getVideo data", data);
  299. // // let url = `https://cmm.ai:9101/tts?message=${data.response}&type=101`;
  300. // let url = `https://cmm.ai:9001/tts?message=${data.response}&type=101`;
  301. // try {
  302. // const response = await axios.post(url);
  303. // console.log("response", response);
  304. // if (response.status === 200) {
  305. // video.value.pause();
  306. // videoPause.value = false;
  307. // // ttsVideoSrc.value = `https://cmm.ai:9101/${response.data.url}`;
  308. // // ttsVideoSrc.value = `https://cmm.ai:9001/${response.data.url}`;
  309. // ttsVideoSrc.value = response.data.url;
  310. // await ttsVideo.value.load();
  311. // await ttsVideo.value.play();
  312. // // AI 客服回傳訊息
  313. // // messages.value.splice(-1, 1);
  314. // messages.value.push({
  315. // type: data.type,
  316. // body: data.response,
  317. // author: data.author,
  318. // });
  319. // // isTTSVideo.value = true;
  320. // // 判斷影片是否結束
  321. // const videoPromise = new Promise((resolve, reject) => {
  322. // ttsVideo.value.onended = () => resolve(true);
  323. // });
  324. // const videoCompleted = await videoPromise; // 影片結束
  325. // if (videoCompleted) {
  326. // console.log("影片結束");
  327. // // isTTSVideo.value = false; // 切換為初始影片
  328. // hideAnchorPrologue.value = false; // 切換開場白影片
  329. // }
  330. // console.log("videoCompleted", videoCompleted);
  331. // }
  332. // } catch (error) {
  333. // console.log("error", error);
  334. // }
  335. // }
  336. // 影片暫停/播放
  337. // function handleVideo(isTTS) {
  338. // if (videoPause.value) {
  339. // if (isTTS) {
  340. // ttsVideo.value.play();
  341. // } else {
  342. // video.value.play();
  343. // }
  344. // videoPause.value = false;
  345. // } else {
  346. // if (isTTS) {
  347. // ttsVideo.value.pause();
  348. // } else {
  349. // video.value.pause();
  350. // }
  351. // videoPause.value = true;
  352. // }
  353. // }
  354. function getLang() {
  355. let lang = localStorage.getItem("lang");
  356. let langVal = "";
  357. switch (lang) {
  358. case "zh-tw":
  359. langVal = "ch";
  360. break;
  361. case "en-us":
  362. langVal = "en";
  363. break;
  364. default:
  365. break;
  366. }
  367. return langVal;
  368. }
  369. let showAd = ref(false);
  370. // 取得廣告
  371. async function setAd() {
  372. let lang = getLang();
  373. console.log("lang", lang);
  374. let url = `https://cmm.ai:9101/ad?language=${lang}`;
  375. try {
  376. const response = await axios.get(url);
  377. console.log("Ad response", response);
  378. ad.value = response.data.data.body;
  379. console.log("Ad", ad.value);
  380. } catch (error) {
  381. console.log("error", error);
  382. }
  383. }
  384. let video = ref(null);
  385. function videoPlay() {
  386. video.value.load();
  387. video.value.play();
  388. }
  389. // 底部選單
  390. const menu = ref(null);
  391. const menuHeight = ref(0);
  392. // let isRotate = ref(false);
  393. let isLanguagePage = ref(true);
  394. let selectLang = ref("");
  395. let chatLoading = ref(true);
  396. watch(isLanguagePage, (val) => {
  397. if (!val) {
  398. setTimeout(updateMenuHeight, 500);
  399. }
  400. });
  401. const handleResize = () => {
  402. updateMenuHeight();
  403. };
  404. // 取得底部選單高度
  405. const updateMenuHeight = () => {
  406. nextTick(() => {
  407. if (menu.value) {
  408. menuHeight.value = menu.value.clientHeight;
  409. chatLoading.value = false;
  410. }
  411. });
  412. };
  413. function chooseLang(lang) {
  414. console.log("選擇語言:", lang);
  415. selectLang.value = lang;
  416. isLanguagePage.value = false;
  417. locale.value = lang; // i18n locale
  418. localStorage.setItem("lang", lang);
  419. messages.value.push({
  420. label: "text",
  421. author: "ai",
  422. body: t("prologue"),
  423. });
  424. messages.value.push({
  425. label: "text",
  426. author: "ai",
  427. body: t("service"),
  428. });
  429. // 判斷語言修改 title
  430. const language = localStorage.getItem("lang") || "zh-tw";
  431. console.log("language", language);
  432. if (language === "zh-tw") {
  433. document.title = "New 台北101 AI智能客服";
  434. } else if (language === "en-us") {
  435. document.title = "New Taipei 101 AI Intelligent Customer Service";
  436. }
  437. setAd();
  438. handleClick();
  439. console.log(" messages.value", messages.value);
  440. setTimeout(() => {
  441. showAd.value = true;
  442. // videoPlay();
  443. }, 500);
  444. }
  445. let assignSubtype = ref("");
  446. let assignCategory = ref("");
  447. let assignCategoryIndex = ref(null);
  448. // 美食伴手禮
  449. let diningList = reactive([
  450. {
  451. value: "特色/高空餐廳",
  452. text: "food_souvenirs_info.signature",
  453. },
  454. {
  455. value: "輕食/CAFÉ",
  456. text: "food_souvenirs_info.light",
  457. },
  458. {
  459. value: "美食街",
  460. text: "food_souvenirs_info.courts",
  461. },
  462. {
  463. value: "伴手禮",
  464. text: "food_souvenirs_info.souvenir",
  465. },
  466. ]);
  467. // 秘境花園觀景台
  468. let observationList = reactive([
  469. {
  470. value: "線上購票",
  471. text: "observatory_info.tickets.title",
  472. },
  473. {
  474. value: "參觀資訊",
  475. text: "observatory_info.visitor.title",
  476. },
  477. // {
  478. // value: "實境景色",
  479. // text: "observatory_info.view",
  480. // },
  481. {
  482. value: "前往秘境花園觀景台",
  483. text: "observatory_info.garden",
  484. },
  485. ]);
  486. // 購物及優惠
  487. let shoppingList = reactive([
  488. {
  489. value: "購物品牌查詢",
  490. text: "shopping_discounts_info.brands.title",
  491. },
  492. {
  493. value: "國際貴賓卡專屬禮遇",
  494. text: "shopping_discounts_info.tourist_card.title",
  495. },
  496. ]);
  497. // 購物品牌查詢
  498. let brandList = reactive([
  499. {
  500. value: "國際珠寶腕錶",
  501. text: "shopping_discounts_info.brands.jewely",
  502. },
  503. {
  504. value: "國際精品",
  505. text: "shopping_discounts_info.brands.boutique",
  506. },
  507. {
  508. value: "美妝保養品",
  509. text: "shopping_discounts_info.brands.skincare",
  510. },
  511. {
  512. value: "流行服飾",
  513. text: "shopping_discounts_info.brands.apparel",
  514. },
  515. {
  516. value: "生活居家/3C",
  517. text: "shopping_discounts_info.brands.lifestyle",
  518. },
  519. {
  520. value: "文化創意",
  521. text: "shopping_discounts_info.brands.cultural",
  522. },
  523. {
  524. value: "特色品牌",
  525. text: "shopping_discounts_info.brands.signature",
  526. },
  527. {
  528. value: "館外店家",
  529. text: "shopping_discounts_info.brands.outside",
  530. },
  531. ]);
  532. // 服務資訊
  533. let serviceList = reactive([
  534. {
  535. title: "service_info.business_hours",
  536. depiction: "service_info.business_hours_1",
  537. },
  538. {
  539. title: "service_info.tax_refund",
  540. depiction: "service_info.tax_refund_1",
  541. },
  542. {
  543. title: "service_info.toilets",
  544. depiction: "service_info.toilets_1",
  545. },
  546. {
  547. title: "service_info.charge",
  548. depiction: "service_info.charge_1",
  549. },
  550. // {
  551. // title: "AI 天燈",
  552. // depiction: "https://cmm.ai/101-postcard/#/skylanternhome",
  553. // },
  554. ]);
  555. // 定位點
  556. let locationList = reactive([
  557. {
  558. location: "B1 鼎泰豐", // 編號 1
  559. navigation: [
  560. {
  561. value: "景觀餐廳櫃台",
  562. text: "high_rise_restaurant_reception",
  563. },
  564. {
  565. value: "ATM",
  566. text: "atm",
  567. },
  568. {
  569. value: "觀景台售票處",
  570. text: "observatory_ticket_office",
  571. },
  572. {
  573. value: "鼎泰豐",
  574. text: "din_tai_fung",
  575. },
  576. {
  577. value: "捷運",
  578. text: "metro_station",
  579. },
  580. {
  581. value: "超市",
  582. text: "supermarket",
  583. },
  584. {
  585. value: "美食街",
  586. text: "food_court",
  587. },
  588. {
  589. value: "退稅/外幣兌換櫃台",
  590. text: "tax_refund_currency_exchange",
  591. },
  592. {
  593. value: "計程車乘車處",
  594. text: "taxi_station",
  595. },
  596. {
  597. value: "無障礙廁所",
  598. text: "accessible_facilities",
  599. },
  600. {
  601. value: "客服(停車折抵)",
  602. text: "service_counter_parking_discount",
  603. },
  604. {
  605. value: "哺乳室",
  606. text: "nursing_room",
  607. },
  608. {
  609. value: "飲水機",
  610. text: "ice_warmed_water_dispenser",
  611. },
  612. {
  613. value: "伴手禮區",
  614. text: "snackable_souvenirs",
  615. },
  616. {
  617. value: "廁所",
  618. text: "restroom",
  619. },
  620. {
  621. value: "置物櫃",
  622. text: "items_and_luggage_storage",
  623. },
  624. ],
  625. // navigation: [
  626. // "景觀餐廳櫃台",
  627. // "ATM",
  628. // "觀景台售票處",
  629. // "鼎泰豐",
  630. // "捷運",
  631. // "超市",
  632. // "美食街",
  633. // "退稅/外幣兌換櫃台",
  634. // "計程車乘車處",
  635. // "無障礙廁所",
  636. // "客服(停車折抵)",
  637. // "哺乳室",
  638. // "飲水機",
  639. // "伴手禮區",
  640. // "廁所",
  641. // "置物櫃",
  642. // ],
  643. },
  644. {
  645. location: "B1 中環", // 編號 2
  646. navigation: [
  647. {
  648. value: "景觀餐廳櫃台",
  649. text: "high_rise_restaurant_reception",
  650. },
  651. {
  652. value: "ATM",
  653. text: "atm",
  654. },
  655. {
  656. value: "觀景台售票處",
  657. text: "observatory_ticket_office",
  658. },
  659. {
  660. value: "美食街",
  661. text: "food_court",
  662. },
  663. {
  664. value: "伴手禮區",
  665. text: "snackable_souvenirs",
  666. },
  667. {
  668. value: "鼎泰豐",
  669. text: "din_tai_fung",
  670. },
  671. {
  672. value: "捷運",
  673. text: "metro_station",
  674. },
  675. {
  676. value: "超市",
  677. text: "supermarket",
  678. },
  679. {
  680. value: "計程車乘車處",
  681. text: "taxi_station",
  682. },
  683. {
  684. value: "無障礙廁所",
  685. text: "accessible_facilities",
  686. },
  687. ],
  688. // navigation: [
  689. // "景觀餐廳櫃台",
  690. // "ATM",
  691. // "觀景台售票處",
  692. // "美食街",
  693. // "伴手禮區",
  694. // "鼎泰豐",
  695. // "捷運",
  696. // "超市",
  697. // "計程車乘車處",
  698. // "無障礙廁所",
  699. // ],
  700. },
  701. {
  702. location: "B1 2號電梯", // 編號 3
  703. navigation: [
  704. {
  705. value: "景觀餐廳櫃台",
  706. text: "high_rise_restaurant_reception",
  707. },
  708. {
  709. value: "ATM",
  710. text: "atm",
  711. },
  712. {
  713. value: "觀景台售票處",
  714. text: "observatory_ticket_office",
  715. },
  716. {
  717. value: "客服(退稅櫃台/外幣兌換)",
  718. text: "tax_refund_currency_exchange",
  719. },
  720. {
  721. value: "計程車乘車處",
  722. text: "taxi_station",
  723. },
  724. {
  725. value: "無障礙廁所",
  726. text: "accessible_facilities",
  727. },
  728. {
  729. value: "超市",
  730. text: "supermarket",
  731. },
  732. {
  733. value: "鼎泰豐",
  734. text: "din_tai_fung",
  735. },
  736. {
  737. value: "捷運",
  738. text: "metro_station",
  739. },
  740. {
  741. value: "伴手禮區",
  742. text: "snackable_souvenirs",
  743. },
  744. {
  745. value: "廁所",
  746. text: "restroom",
  747. },
  748. {
  749. value: "置物櫃",
  750. text: "items_and_luggage_storage",
  751. },
  752. {
  753. value: "美食街",
  754. text: "food_court",
  755. },
  756. {
  757. value: "客服(停車折抵)",
  758. text: "service_counter_parking_discount",
  759. },
  760. {
  761. value: "哺乳室",
  762. text: "nursing_room",
  763. },
  764. {
  765. value: "飲水機",
  766. text: "ice_warmed_water_dispenser",
  767. },
  768. {
  769. value: "廁所",
  770. text: "restroom",
  771. },
  772. ],
  773. // navigation: [
  774. // "景觀餐廳櫃台",
  775. // "ATM",
  776. // "觀景台售票處",
  777. // "客服(退稅櫃台/外幣兌換)",
  778. // "計程車乘車處",
  779. // "無障礙廁所",
  780. // "超市",
  781. // "鼎泰豐",
  782. // "捷運",
  783. // "伴手禮區",
  784. // "廁所",
  785. // "置物櫃",
  786. // "美食街",
  787. // "客服(停車折抵)",
  788. // "哺乳室",
  789. // "飲水機",
  790. // "廁所",
  791. // ],
  792. },
  793. {
  794. location: "B1 4號電梯", // 編號 4
  795. navigation: [
  796. {
  797. value: "景觀餐廳櫃台",
  798. text: "high_rise_restaurant_reception",
  799. },
  800. {
  801. value: "ATM",
  802. text: "atm",
  803. },
  804. {
  805. value: "觀景台售票處",
  806. text: "observatory_ticket_office",
  807. },
  808. {
  809. value: "廁所",
  810. text: "restroom",
  811. },
  812. {
  813. value: "置物櫃",
  814. text: "items_and_luggage_storage",
  815. },
  816. {
  817. value: "客服(停車折抵)",
  818. text: "service_counter_parking_discount",
  819. },
  820. {
  821. value: "哺乳室",
  822. text: "nursing_room",
  823. },
  824. {
  825. value: "飲水機",
  826. text: "ice_warmed_water_dispenser",
  827. },
  828. {
  829. value: "退稅/外幣兌換櫃台",
  830. text: "tax_refund_currency_exchange",
  831. },
  832. {
  833. value: "計程車乘車處",
  834. text: "taxi_station",
  835. },
  836. {
  837. value: "無障礙廁所",
  838. text: "accessible_facilities",
  839. },
  840. {
  841. value: "伴手禮區",
  842. text: "snackable_souvenirs",
  843. },
  844. {
  845. value: "捷運",
  846. text: "metro_station",
  847. },
  848. {
  849. value: "鼎泰豐",
  850. text: "din_tai_fung",
  851. },
  852. {
  853. value: "美食街",
  854. text: "food_court",
  855. },
  856. {
  857. value: "超市",
  858. text: "supermarket",
  859. },
  860. ],
  861. // navigation: [
  862. // "景觀餐廳櫃台",
  863. // "ATM",
  864. // "觀景台售票處",
  865. // "廁所",
  866. // "置物櫃",
  867. // "客服(停車折抵)",
  868. // "哺乳室",
  869. // "飲水機",
  870. // "退稅/外幣兌換櫃台",
  871. // "計程車乘車處",
  872. // "無障礙廁所",
  873. // "伴手禮區",
  874. // "捷運",
  875. // "鼎泰豐",
  876. // "美食街",
  877. // "超市",
  878. // ],
  879. },
  880. {
  881. location: "B1 3號電梯", // 編號 5
  882. navigation: [
  883. {
  884. value: "景觀餐廳櫃台",
  885. text: "high_rise_restaurant_reception",
  886. },
  887. {
  888. value: "ATM",
  889. text: "atm",
  890. },
  891. {
  892. value: "觀景台售票處",
  893. text: "observatory_ticket_office",
  894. },
  895. {
  896. value: "廁所",
  897. text: "restroom",
  898. },
  899. {
  900. value: "無障礙廁所",
  901. text: "accessible_facilities",
  902. },
  903. {
  904. value: "計程車乘車處",
  905. text: "taxi_station",
  906. },
  907. {
  908. value: "客服(退稅櫃台/外幣兌換)",
  909. text: "tax_refund_currency_exchange",
  910. },
  911. {
  912. value: "飲水機",
  913. text: "ice_warmed_water_dispenser",
  914. },
  915. {
  916. value: "哺乳室",
  917. text: "nursing_room",
  918. },
  919. {
  920. value: "置物櫃",
  921. text: "items_and_luggage_storage",
  922. },
  923. {
  924. value: "客服(停車折抵)",
  925. text: "service_counter_parking_discount",
  926. },
  927. {
  928. value: "美食街",
  929. text: "food_court",
  930. },
  931. {
  932. value: "伴手禮區",
  933. text: "snackable_souvenirs",
  934. },
  935. {
  936. value: "鼎泰豐",
  937. text: "din_tai_fung",
  938. },
  939. {
  940. value: "捷運",
  941. text: "metro_station",
  942. },
  943. {
  944. value: "超市",
  945. text: "supermarket",
  946. },
  947. ],
  948. // navigation: [
  949. // "景觀餐廳櫃台",
  950. // "ATM",
  951. // "觀景台售票處",
  952. // "廁所",
  953. // "無障礙廁所",
  954. // "計程車乘車處",
  955. // "客服(退稅櫃台/外幣兌換)",
  956. // "飲水機",
  957. // "哺乳室",
  958. // "置物櫃",
  959. // "客服(停車折抵)",
  960. // "美食街",
  961. // "伴手禮區",
  962. // "鼎泰豐",
  963. // "捷運",
  964. // "超市",
  965. // ],
  966. },
  967. {
  968. location: "1F 信義環", // 編號 6
  969. navigation: [
  970. {
  971. value: "景觀餐廳櫃台",
  972. text: "high_rise_restaurant_reception",
  973. },
  974. {
  975. value: "ATM",
  976. text: "atm",
  977. },
  978. {
  979. value: "觀景台售票處",
  980. text: "observatory_ticket_office",
  981. },
  982. {
  983. value: "廁所",
  984. text: "restroom",
  985. },
  986. {
  987. value: "ATM",
  988. text: "atm",
  989. },
  990. {
  991. value: "置物櫃",
  992. text: "items_and_luggage_storage",
  993. },
  994. {
  995. value: "飲水機",
  996. text: "ice_warmed_water_dispenser",
  997. },
  998. {
  999. value: "無障礙廁所",
  1000. text: "accessible_facilities",
  1001. },
  1002. {
  1003. value: "哺乳室",
  1004. text: "nursing_room",
  1005. },
  1006. {
  1007. value: "客服(停車折抵)",
  1008. text: "service_counter_parking_discount",
  1009. },
  1010. {
  1011. value: "退稅/外幣兌換櫃台",
  1012. text: "tax_refund_currency_exchange",
  1013. },
  1014. {
  1015. value: "伴手禮區",
  1016. text: "snackable_souvenirs",
  1017. },
  1018. {
  1019. value: "美食街",
  1020. text: "food_court",
  1021. },
  1022. {
  1023. value: "捷運",
  1024. text: "metro_station",
  1025. },
  1026. {
  1027. value: "鼎泰豐",
  1028. text: "din_tai_fung",
  1029. },
  1030. {
  1031. value: "超市",
  1032. text: "supermarket",
  1033. },
  1034. ],
  1035. // navigation: [
  1036. // "景觀餐廳櫃台",
  1037. // "ATM",
  1038. // "觀景台售票處",
  1039. // "廁所",
  1040. // "ATM",
  1041. // "置物櫃",
  1042. // "飲水機",
  1043. // "無障礙廁所",
  1044. // "哺乳室",
  1045. // "客服(停車折抵)",
  1046. // "退稅/外幣兌換櫃台",
  1047. // "伴手禮區",
  1048. // "美食街",
  1049. // "捷運",
  1050. // "鼎泰豐",
  1051. // "超市",
  1052. // ],
  1053. },
  1054. {
  1055. location: "1F 3號電梯", // 編號 7
  1056. navigation: [
  1057. {
  1058. value: "景觀餐廳櫃台",
  1059. text: "high_rise_restaurant_reception",
  1060. },
  1061. {
  1062. value: "ATM",
  1063. text: "atm",
  1064. },
  1065. {
  1066. value: "觀景台售票處",
  1067. text: "observatory_ticket_office",
  1068. },
  1069. {
  1070. value: "廁所",
  1071. text: "restroom",
  1072. },
  1073. {
  1074. value: "置物櫃",
  1075. text: "items_and_luggage_storage",
  1076. },
  1077. {
  1078. value: "飲水機",
  1079. text: "ice_warmed_water_dispenser",
  1080. },
  1081. {
  1082. value: "無障礙廁所",
  1083. text: "accessible_facilities",
  1084. },
  1085. {
  1086. value: "哺乳室",
  1087. text: "nursing_room",
  1088. },
  1089. {
  1090. value: "客服(停車折抵)",
  1091. text: "service_counter_parking_discount",
  1092. },
  1093. {
  1094. value: "退稅/外幣兌換櫃台",
  1095. text: "tax_refund_currency_exchange",
  1096. },
  1097. {
  1098. value: "計程車乘車處",
  1099. text: "taxi_station",
  1100. },
  1101. {
  1102. value: "美食街",
  1103. text: "food_court",
  1104. },
  1105. {
  1106. value: "超市",
  1107. text: "supermarket",
  1108. },
  1109. {
  1110. value: "捷運",
  1111. text: "metro_station",
  1112. },
  1113. {
  1114. value: "伴手禮區",
  1115. text: "snackable_souvenirs",
  1116. },
  1117. ],
  1118. // navigation: [
  1119. // "景觀餐廳櫃台",
  1120. // "ATM",
  1121. // "觀景台售票處",
  1122. // "廁所",
  1123. // "置物櫃",
  1124. // "飲水機",
  1125. // "無障礙廁所",
  1126. // "哺乳室",
  1127. // "客服(停車折抵)",
  1128. // "退稅/外幣兌換櫃台",
  1129. // "計程車乘車處",
  1130. // "美食街",
  1131. // "超市",
  1132. // "捷運",
  1133. // "伴手禮區",
  1134. // ],
  1135. },
  1136. {
  1137. location: "2F 3號電梯", // 編號 8
  1138. navigation: [
  1139. {
  1140. value: "景觀餐廳櫃台",
  1141. text: "high_rise_restaurant_reception",
  1142. },
  1143. {
  1144. value: "ATM",
  1145. text: "atm",
  1146. },
  1147. {
  1148. value: "觀景台售票處",
  1149. text: "observatory_ticket_office",
  1150. },
  1151. {
  1152. value: "廁所",
  1153. text: "restroom",
  1154. },
  1155. {
  1156. value: "置物櫃",
  1157. text: "items_and_luggage_storage",
  1158. },
  1159. {
  1160. value: "飲水機",
  1161. text: "ice_warmed_water_dispenser",
  1162. },
  1163. {
  1164. value: "無障礙廁所",
  1165. text: "accessible_facilities",
  1166. },
  1167. {
  1168. value: "哺乳室",
  1169. text: "nursing_room",
  1170. },
  1171. {
  1172. value: "計程車乘車處",
  1173. text: "taxi_station",
  1174. },
  1175. {
  1176. value: "退稅/外幣兌換櫃台",
  1177. text: "tax_refund_currency_exchange",
  1178. },
  1179. {
  1180. value: "客服(停車折抵)",
  1181. text: "service_counter_parking_discount",
  1182. },
  1183. ],
  1184. // navigation: [
  1185. // "景觀餐廳櫃台",
  1186. // "ATM",
  1187. // "觀景台售票處",
  1188. // "廁所",
  1189. // "置物櫃",
  1190. // "飲水機",
  1191. // "無障礙廁所",
  1192. // "哺乳室",
  1193. // "計程車乘車處",
  1194. // "退稅/外幣兌換櫃台",
  1195. // "客服(停車折抵)",
  1196. // ],
  1197. },
  1198. {
  1199. location: "89F 觀景台", // 編號 9
  1200. navigation: [
  1201. {
  1202. value: "景觀餐廳櫃台",
  1203. text: "high_rise_restaurant_reception",
  1204. },
  1205. {
  1206. value: "ATM",
  1207. text: "atm",
  1208. },
  1209. {
  1210. value: "客服",
  1211. text: "service_counter",
  1212. },
  1213. {
  1214. value: "91F戶外區",
  1215. text: "91f_outdoor_area",
  1216. },
  1217. {
  1218. value: "廁所",
  1219. text: "restroom",
  1220. },
  1221. {
  1222. value: "101F排隊處",
  1223. text: "101f_queue",
  1224. },
  1225. ],
  1226. // navigation: [
  1227. // "景觀餐廳櫃台",
  1228. // "ATM",
  1229. // "客服",
  1230. // "91F戶外區",
  1231. // "廁所",
  1232. // "101F排隊處",
  1233. // ],
  1234. },
  1235. {
  1236. location: "88F 觀景台", // 編號 10
  1237. navigation: [
  1238. {
  1239. value: "景觀餐廳櫃台",
  1240. text: "high_rise_restaurant_reception",
  1241. },
  1242. {
  1243. value: "ATM",
  1244. text: "atm",
  1245. },
  1246. {
  1247. value: "廁所",
  1248. text: "restroom",
  1249. },
  1250. {
  1251. value: "飲水機",
  1252. text: "ice_warmed_water_dispenser",
  1253. },
  1254. {
  1255. value: "哺乳室",
  1256. text: "nursing_room",
  1257. },
  1258. ],
  1259. // navigation: ["景觀餐廳櫃台", "ATM", "廁所", "飲水機", "哺乳室"],
  1260. },
  1261. ]);
  1262. // 平面圖
  1263. let mapList = reactive([
  1264. {
  1265. title: "B1 平面圖",
  1266. },
  1267. {
  1268. title: "1F 平面圖",
  1269. },
  1270. {
  1271. title: "2F 平面圖",
  1272. },
  1273. ]);
  1274. let assignLocation = ref("當前位置"); // 指定定位點
  1275. let assignNavigationList = ref(null); // 指定導覽點列表
  1276. // let assignLocationFloor = ref(null); // 指定定位點樓層
  1277. // let assignNavigation = ref(null); // 指定導覽點
  1278. // let navigationBtn = reactive(["B1", "1F", "2F", "4F", "5F", "89F", "91F"]);
  1279. let arVideo = ref(null);
  1280. let arVideoDialog = ref(false);
  1281. // 取得 AR 導覽影片
  1282. async function getArviews(route, text, type = "") {
  1283. let url;
  1284. let lang = getLang();
  1285. console.log("text >>>", text);
  1286. if (type === "garden") {
  1287. console.log("route", route);
  1288. let start;
  1289. // if (route === "B1 鼎泰豐旁 數位屏幕") {
  1290. // start = "B1 鼎泰豐";
  1291. // } else if (route === "B1 松智藍梯梯廳") {
  1292. // start = "B1 3號電梯";
  1293. // }
  1294. switch (route) {
  1295. case "B1 鼎泰豐旁 數位屏幕":
  1296. start = "B1 鼎泰豐";
  1297. break;
  1298. case "B1 中環WOW屏幕":
  1299. start = "B1 中環";
  1300. break;
  1301. case "B1 信義橘梯梯廳":
  1302. start = "B1 2號電梯";
  1303. break;
  1304. case "B1 信義綠梯梯廳":
  1305. start = "B1 4號電梯";
  1306. break;
  1307. case "B1 松智藍梯梯廳":
  1308. start = "B1 3號電梯";
  1309. break;
  1310. case "1F 信義綠梯出入口":
  1311. start = "1F 信義環";
  1312. break;
  1313. case "1F 松智梯廳":
  1314. start = "1F 3號電梯";
  1315. break;
  1316. case "2F 松智藍梯梯廳":
  1317. start = "2F 3號電梯";
  1318. break;
  1319. default:
  1320. break;
  1321. }
  1322. url = `https://cmm.ai:9101/arviews?language=${lang}&start=${start}&end=觀景台售票處`;
  1323. } else {
  1324. url = `https://cmm.ai:9101/arviews?language=${lang}&start=${assignLocation.value}&end=${route}`;
  1325. }
  1326. console.log("url", url);
  1327. messages.value.push({
  1328. label: "text",
  1329. author: "ai",
  1330. body: text,
  1331. });
  1332. try {
  1333. const response = await axios.get(url);
  1334. console.log("AR 導覽影片", response);
  1335. messages.value.push({
  1336. label: "ar_views",
  1337. author: "ai",
  1338. body: response.data,
  1339. });
  1340. } catch (error) {
  1341. console.log("error", error);
  1342. }
  1343. }
  1344. // 取得定位點 & 導覽點
  1345. function changeLocation(item) {
  1346. assignLocation.value = item;
  1347. console.log("定位點:", item);
  1348. let assign = locationList.filter((e) => e.location === item);
  1349. console.log("assign", assign);
  1350. assignNavigationList.value = assign[0].navigation;
  1351. // assignLocation.value = item.location;
  1352. // assignNavigationList.value = item.navigation;
  1353. console.log("assignNavigationList.value", assignNavigationList.value);
  1354. messages.value.push({
  1355. label: "text",
  1356. author: "ai",
  1357. body: t("select_navigation_location"),
  1358. });
  1359. messages.value.push({
  1360. label: "navigation",
  1361. author: "ai",
  1362. body: assignNavigationList.value,
  1363. });
  1364. }
  1365. // 顯示平面圖
  1366. function assignMapImg(item) {
  1367. console.log("顯示平面圖 item", item);
  1368. let name;
  1369. if (item.title === "B1 平面圖") {
  1370. name = "All_b1";
  1371. } else if (item.title === "1F 平面圖") {
  1372. name = "All_1";
  1373. } else if (item.title === "2F 平面圖") {
  1374. name = "All_2";
  1375. }
  1376. messages.value.push({
  1377. label: "map_img",
  1378. author: "ai",
  1379. body: name,
  1380. });
  1381. }
  1382. // 動態引入視頻文件
  1383. const videoSources = ref([]); // 開場白影片(中)
  1384. const videoSourcesEn = ref([]); // 開場白影片(英)
  1385. const videoMuteSources = ref([]); // 點頭影片(靜音)
  1386. const videoSpeakSources = ref([]); // 動嘴型影片
  1387. const loadVideoSources = async () => {
  1388. // 本地端影片路徑
  1389. // const start1 = await import("@/assets/video/start_1.mp4");
  1390. // const start2 = await import("@/assets/video/start_2.mp4");
  1391. // const mute_1 = await import("@/assets/video/mute_1.mp4");
  1392. // const mute_2 = await import("@/assets/video/mute_2.mp4");
  1393. // const speak_1 = await import("@/assets/video/speak_1.mp4");
  1394. // const speak_2 = await import("@/assets/video/speak_2.mp4");
  1395. // videoSpeakSources.value = [speak_1.default, speak_2.default];
  1396. videoSources.value = [
  1397. "https://cmm.ai/101-ai-chatbot-new/video/start_1.mp4",
  1398. "https://cmm.ai/101-ai-chatbot-new/video/start_2.mp4",
  1399. ];
  1400. videoSourcesEn.value = [
  1401. "https://cmm.ai/101-ai-chatbot-new/video/start_en_1.mp4",
  1402. "https://cmm.ai/101-ai-chatbot-new/video/start_en_2.mp4",
  1403. ];
  1404. videoMuteSources.value = [
  1405. "https://cmm.ai/101-ai-chatbot-new/video/mute_1.mp4",
  1406. "https://cmm.ai/101-ai-chatbot-new/video/mute_2.mp4",
  1407. ];
  1408. videoSpeakSources.value = [
  1409. "https://cmm.ai/101-ai-chatbot-new/video/speak_1.mp4",
  1410. "https://cmm.ai/101-ai-chatbot-new/video/speak_2.mp4",
  1411. ];
  1412. };
  1413. let videoSrc = ref("");
  1414. let hideAnchorPrologue = ref(false); // 顯示開場白 or 點頭影片
  1415. let videoIndex = ref(null); // 影片編號
  1416. // 選擇類別
  1417. async function selectCategory(value, index) {
  1418. assignCategory.value = value;
  1419. assignCategoryIndex.value = index;
  1420. console.log("selectCategory index", assignCategoryIndex.value);
  1421. console.log("selectCategory value", assignCategory.value);
  1422. if (value === "叫出真人客服") {
  1423. showAnchor.value = true;
  1424. if (currentAudio.value && isAudioPlaying.value) {
  1425. // currentAudio.value.addEventListener("ended", onAudioEnded); // 監聽音訊播放結束
  1426. // setTimeout(() => {
  1427. // video.value.play();
  1428. // }, 0);
  1429. // return;
  1430. handleVoice("pause"); // 暫停音訊
  1431. }
  1432. // 隨機取得影片路徑
  1433. await loadVideoSources();
  1434. // 主播開場白只顯示一次
  1435. if (!hideAnchorPrologue.value) {
  1436. let lang = getLang();
  1437. let sources;
  1438. if (lang === "ch") {
  1439. sources = videoSources.value;
  1440. } else if (lang === "en") {
  1441. sources = videoSourcesEn.value;
  1442. }
  1443. const randomIndex = Math.floor(Math.random() * sources.length);
  1444. videoSrc.value = sources[randomIndex];
  1445. hideAnchorPrologue.value = true;
  1446. videoIndex.value = randomIndex + 1;
  1447. // const randomIndex = Math.floor(Math.random() * videoSources.value.length);
  1448. // videoSrc.value = videoSources.value[randomIndex];
  1449. // hideAnchorPrologue.value = true;
  1450. // videoIndex.value = randomIndex + 1;
  1451. } else {
  1452. const randomIndex = Math.floor(
  1453. Math.random() * videoMuteSources.value.length
  1454. );
  1455. videoSrc.value = videoMuteSources.value[randomIndex];
  1456. videoIndex.value = randomIndex + 1;
  1457. }
  1458. // 播放影片
  1459. setTimeout(() => {
  1460. videoPlay();
  1461. }, 0);
  1462. // const randomIndex = Math.floor(Math.random() * videoSources.value.length);
  1463. // videoSrc.value = videoSources.value[randomIndex];
  1464. }
  1465. // else if (value === "隱藏真人客服") {
  1466. // showAnchor.value = false;
  1467. // video.value.pause();
  1468. // menuList[0][0].text = "customer_show";
  1469. // menuList[0][0].value = "叫出真人客服";
  1470. // }
  1471. else if (value === "秘境花園觀景台") {
  1472. messages.value.push({
  1473. label: "text",
  1474. author: "ai",
  1475. body: t("observatory_info.tickets.purchase"),
  1476. });
  1477. messages.value.push({
  1478. label: "observation_deck",
  1479. author: "ai",
  1480. body: observationList,
  1481. });
  1482. } else if (value === "位置導引") {
  1483. messages.value.push({
  1484. label: "text",
  1485. author: "ai",
  1486. body: t("qr_code_scan_prompt"),
  1487. });
  1488. // messages.value.push({
  1489. // label: "map_img",
  1490. // author: "ai",
  1491. // body: mapList,
  1492. // });
  1493. messages.value.push({
  1494. label: "location",
  1495. author: "ai",
  1496. body: locationList,
  1497. });
  1498. } else if (value === "美食/伴手禮") {
  1499. // getAd("美食伴手禮");
  1500. messages.value.push({
  1501. label: "text",
  1502. author: "ai",
  1503. body: t("food_souvenirs_info.searching"),
  1504. });
  1505. messages.value.push({
  1506. label: "dining",
  1507. author: "ai",
  1508. body: diningList,
  1509. });
  1510. } else if (value === "購物及優惠") {
  1511. // getAd("購物及優惠");
  1512. messages.value.push({
  1513. label: "shopping",
  1514. author: "ai",
  1515. body: shoppingList,
  1516. });
  1517. } else if (value === "服務資訊") {
  1518. messages.value.push({
  1519. label: "text",
  1520. author: "ai",
  1521. body: t("service_info.inquiry_prompt"),
  1522. });
  1523. messages.value.push({
  1524. label: "service",
  1525. author: "ai",
  1526. body: serviceList,
  1527. });
  1528. }
  1529. }
  1530. let secondaryAd = ref({}); // 隨機廣告
  1531. let secondaryAdShow = ref(false);
  1532. // 取得隨機廣告 (美食伴手禮/購物及優惠)
  1533. async function getAd(type) {
  1534. let lang = getLang();
  1535. let url = `https://cmm.ai:9101/ad/${type}?language=${lang}`;
  1536. try {
  1537. const response = await axios.get(url);
  1538. console.log("response", response);
  1539. secondaryAd.value = response.data.data;
  1540. // secondaryAdShow.value = true; // 取消蓋版廣告
  1541. messages.value.push({
  1542. label: "brand",
  1543. author: "ai",
  1544. body: [
  1545. {
  1546. info: response.data.data,
  1547. },
  1548. ],
  1549. });
  1550. } catch (error) {
  1551. console.log("error", error);
  1552. }
  1553. }
  1554. // 服務資訊回覆
  1555. function handleService(title, depiction) {
  1556. messages.value.push({
  1557. label: "text",
  1558. author: "user",
  1559. body: title,
  1560. });
  1561. if (title !== "AI 天燈") {
  1562. messages.value.push({
  1563. label: "text",
  1564. author: "ai",
  1565. body: depiction,
  1566. });
  1567. } else {
  1568. window.location.href = depiction;
  1569. // window.open(depiction, "_blank"); // 另開天燈頁面
  1570. }
  1571. }
  1572. // 參觀資訊回覆
  1573. function handleVisit(title, depiction) {
  1574. messages.value.push({
  1575. label: "text",
  1576. author: "user",
  1577. body: title,
  1578. });
  1579. messages.value.push({
  1580. label: "text",
  1581. author: "ai",
  1582. body: depiction,
  1583. });
  1584. }
  1585. // 計算使用次數
  1586. async function handleClick() {
  1587. let url = "https://cmm.ai:9101/click";
  1588. try {
  1589. const response = await axios.get(url);
  1590. console.log("Click", response);
  1591. } catch (error) {
  1592. console.log("error", error);
  1593. }
  1594. }
  1595. let langList = reactive([
  1596. {
  1597. lang: "中文",
  1598. value: "zh-tw",
  1599. },
  1600. {
  1601. lang: "English",
  1602. value: "en-us",
  1603. },
  1604. // {
  1605. // lang: "日本語",
  1606. // value: "ja-jp",
  1607. // },
  1608. // {
  1609. // lang: "한국어",
  1610. // value: "ko-kr",
  1611. // },
  1612. ]);
  1613. const btnList = reactive([
  1614. {
  1615. title: "observation_deck",
  1616. value: "秘境花園觀景台",
  1617. },
  1618. {
  1619. title: "location_guide",
  1620. value: "位置導引",
  1621. },
  1622. {
  1623. title: "food_souvenirs",
  1624. value: "美食伴手禮",
  1625. },
  1626. {
  1627. title: "shopping_discounts",
  1628. value: "購物及優惠",
  1629. },
  1630. {
  1631. title: "service_information",
  1632. value: "服務資訊",
  1633. },
  1634. ]);
  1635. function getImageUrl(name) {
  1636. return new URL(`../assets/img/icon/${name}`, import.meta.url).href;
  1637. }
  1638. let showAnchor = ref(false); // AI 主播影片
  1639. let videoContent = ref(null); // 主播影片區塊
  1640. // 動態更改主播區塊位置
  1641. // watch(showAnchor, () => {
  1642. // console.log("showAnchor", showAnchor.value);
  1643. // nextTick(() => {
  1644. // changeAnchorTop();
  1645. // });
  1646. // });
  1647. // watch(hideMenu, () => {
  1648. // nextTick(() => {
  1649. // changeAnchorTop();
  1650. // });
  1651. // });
  1652. // function changeAnchorTop() {
  1653. // const menuOffsetTop = menu.value.offsetTop;
  1654. // videoContent.value.style.top = `${menuOffsetTop - 170}px`;
  1655. // }
  1656. const menuList = reactive([
  1657. [
  1658. {
  1659. imgSrc: "素材-05.png",
  1660. text: "customer_show",
  1661. value: "叫出真人客服",
  1662. },
  1663. { imgSrc: "素材-06.png", text: "service_information", value: "服務資訊" },
  1664. { imgSrc: "素材-07.png", text: "shopping_discounts", value: "購物及優惠" },
  1665. ],
  1666. [
  1667. {
  1668. imgSrc: "素材-08.png",
  1669. text: "observation_deck",
  1670. value: "秘境花園觀景台",
  1671. },
  1672. { imgSrc: "素材-09.png", text: "food_souvenirs", value: "美食/伴手禮" },
  1673. { imgSrc: "素材-10.png", text: "location_guide", value: "位置導引" },
  1674. ],
  1675. ]);
  1676. // 美食伴手禮 or 購物及優惠類別篩選
  1677. async function findBrand(value) {
  1678. console.log("findBrand", value);
  1679. if (value === "館外店家") {
  1680. value = "館外";
  1681. }
  1682. let lang = getLang();
  1683. let url = `https://cmm.ai:9101/find_brand?keyword=${value}&language=${lang}`;
  1684. try {
  1685. const response = await axios.get(url);
  1686. console.log("response", response);
  1687. // response.data.data.map(
  1688. // (item) => (item.info.tags = JSON.parse(item.info.tags))
  1689. // );
  1690. messages.value.push({
  1691. label: "brand",
  1692. author: "ai",
  1693. body: response.data.data,
  1694. });
  1695. assignCategoryIndex.value = null;
  1696. assignCategory.value = "";
  1697. // messages.value.push({
  1698. // label: "text",
  1699. // author: "ai",
  1700. // body: "請選擇問題類型:",
  1701. // });
  1702. // messages.value.push({
  1703. // label: "btn-list",
  1704. // author: "ai",
  1705. // body: "",
  1706. // });
  1707. } catch (error) {
  1708. console.log("error", error);
  1709. }
  1710. }
  1711. // 處理電話格式
  1712. // function getPhoneNumber(phoneString) {
  1713. // const parts = phoneString.split("\n");
  1714. // return parts[1];
  1715. // }
  1716. // 取得線上購票
  1717. async function getStaticTickets(type) {
  1718. let url = `https://cmm.ai:9101/static_tickets?is_Chinese=${type}`;
  1719. let info = {
  1720. buttonList: [], // 按鈕
  1721. ticketList: [], // 票券
  1722. };
  1723. try {
  1724. const response = await axios.get(url);
  1725. console.log("線上購票", response.data.result);
  1726. response.data.result.map((item) => info.ticketList.push(item));
  1727. console.log("info", info);
  1728. messages.value.push({
  1729. label: "ticket",
  1730. author: "ai",
  1731. body: info,
  1732. });
  1733. } catch (error) {
  1734. console.log("error", error);
  1735. }
  1736. }
  1737. // 秘境花園觀景台對話
  1738. function handleObservationDialog(value) {
  1739. console.log("value", value);
  1740. if (value === "線上購票") {
  1741. messages.value.push({
  1742. label: "text",
  1743. author: "ai",
  1744. body: t("observatory_info.tickets.id_card"),
  1745. });
  1746. messages.value.push({
  1747. label: "check",
  1748. author: "ai",
  1749. body: [
  1750. {
  1751. value: "是",
  1752. text: "observatory_info.tickets.yes",
  1753. },
  1754. {
  1755. value: "否",
  1756. text: "observatory_info.tickets.no",
  1757. },
  1758. ],
  1759. });
  1760. } else if (value === "是" || value === "否") {
  1761. if (value === "是") {
  1762. getStaticTickets("1");
  1763. } else if (value === "否") {
  1764. getStaticTickets("0");
  1765. }
  1766. messages.value.push({
  1767. label: "text",
  1768. author: "ai",
  1769. body: t("observatory_info.tickets.ticket_type"),
  1770. });
  1771. } else if (value === "參觀資訊") {
  1772. messages.value.push({
  1773. label: "text",
  1774. author: "ai",
  1775. body: t("observatory_info.visitor.question"),
  1776. });
  1777. messages.value.push({
  1778. label: "text",
  1779. author: "ai",
  1780. body: t("observatory_info.visitor.faq"),
  1781. });
  1782. messages.value.push({
  1783. label: "visit",
  1784. author: "ai",
  1785. body: visitList,
  1786. });
  1787. } else if (value === "實境景色") {
  1788. // window.location.href = "https://www.youtube.com/watch?v=RVV00FZbeH0";
  1789. window.open("https://www.youtube.com/watch?v=RVV00FZbeH0", "_blank"); // 另開頁面
  1790. } else if (value === "前往秘境花園觀景台") {
  1791. messages.value.push({
  1792. label: "text",
  1793. author: "ai",
  1794. body: t("select_location"),
  1795. });
  1796. messages.value.push({
  1797. label: "garden_route",
  1798. author: "ai",
  1799. body: gardenRouteList,
  1800. // body: [
  1801. // "B1 鼎泰豐旁 數位屏幕",
  1802. // "B1 中環WOW屏幕",
  1803. // "B1 信義橘梯梯廳",
  1804. // "B1 信義綠梯梯廳",
  1805. // "B1 松智藍梯梯廳",
  1806. // "1F 信義綠梯出入口",
  1807. // "1F 松智梯廳",
  1808. // "2F 松智藍梯梯廳",
  1809. // ],
  1810. });
  1811. }
  1812. }
  1813. let gardenRouteList = reactive([
  1814. {
  1815. value: "B1 鼎泰豐旁 數位屏幕",
  1816. text: "location.b1_din_tai_fung",
  1817. },
  1818. {
  1819. value: "B1 中環WOW屏幕",
  1820. text: "location.b1_centre",
  1821. },
  1822. {
  1823. value: "B1 信義橘梯梯廳",
  1824. text: "location.b1_elevator_no_2",
  1825. },
  1826. {
  1827. value: "B1 信義綠梯梯廳",
  1828. text: "location.b1_elevator_no_4",
  1829. },
  1830. {
  1831. value: "B1 松智藍梯梯廳",
  1832. text: "location.b1_elevator_no_3",
  1833. },
  1834. {
  1835. value: "1F 信義綠梯出入口",
  1836. text: "location.1f_south_xinyi",
  1837. },
  1838. {
  1839. value: "1F 松智梯廳",
  1840. text: "location.1f_elevator_no_3",
  1841. },
  1842. {
  1843. value: "2F 松智藍梯梯廳",
  1844. text: "location.2f_elevator_no_3",
  1845. },
  1846. ]);
  1847. // 購物及優惠對話
  1848. function handleShoppingDialog(value) {
  1849. console.log("value", value);
  1850. if (value === "購物品牌查詢") {
  1851. messages.value.push({
  1852. label: "text",
  1853. author: "ai",
  1854. body: t("shopping_discounts_info.brands.choose"),
  1855. });
  1856. messages.value.push({
  1857. label: "shopping_brand",
  1858. author: "ai",
  1859. body: brandList,
  1860. });
  1861. } else if (value === "國際貴賓卡專屬禮遇") {
  1862. messages.value.push({
  1863. label: "text",
  1864. author: "user",
  1865. body: t("shopping_discounts_info.tourist_card.title"),
  1866. });
  1867. messages.value.push({
  1868. label: "text",
  1869. author: "ai",
  1870. body: t("shopping_discounts_info.tourist_card.content"),
  1871. });
  1872. } else if (value === "參觀資訊") {
  1873. messages.value.push({
  1874. label: "text",
  1875. author: "ai",
  1876. body: t("observatory_info.visitor.question"),
  1877. });
  1878. messages.value.push({
  1879. label: "text",
  1880. author: "ai",
  1881. body: t("observatory_info.visitor.faq"),
  1882. });
  1883. messages.value.push({
  1884. label: "visit",
  1885. author: "ai",
  1886. body: visitList,
  1887. });
  1888. }
  1889. }
  1890. let visitList = reactive([
  1891. {
  1892. title: "observatory_info.visitor.events_q",
  1893. depiction: "observatory_info.visitor.events_a",
  1894. },
  1895. {
  1896. title: "observatory_info.visitor.ball_q",
  1897. depiction: "observatory_info.visitor.ball_a",
  1898. },
  1899. {
  1900. title: "observatory_info.visitor.accessible_q",
  1901. depiction: "observatory_info.visitor.accessible_a",
  1902. },
  1903. ]);
  1904. // 判斷價格是否包含 $ 符號
  1905. function formatPrice(price) {
  1906. if (price === "") {
  1907. return "";
  1908. } else {
  1909. if (price.includes("$")) {
  1910. return price;
  1911. } else {
  1912. return `$${price}`;
  1913. }
  1914. }
  1915. }
  1916. let currentAudio = ref(null); // 當前音訊
  1917. let audioDuration = ref(null); // 音訊秒數
  1918. // 文字轉語音 (TTS)
  1919. async function handleTTS(message) {
  1920. console.log("handleTTS", message);
  1921. let audioLang; // 音訊語言
  1922. let lang = localStorage.getItem("lang");
  1923. console.log("lang", lang);
  1924. switch (lang) {
  1925. case "zh-tw":
  1926. audioLang = "cmn-TW";
  1927. break;
  1928. case "en-us":
  1929. audioLang = "en-US";
  1930. break;
  1931. case "ja-jp":
  1932. audioLang = "ja-JP";
  1933. break;
  1934. case "ko-kr":
  1935. audioLang = "ko-KR";
  1936. break;
  1937. default:
  1938. break;
  1939. }
  1940. // let url = `https://cmm.ai:9001/ttsTry/tts_try?message=${message}&type=101`;
  1941. let url = `https://cmm.ai:9001/gcp/text-to-speech?language_code=${audioLang}&gender=female`;
  1942. const formData = new FormData();
  1943. formData.append("text", message);
  1944. try {
  1945. const response = await axios.post(url, formData, { responseType: "blob" });
  1946. console.log("TTS response", response);
  1947. const blob = new Blob([response.data], { type: "audio/mp3" });
  1948. const audioUrl = URL.createObjectURL(blob);
  1949. console.log("audioUrl", audioUrl);
  1950. cutVideo();
  1951. // 取得 mp3 音訊秒數
  1952. // audio.addEventListener("loadedmetadata", function () {
  1953. // audioDuration.value = audio.duration;
  1954. // cutVideo();
  1955. // });
  1956. // 暫停當前音訊
  1957. if (currentAudio.value) {
  1958. currentAudio.value.pause();
  1959. currentAudio.value.currentTime = 0;
  1960. }
  1961. // 播放音檔
  1962. currentAudio.value = new Audio(audioUrl);
  1963. } catch (error) {
  1964. console.log("error", error);
  1965. }
  1966. }
  1967. let videoLoading = ref(false);
  1968. let isAudioPlaying = ref(false); // 音訊播放狀態
  1969. // 取得語音回覆 mp4
  1970. async function cutVideo() {
  1971. videoSrc.value = videoSpeakSources.value[videoIndex.value - 1];
  1972. video.value.load(); // 重新讀取影片
  1973. // let duration = Math.floor(audioDuration.value); // 音訊秒數
  1974. // 影片和音訊加載完成後播放
  1975. video.value.oncanplay = () => {
  1976. setTimeout(() => {
  1977. // 監聽音訊播放結束
  1978. currentAudio.value.addEventListener("ended", onAudioEnded);
  1979. // 監聽音訊播放狀態
  1980. currentAudio.value.addEventListener("play", onAudioPlay);
  1981. currentAudio.value.addEventListener("pause", onAudioPause);
  1982. video.value.play(); // 播放影片
  1983. currentAudio.value.currentTime = 0; // 重置時間
  1984. currentAudio.value.play(); // 播放音訊
  1985. isVideoPause.value = true;
  1986. videoLoading.value = false;
  1987. }, 500);
  1988. };
  1989. // video.value.currentTime = 0;
  1990. // video.value.play(); // 播放影片
  1991. // currentAudio.value.play(); // 播放音訊
  1992. // isVideoPause.value = true;
  1993. // videoLoading.value = false;
  1994. // setTimeout(()=>{
  1995. // video.value.play(); // 播放影片
  1996. // },300)
  1997. // // 監聽音訊播放狀態
  1998. // currentAudio.value.addEventListener("play", onAudioPlay);
  1999. // currentAudio.value.addEventListener("pause", onAudioPause);
  2000. // 監聽音訊播放結束
  2001. // currentAudio.value.addEventListener("ended", onAudioEnded);
  2002. // if (video.value.currentTime >= duration) {
  2003. // video.value.pause();
  2004. // }
  2005. }
  2006. // 音訊結束後暫停影片播放
  2007. const onAudioEnded = () => {
  2008. video.value.pause();
  2009. };
  2010. // 判斷音訊是否為播放狀態
  2011. const onAudioPlay = () => {
  2012. isAudioPlaying.value = true;
  2013. console.log("isAudioPlaying.value", isAudioPlaying.value);
  2014. };
  2015. const onAudioPause = () => {
  2016. isAudioPlaying.value = false;
  2017. console.log("isAudioPlaying.value", isAudioPlaying.value);
  2018. };
  2019. const audioURL = ref(null);
  2020. const audioFile = ref(null); // 音訊檔案
  2021. let recordTime = ref(0); // 錄音時間
  2022. let isRecording = ref(false); // 錄音狀態
  2023. let timer;
  2024. // 語音轉文字
  2025. async function handleAudioToText() {
  2026. isRecording.value = false;
  2027. let audioLang; // 音訊語言
  2028. let lang = localStorage.getItem("lang");
  2029. console.log("lang", lang);
  2030. switch (lang) {
  2031. case "zh-tw":
  2032. audioLang = "cmn-Hant-TW";
  2033. break;
  2034. case "en-us":
  2035. audioLang = "en-US";
  2036. break;
  2037. case "ja-jp":
  2038. audioLang = "ja-JP";
  2039. break;
  2040. case "ko-kr":
  2041. audioLang = "ko-KR";
  2042. break;
  2043. default:
  2044. break;
  2045. }
  2046. // let url = `http://172.104.93.163:9880/whisper/${audioLang}/`;
  2047. // let url = `https://cmm.ai:9001/whisper/${audioLang}/`;
  2048. let url = `https://cmm.ai:9001/gcp/speech-to-text?language_code=${audioLang}`;
  2049. const formData = new FormData();
  2050. formData.append("file", audioFile.value);
  2051. try {
  2052. console.log("audioFile.value", audioFile.value);
  2053. const response = await axios.post(url, formData);
  2054. console.log("語音轉文字 response", response);
  2055. // showAnchor.value = false; // 關閉主播視窗
  2056. userMessage.value = response.data[0];
  2057. // handleTTS(userMessage.value); // 取得語音回覆
  2058. if (response.data[0] && response.data[0] !== "") {
  2059. sendMessage(); // 傳送使用者訊息
  2060. } else {
  2061. if (showAnchor.value) {
  2062. alert("語音辨識有誤,請重新錄製。");
  2063. videoLoading.value = false;
  2064. return;
  2065. } else {
  2066. messages.value.push({
  2067. label: "text",
  2068. author: "user",
  2069. body: "語音辨識有誤,請重新錄製。",
  2070. });
  2071. }
  2072. }
  2073. } catch (error) {
  2074. console.log("error", error);
  2075. }
  2076. }
  2077. // 語音轉文字 (使用 recorder-core 錄音)
  2078. let rec, wave;
  2079. // 調用 open 請求錄音權限
  2080. let recOpen = function (success) {
  2081. rec = Recorder({
  2082. type: "mp3",
  2083. sampleRate: 16000,
  2084. bitRate: 16,
  2085. onProcess: function (
  2086. buffers,
  2087. powerLevel,
  2088. bufferDuration,
  2089. bufferSampleRate,
  2090. newBufferIdx,
  2091. asyncEnd
  2092. ) {
  2093. wave &&
  2094. wave.input(buffers[buffers.length - 1], powerLevel, bufferSampleRate);
  2095. },
  2096. });
  2097. rec.open(
  2098. function () {
  2099. if (Recorder.WaveView) wave = Recorder.WaveView({ elem: ".recwave" });
  2100. success && success();
  2101. },
  2102. function (msg, isUserNotAllow) {
  2103. // 使用者未授權或不支援
  2104. console.log((isUserNotAllow ? "UserNotAllow," : "") + "無法錄音:" + msg);
  2105. }
  2106. );
  2107. };
  2108. /** 開始錄音 **/
  2109. function recStart() {
  2110. togglePause("pause"); // 暫停影片音訊
  2111. // 需先呼叫 recOpen() 開啟錄音後才能調用 start、stop 方法
  2112. console.log("開始錄音");
  2113. recOpen(function () {
  2114. isRecording.value = true;
  2115. // 開始計時
  2116. timer = setInterval(() => {
  2117. recordTime.value += 1;
  2118. }, 1000);
  2119. rec.start();
  2120. });
  2121. }
  2122. /** 結束錄音 **/
  2123. function recStop() {
  2124. videoLoading.value = true;
  2125. rec.stop(
  2126. function (blob, duration) {
  2127. // 利用 URL 產生本地檔案位址,不用時需要 revokeObjectURL
  2128. let localUrl = (window.URL || webkitURL).createObjectURL(blob); // 該 url 只能本地端使用 (例如給 audio.src 進行播放,或是給 a.href download 進行下載)
  2129. console.log(blob, localUrl, "時長:" + duration + "ms");
  2130. // rec.close(); // 釋放錄音資源 (若不釋放系統或瀏覽器將持續提示在錄音中)
  2131. // rec = null;
  2132. // 將 Blob 轉換為 File 對象
  2133. audioFile.value = new File([blob], "recording.mp3", {
  2134. type: "audio/mp3",
  2135. });
  2136. console.log("audioFile", audioFile.value);
  2137. // 自動播放(測試用)
  2138. // const audio = document.createElement("audio");
  2139. // audio.src = localUrl;
  2140. // audio.autoplay = true;
  2141. // audio
  2142. // .play()
  2143. // .then(() => {
  2144. // console.log("Audio is playing automatically.");
  2145. // })
  2146. // .catch((error) => {
  2147. // console.error("Error playing audio:", error);
  2148. // });
  2149. rec.close(); // 釋放錄音資源 (若不釋放系統或瀏覽器將持續提示在錄音中)
  2150. rec = null;
  2151. if (recordTime.value !== 0) {
  2152. handleAudioToText(); // 語音轉文字
  2153. } else {
  2154. isRecording.value = false;
  2155. }
  2156. clearInterval(timer); // 清空計時秒數
  2157. recordTime.value = 0;
  2158. },
  2159. function (msg) {
  2160. console.log("錄音失敗:" + msg);
  2161. rec.close(); // 可以透過 stop 方法的第 3 個參數來自動呼叫 close
  2162. rec = null;
  2163. }
  2164. );
  2165. }
  2166. // 關閉主播視窗 (結束錄音)
  2167. function closeRec() {
  2168. video.value.pause();
  2169. isVideoPause.value = true;
  2170. recordTime.value = 0;
  2171. clearInterval(timer); // 清空計時秒數
  2172. if (isRecording.value) {
  2173. recStop();
  2174. }
  2175. showAnchor.value = false;
  2176. }
  2177. // watch(showAnchor, (val) => {
  2178. // if (val) {
  2179. // isVideoPause.value = true;
  2180. // }
  2181. // });
  2182. let isVideoPause = ref(true);
  2183. // AI 主播影片播放 & 暫停
  2184. function togglePause(val) {
  2185. if (val === "pause") {
  2186. // video.value.pause();
  2187. isVideoPause.value = false;
  2188. if (video.value) {
  2189. video.value.pause();
  2190. }
  2191. if (currentAudio.value) {
  2192. currentAudio.value.pause(); // 暫停音訊
  2193. }
  2194. } else {
  2195. // video.value.play();
  2196. isVideoPause.value = true;
  2197. if (video.value) {
  2198. video.value.play();
  2199. }
  2200. if (currentAudio.value) {
  2201. currentAudio.value.play(); // 播放音訊
  2202. currentAudio.value.addEventListener("ended", onAudioEnded);
  2203. }
  2204. }
  2205. }
  2206. // 語音暫停
  2207. function handleVoice(state) {
  2208. if (currentAudio.value) {
  2209. if (state === "pause") {
  2210. currentAudio.value.pause();
  2211. isVideoPause.value = false;
  2212. } else {
  2213. currentAudio.value.play();
  2214. isVideoPause.value = true;
  2215. }
  2216. }
  2217. }
  2218. // 失物招領表單
  2219. let lostForm = ref(null);
  2220. let lostDialog = ref(false);
  2221. const lostFormData = ref({
  2222. title: "",
  2223. content: "",
  2224. client_name: "",
  2225. gender: "",
  2226. email: "",
  2227. phone: "",
  2228. });
  2229. const requiredRule = (value) => !!value || "此欄位為必填";
  2230. const emailRule = (value) =>
  2231. /^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$/.test(value) ||
  2232. "請輸入有效的電子郵件地址";
  2233. // 寄送表單
  2234. const submitLostForm = async () => {
  2235. // 驗證表單
  2236. const validationResult = await lostForm.value[0].validate();
  2237. console.log("validationResult", validationResult.valid);
  2238. if (validationResult.valid) {
  2239. let url = "https://cmm.ai:9101/insert_table?type=lost_property";
  2240. try {
  2241. const response = await axios.post(url, lostFormData.value);
  2242. console.log("表單 response", response);
  2243. if (response.data.state === 200) {
  2244. alert(response.data.message);
  2245. lostDialog.value = false;
  2246. }
  2247. } catch (error) {
  2248. console.log("error", error);
  2249. }
  2250. }
  2251. };
  2252. </script>
  2253. <template>
  2254. <Navbar v-if="!isLanguagePage" />
  2255. <div v-if="isLanguagePage" class="lang-content">
  2256. <div class="btn-list">
  2257. <button
  2258. v-for="(item, index) in langList"
  2259. :key="index"
  2260. @click="chooseLang(item.value)"
  2261. class="main-btn"
  2262. >
  2263. {{ item.lang }}
  2264. </button>
  2265. </div>
  2266. </div>
  2267. <div v-else-if="!isLanguagePage && !showAnchor" class="main-containar">
  2268. <!-- <div class="video-content">
  2269. <video
  2270. ref="video"
  2271. preload
  2272. playsinline
  2273. :style="{ opacity: !isTTSVideo ? '1' : '0' }"
  2274. >
  2275. <source src="../assets/video/start_1.mp4" type="video/mp4" />
  2276. Your browser does not support the video tag.
  2277. </video>
  2278. <video
  2279. ref="ttsVideo"
  2280. preload
  2281. playsinline
  2282. :style="{ opacity: isTTSVideo ? '1' : '0' }"
  2283. >
  2284. <source :src="ttsVideoSrc" type="video/mp4" />
  2285. Your browser does not support the video tag.
  2286. </video>
  2287. <button @click="handleVideo(isTTSVideo)" class="control-btn">
  2288. <img v-if="!videoPause" src="../assets/img/pause-button.png" alt="" />
  2289. <img v-else src="../assets/img/play-button.png" alt="" />
  2290. </button>
  2291. </div> -->
  2292. <!-- <Navbar /> -->
  2293. <div v-if="chatLoading" class="d-flex justify-center pt-5">
  2294. <v-progress-circular color="primary" indeterminate></v-progress-circular>
  2295. </div>
  2296. <div
  2297. v-else
  2298. class="chat-content"
  2299. :class="{ 'hide-menu': hideMenu }"
  2300. :style="{ paddingBottom: !hideMenu ? menuHeight + 'px' : '50px' }"
  2301. >
  2302. <!-- <div class="headline">
  2303. <h1>{{ t("title") }}</h1>
  2304. <button @click="isRotate = !isRotate">
  2305. <img
  2306. :class="{ rotate: isRotate }"
  2307. src="../assets/img/angles-up-solid.svg"
  2308. alt=""
  2309. />
  2310. </button>
  2311. </div> -->
  2312. <!-- 購票介面 -->
  2313. <!-- <TicketPurchase />
  2314. <router-link
  2315. to="/brand-search"
  2316. style="color: #fff; text-decoration: none"
  2317. class="ps-3"
  2318. >館外品牌測試頁面</router-link
  2319. > -->
  2320. <!-- 語音暫停按鈕 -->
  2321. <div v-if="currentAudio" class="voice-btn">
  2322. <button v-if="isAudioPlaying" @click="togglePause('pause')">
  2323. <img src="../assets/img/pause-button.png" alt="" />
  2324. <p>語音</p>
  2325. </button>
  2326. <button v-else @click="togglePause('play')">
  2327. <img src="../assets/img/play-button.png" alt="" />
  2328. <p>語音</p>
  2329. </button>
  2330. </div>
  2331. <section
  2332. ref="chatArea"
  2333. class="chat-area"
  2334. :class="{ 'hide-menu': hideMenu }"
  2335. >
  2336. <div v-for="message in messages" class="message-content">
  2337. <p
  2338. v-if="message.label === 'text'"
  2339. class="message animate__animated"
  2340. :class="{
  2341. 'message-out': message.author === 'user',
  2342. 'message-in': message.author !== 'user',
  2343. animate__fadeInRight: message.author === 'user',
  2344. animate__fadeInLeft: message.author !== 'user',
  2345. }"
  2346. v-html="message.body"
  2347. ></p>
  2348. <!-- 問題類別 -->
  2349. <!-- <div v-else-if="message.label === 'btn-list'">
  2350. <ul class="btn-list">
  2351. <li v-for="(btn, index) in btnList">
  2352. <button
  2353. :class="{ active: index === assignCategoryIndex }"
  2354. @click="selectCategory(btn.value, index)"
  2355. >
  2356. {{ t(`${btn.title}`) }}
  2357. </button>
  2358. </li>
  2359. </ul>
  2360. </div> -->
  2361. <!-- 秘境花園觀景台 -->
  2362. <div v-else-if="message.label === 'observation_deck'">
  2363. <swiper
  2364. :slidesPerView="'auto'"
  2365. :spaceBetween="20"
  2366. :modules="modules"
  2367. class="btn-swiper"
  2368. >
  2369. <swiper-slide v-for="item in message.body">
  2370. <div class="btn-container">
  2371. <button @click="handleObservationDialog(item.value)">
  2372. {{ t(item.text) }}
  2373. </button>
  2374. </div>
  2375. </swiper-slide>
  2376. </swiper>
  2377. </div>
  2378. <!-- 確認按鈕 -->
  2379. <div v-else-if="message.label === 'check'">
  2380. <swiper
  2381. :slidesPerView="'auto'"
  2382. :spaceBetween="20"
  2383. :modules="modules"
  2384. class="btn-swiper"
  2385. >
  2386. <swiper-slide v-for="item in message.body">
  2387. <div class="btn-container">
  2388. <button @click="handleObservationDialog(item.value)">
  2389. {{ t(item.text) }}
  2390. </button>
  2391. </div>
  2392. </swiper-slide>
  2393. </swiper>
  2394. </div>
  2395. <!-- 參觀資訊 -->
  2396. <div v-else-if="message.label === 'visit'">
  2397. <swiper
  2398. :slidesPerView="'auto'"
  2399. :spaceBetween="20"
  2400. :modules="modules"
  2401. class="btn-swiper"
  2402. >
  2403. <swiper-slide v-for="item in message.body">
  2404. <div class="btn-container">
  2405. <button
  2406. @click="handleVisit(t(item.title), t(item.depiction))"
  2407. >
  2408. {{ t(item.title) }}
  2409. </button>
  2410. </div>
  2411. </swiper-slide>
  2412. </swiper>
  2413. </div>
  2414. <!-- 位置導引 (定位點) -->
  2415. <div v-else-if="message.label === 'location'">
  2416. <!-- <v-select
  2417. @update:modelValue="changeLocation"
  2418. v-model="assignLocation"
  2419. label="當前位置"
  2420. :items="locationList"
  2421. item-title="location"
  2422. item-value="location"
  2423. variant="outlined"
  2424. density="comfortable"
  2425. hide-details
  2426. color="primary"
  2427. class="mt-5 me-15"
  2428. :menu-props="{ maxHeight: '155px' }"
  2429. ></v-select> -->
  2430. <!-- 掃描 QR Code -->
  2431. <v-btn @click="qrCodeDialog = true" color="primary" class="mt-5">
  2432. {{ t("tap_to_start_scan") }}
  2433. </v-btn>
  2434. <v-dialog v-model="qrCodeDialog" width="auto">
  2435. <v-card max-width="400">
  2436. <v-card-text>
  2437. <div v-if="qrCodeLoading" class="d-flex justify-center pt-5">
  2438. <v-progress-circular
  2439. color="primary"
  2440. indeterminate
  2441. ></v-progress-circular>
  2442. </div>
  2443. <qrcode-stream
  2444. v-show="!qrCodeLoading"
  2445. @detect="onDetect"
  2446. @camera-on="onInit"
  2447. ></qrcode-stream>
  2448. </v-card-text>
  2449. <template v-slot:actions>
  2450. <v-btn class="ms-auto" @click="qrCodeDialog = false">
  2451. {{ t("close") }}
  2452. </v-btn>
  2453. </template>
  2454. </v-card>
  2455. </v-dialog>
  2456. <!-- <div class="d-flex">
  2457. <v-menu location="top">
  2458. <template v-slot:activator="{ props }">
  2459. <v-btn class="mt-5 py-2" color="primary" dark v-bind="props">
  2460. <p class="me-2">{{ assignLocation }}</p>
  2461. <svg
  2462. xmlns="http://www.w3.org/2000/svg"
  2463. width="18"
  2464. height="18"
  2465. fill="currentColor"
  2466. class="bi bi-caret-down-fill pt-1"
  2467. viewBox="0 0 16 16"
  2468. >
  2469. <path
  2470. d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"
  2471. />
  2472. </svg>
  2473. </v-btn>
  2474. </template>
  2475. <v-list style="max-height: 155px; overflow-y: auto">
  2476. <v-list-item
  2477. v-for="(item, index) in locationList"
  2478. :key="index"
  2479. >
  2480. <v-list-item-title @click="changeLocation(item)">
  2481. {{ index + 1 }}. {{ item.location }}
  2482. </v-list-item-title>
  2483. </v-list-item>
  2484. </v-list>
  2485. </v-menu>
  2486. <v-menu location="top">
  2487. <template v-slot:activator="{ props }">
  2488. <v-btn
  2489. class="ms-5 mt-5 py-2"
  2490. color="primary"
  2491. dark
  2492. v-bind="props"
  2493. >
  2494. <p class="me-2">查看平面圖</p>
  2495. <svg
  2496. xmlns="http://www.w3.org/2000/svg"
  2497. width="18"
  2498. height="18"
  2499. fill="currentColor"
  2500. class="bi bi-caret-down-fill pt-1"
  2501. viewBox="0 0 16 16"
  2502. >
  2503. <path
  2504. d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"
  2505. />
  2506. </svg>
  2507. </v-btn>
  2508. </template>
  2509. <v-list style="max-height: 155px; overflow-y: auto">
  2510. <v-list-item v-for="(item, index) in mapList" :key="index">
  2511. <v-list-item-title @click="assignMapImg(item)">
  2512. {{ item.title }}
  2513. </v-list-item-title>
  2514. </v-list-item>
  2515. </v-list>
  2516. </v-menu>
  2517. </div> -->
  2518. </div>
  2519. <!-- 定位點平面圖 -->
  2520. <!-- <div v-else-if="message.label === 'map_img'" class="mt-5">
  2521. <img
  2522. class="map-img"
  2523. :class="{ 'show-anchor': showAnchor }"
  2524. :src="`../src/assets/img/map/${message.body}.webp`"
  2525. alt=""
  2526. />
  2527. </div> -->
  2528. <!-- 位置導引 (導覽點) -->
  2529. <div v-else-if="message.label === 'navigation'">
  2530. <!-- <v-select
  2531. @update:modelValue="changeLocation"
  2532. v-model="assignNavigation"
  2533. label="導覽位置"
  2534. :items="assignNavigationList"
  2535. variant="solo"
  2536. hide-details
  2537. class="bg-white mt-4"
  2538. ></v-select> -->
  2539. <swiper
  2540. :slidesPerView="'auto'"
  2541. :spaceBetween="20"
  2542. :modules="modules"
  2543. class="btn-swiper"
  2544. >
  2545. <swiper-slide v-for="item in message.body">
  2546. <div class="btn-container">
  2547. <button
  2548. @click="
  2549. getArviews(item.value, t(`navigation.${item.text}`))
  2550. "
  2551. >
  2552. {{ t(`navigation.${item.text}`) }}
  2553. </button>
  2554. </div>
  2555. </swiper-slide>
  2556. </swiper>
  2557. </div>
  2558. <!-- 秘境花園觀景台 -->
  2559. <div v-else-if="message.label === 'garden_route'">
  2560. <!-- <v-select
  2561. @update:modelValue="changeLocation"
  2562. v-model="assignNavigation"
  2563. label="導覽位置"
  2564. :items="assignNavigationList"
  2565. variant="solo"
  2566. hide-details
  2567. class="bg-white mt-4"
  2568. ></v-select> -->
  2569. <swiper
  2570. :slidesPerView="'auto'"
  2571. :spaceBetween="20"
  2572. :modules="modules"
  2573. class="btn-swiper"
  2574. >
  2575. <swiper-slide v-for="item in message.body">
  2576. <div class="btn-container">
  2577. <button
  2578. @click="getArviews(item.value, t(item.text), 'garden')"
  2579. >
  2580. {{ t(item.text) }}
  2581. </button>
  2582. </div>
  2583. </swiper-slide>
  2584. </swiper>
  2585. </div>
  2586. <!-- AR 導覽影片 -->
  2587. <div v-else-if="message.label === 'ar_views'">
  2588. <div
  2589. class="message animate__animated"
  2590. :class="{
  2591. 'message-out': message.author === 'user',
  2592. 'message-in': message.author !== 'user',
  2593. animate__fadeInRight: message.author === 'user',
  2594. animate__fadeInLeft: message.author !== 'user',
  2595. }"
  2596. >
  2597. <p v-html="message.body.words"></p>
  2598. <button @click="arVideoDialog = true" class="ar-link my-3">
  2599. <!-- 進行 AR 導覽 -->
  2600. {{ t("ar_tour") }}
  2601. </button>
  2602. <v-dialog v-model="arVideoDialog" width="auto">
  2603. <v-card class="ar-card">
  2604. <v-card-title class="mt-3"> AR 導覽 </v-card-title>
  2605. <v-card-text class="pa-0">
  2606. <!-- 測試 -->
  2607. <!-- <video
  2608. ref="vrVideo"
  2609. class="video-js vjs-default-skin"
  2610. controls
  2611. playsinline
  2612. >
  2613. <source :src="message.body.url" type="video/mp4" />
  2614. </video> -->
  2615. <a-scene>
  2616. <a-assets>
  2617. <video
  2618. id="vr-video"
  2619. ref="arVideo"
  2620. :src="message.body.url"
  2621. autoplay
  2622. crossorigin="anonymous"
  2623. ecrossorigin="anonymous"
  2624. ></video>
  2625. </a-assets>
  2626. <a-sky src="#vr-video"></a-sky>
  2627. </a-scene>
  2628. </v-card-text>
  2629. <template v-slot:actions>
  2630. <v-btn class="ms-auto" @click="arVideoDialog = false">
  2631. {{ t("close") }}
  2632. </v-btn>
  2633. </template>
  2634. </v-card>
  2635. </v-dialog>
  2636. </div>
  2637. </div>
  2638. <!-- 美食伴手禮 -->
  2639. <div v-else-if="message.label === 'dining'">
  2640. <!-- <ul class="btn-options">
  2641. <li v-for="item in message.body">
  2642. <button @click="findBrand(item.value)">
  2643. {{ t(item.text) }}
  2644. </button>
  2645. </li>
  2646. </ul> -->
  2647. <swiper
  2648. :slidesPerView="'auto'"
  2649. :spaceBetween="20"
  2650. :modules="modules"
  2651. class="btn-swiper"
  2652. >
  2653. <swiper-slide v-for="item in message.body">
  2654. <div class="btn-container">
  2655. <button @click="findBrand(item.value)">
  2656. {{ t(item.text) }}
  2657. </button>
  2658. </div>
  2659. </swiper-slide>
  2660. </swiper>
  2661. </div>
  2662. <!-- 購物及優惠 -->
  2663. <div v-else-if="message.label === 'shopping'">
  2664. <!-- <ul class="btn-options">
  2665. <li v-for="item in message.body">
  2666. <button @click="handleShoppingDialog(item.value)">
  2667. {{ t(item.text) }}
  2668. </button>
  2669. </li>
  2670. </ul> -->
  2671. <swiper
  2672. :slidesPerView="'auto'"
  2673. :spaceBetween="20"
  2674. :modules="modules"
  2675. class="btn-swiper"
  2676. >
  2677. <swiper-slide v-for="item in message.body">
  2678. <div class="btn-container">
  2679. <button @click="handleShoppingDialog(item.value)">
  2680. {{ t(item.text) }}
  2681. </button>
  2682. </div>
  2683. </swiper-slide>
  2684. </swiper>
  2685. </div>
  2686. <!-- 購物品牌查詢 -->
  2687. <div v-else-if="message.label === 'shopping_brand'">
  2688. <!-- <ul class="btn-options">
  2689. <li v-for="item in message.body">
  2690. <button @click="findBrand(item.value)">
  2691. {{ item.value }}
  2692. </button>
  2693. </li>
  2694. </ul> -->
  2695. <swiper
  2696. :slidesPerView="'auto'"
  2697. :spaceBetween="20"
  2698. :modules="modules"
  2699. class="btn-swiper"
  2700. >
  2701. <swiper-slide v-for="item in message.body">
  2702. <div class="btn-container">
  2703. <button @click="findBrand(item.value)">
  2704. {{ t(item.text) }}
  2705. </button>
  2706. </div>
  2707. </swiper-slide>
  2708. </swiper>
  2709. </div>
  2710. <!-- 服務資訊 (常見問題) -->
  2711. <div v-else-if="message.label === 'service'">
  2712. <swiper
  2713. :slidesPerView="'auto'"
  2714. :spaceBetween="20"
  2715. :modules="modules"
  2716. class="btn-swiper"
  2717. >
  2718. <swiper-slide v-for="item in message.body">
  2719. <div class="btn-container">
  2720. <button
  2721. @click="handleService(t(item.title), t(item.depiction))"
  2722. >
  2723. {{ t(item.title) }}
  2724. </button>
  2725. </div>
  2726. </swiper-slide>
  2727. </swiper>
  2728. </div>
  2729. <!-- 推薦資訊 -->
  2730. <div v-else-if="message.label === 'ticket'" class="ticket-item">
  2731. <!-- 按鈕 -->
  2732. <swiper
  2733. v-if="message.body.buttonList.length"
  2734. :slidesPerView="'auto'"
  2735. :spaceBetween="20"
  2736. :modules="modules"
  2737. class="btn-swiper"
  2738. :style="{
  2739. marginBottom: message.body.ticketList.length ? '35px' : '0px',
  2740. }"
  2741. >
  2742. <swiper-slide v-for="item in message.body.buttonList">
  2743. <div class="btn-container">
  2744. <button @click="setBtnValue(item.info.value)">
  2745. {{ item.info.key }}
  2746. </button>
  2747. </div>
  2748. </swiper-slide>
  2749. </swiper>
  2750. <!-- 票券 -->
  2751. <swiper
  2752. v-if="message.body.ticketList.length"
  2753. :slidesPerView="1"
  2754. :navigation="true"
  2755. :modules="modules"
  2756. class="ticket-slide"
  2757. >
  2758. <swiper-slide v-for="item in message.body.ticketList">
  2759. <div class="slide-item">
  2760. <img
  2761. class="cover-img"
  2762. :src="item.info.img || item.info.cover_img"
  2763. alt=""
  2764. />
  2765. <section>
  2766. <h3 class="title">
  2767. {{ item.info.name || item.info.title }}
  2768. </h3>
  2769. <div class="price-info">
  2770. <span>{{ item.info.floor || item.info.price }}</span>
  2771. <div class="link-btn">
  2772. <a
  2773. :href="item.info.website_url || item.info.url"
  2774. target="_blank"
  2775. >
  2776. {{ t("ctaGoUrl") }}
  2777. </a>
  2778. </div>
  2779. </div>
  2780. <p class="description">
  2781. {{ item.info.content || item.info.description }}
  2782. </p>
  2783. </section>
  2784. </div>
  2785. </swiper-slide>
  2786. </swiper>
  2787. </div>
  2788. <!-- 品牌資訊 -->
  2789. <div v-else-if="message.label === 'brand'" class="ticket-item">
  2790. <!-- 按鈕 -->
  2791. <swiper
  2792. v-if="message.body.buttonList?.length"
  2793. :slidesPerView="'auto'"
  2794. :spaceBetween="20"
  2795. :modules="modules"
  2796. class="btn-swiper"
  2797. :style="{
  2798. marginBottom: message.body.ticketList.length ? '35px' : '0px',
  2799. }"
  2800. >
  2801. <swiper-slide v-for="item in message.body.buttonList">
  2802. <div class="btn-container">
  2803. <button @click="setBtnValue(item.info.value)">
  2804. {{ item.info.key }}
  2805. </button>
  2806. </div>
  2807. </swiper-slide>
  2808. </swiper>
  2809. <!-- 票券 -->
  2810. <swiper
  2811. v-if="message.body.ticketList?.length"
  2812. :slidesPerView="1"
  2813. :navigation="true"
  2814. :modules="modules"
  2815. class="ticket-slide"
  2816. >
  2817. <swiper-slide v-for="item in message.body.ticketList">
  2818. <div class="slide-item">
  2819. <img
  2820. class="cover-img"
  2821. :src="item.info.img || item.info.cover_img"
  2822. alt=""
  2823. />
  2824. <section>
  2825. <h3 class="title">
  2826. {{ item.info.name || item.info.title }}
  2827. </h3>
  2828. <div class="price-info">
  2829. <span>{{ item.info.floor || item.info.price }}</span>
  2830. <div class="link-btn">
  2831. <a
  2832. :href="item.info.url || item.info.website_url"
  2833. target="_blank"
  2834. >
  2835. {{ t("ctaGoUrl") }}
  2836. </a>
  2837. </div>
  2838. </div>
  2839. <p class="description">
  2840. {{ item.info.content || item.info.description }}
  2841. </p>
  2842. </section>
  2843. </div>
  2844. </swiper-slide>
  2845. </swiper>
  2846. <!-- 美食/伴手禮 -->
  2847. <swiper
  2848. v-if="message.body.length"
  2849. :slidesPerView="1"
  2850. :navigation="true"
  2851. :modules="modules"
  2852. class="ticket-slide"
  2853. >
  2854. <swiper-slide v-for="item in message.body">
  2855. <div class="slide-item">
  2856. <img
  2857. class="cover-img"
  2858. :src="item.info.img || item.info.cover_img"
  2859. alt=""
  2860. />
  2861. <section>
  2862. <h3 class="title">
  2863. {{ item.info.name || item.info.title }}
  2864. </h3>
  2865. <div
  2866. v-if="item.info.phone !== ''"
  2867. class="d-flex align-center mt-3 mb-5"
  2868. >
  2869. <img
  2870. src="../assets/img/phone-solid.svg"
  2871. width="15"
  2872. alt=""
  2873. />
  2874. <p class="ms-2">
  2875. {{ item.info.phone }}
  2876. </p>
  2877. </div>
  2878. <div class="price-info">
  2879. <span>{{ item.info.floor || item.info.price }}</span>
  2880. <div class="link-btn">
  2881. <a :href="item.info.url" target="_blank">
  2882. {{ t("ctaGoUrl") }}
  2883. </a>
  2884. </div>
  2885. </div>
  2886. <p class="description">
  2887. {{ item.info.content || item.info.description }}
  2888. </p>
  2889. </section>
  2890. </div>
  2891. </swiper-slide>
  2892. </swiper>
  2893. <!-- <swiper
  2894. v-if="message.body.length"
  2895. :slidesPerView="'auto'"
  2896. :spaceBetween="20"
  2897. :modules="modules"
  2898. >
  2899. <swiper-slide v-for="item in message.body">
  2900. <img
  2901. class="cover-img"
  2902. :src="item.info.img || item.info.cover_img"
  2903. alt=""
  2904. />
  2905. <section>
  2906. <h3 class="title">{{ item.info.name || item.info.title }}</h3>
  2907. <div
  2908. v-if="item.info.phone !== ''"
  2909. class="d-flex align-center mt-3 mb-5"
  2910. >
  2911. <img
  2912. src="../assets/img/phone-solid.svg"
  2913. width="15"
  2914. alt=""
  2915. />
  2916. <p class="ms-2">
  2917. {{ getPhoneNumber(item.info.phone) }}
  2918. </p>
  2919. </div>
  2920. <div class="price-info">
  2921. <span>{{ item.info.floor || item.info.price }}</span>
  2922. <div class="link-btn">
  2923. <a :href="item.info.url" target="_blank">
  2924. {{ t("ctaGoUrl") }}
  2925. </a>
  2926. </div>
  2927. </div>
  2928. <p class="description">
  2929. {{ item.info.content || item.info.description }}
  2930. </p>
  2931. </section>
  2932. </swiper-slide>
  2933. </swiper> -->
  2934. </div>
  2935. <!-- 推薦資訊 -->
  2936. <div v-else-if="message.label === 'recommend'" class="recommend-item">
  2937. <img class="cover-img" :src="message.body.cover_img" alt="" />
  2938. <section>
  2939. <h3 class="title">{{ message.body.title }}</h3>
  2940. <p class="description">{{ message.body.description }}</p>
  2941. <div class="link-btn">
  2942. <a
  2943. :href="message.body.store_info_url || message.body.url"
  2944. target="_blank"
  2945. >
  2946. {{ t("ctaBuyNow") }}
  2947. </a>
  2948. <a :href="message.body.website_url" target="_blank"> 官網 </a>
  2949. </div>
  2950. <p class="date">{{ message.body.date }} 限時搶購</p>
  2951. </section>
  2952. </div>
  2953. <!-- 店家資訊 -->
  2954. <div v-else-if="message.label === 'store'" class="store-item">
  2955. <p class="headline">店家資訊</p>
  2956. <div class="cover-img">
  2957. <img :src="message.body.cover_img" alt="" />
  2958. <h3 class="title">{{ message.body.title }}</h3>
  2959. </div>
  2960. <section>
  2961. <div class="info">
  2962. <p>
  2963. <img
  2964. src="../assets/img/location-dot-solid.svg"
  2965. width="15"
  2966. alt=""
  2967. />
  2968. {{ message.body.location }}
  2969. </p>
  2970. <p>
  2971. <img src="../assets/img/phone-solid.svg" width="15" alt="" />
  2972. {{ message.body.contact }}
  2973. </p>
  2974. </div>
  2975. <p class="description">{{ message.body.description }}</p>
  2976. </section>
  2977. </div>
  2978. <!-- 套票資訊 -->
  2979. <div v-else-if="message.label === 'ticket'" class="ticket-item">
  2980. <img class="cover-img" :src="message.body.cover_img" alt="" />
  2981. <section>
  2982. <h3 class="title">{{ message.body.title }}</h3>
  2983. <div class="link-btn">
  2984. <a :href="message.body.store_info_url" target="_blank">
  2985. 線上預約
  2986. </a>
  2987. </div>
  2988. <p class="description">{{ message.body.description }}</p>
  2989. <span class="price-item">{{ message.body.price }}</span>
  2990. </section>
  2991. </div>
  2992. <!-- 聯絡我們 -->
  2993. <div v-else-if="message.label === 'contact-form'">
  2994. <v-dialog v-model="lostDialog" max-width="600">
  2995. <template v-slot:activator="{ props: activatorProps }">
  2996. <v-btn
  2997. text="填寫表單"
  2998. color="primary"
  2999. class="mt-5"
  3000. v-bind="activatorProps"
  3001. ></v-btn>
  3002. </template>
  3003. <v-card class="lost-item">
  3004. <v-card-title class="mt-3 ms-3"> 聯絡我們 </v-card-title>
  3005. <v-form
  3006. ref="lostForm"
  3007. lazy-validation
  3008. @submit.prevent="submitLostForm"
  3009. >
  3010. <v-card-text>
  3011. <p class="mb-5">
  3012. 為加快為您服務或有其他問題,您可撥打客服電話:02-8101-8800<br />
  3013. (國際電話+886 2 8101-8800),將有專人協助您;<br />
  3014. 或於下方填寫聯絡資料及留言,我們將盡快為您處理。
  3015. </p>
  3016. <v-text-field
  3017. v-model="lostFormData.title"
  3018. :rules="[requiredRule]"
  3019. label="標題 *"
  3020. required
  3021. ></v-text-field>
  3022. <v-text-field
  3023. v-model="lostFormData.content"
  3024. :rules="[requiredRule]"
  3025. label="內容 *"
  3026. required
  3027. placeholder="請詳述說明,我們將盡快回覆您,您最多可輸入 1,000 字元"
  3028. ></v-text-field>
  3029. <v-text-field
  3030. v-model="lostFormData.client_name"
  3031. :rules="[requiredRule]"
  3032. label="姓名 *"
  3033. required
  3034. ></v-text-field>
  3035. <v-text-field
  3036. v-model="lostFormData.gender"
  3037. :rules="[requiredRule]"
  3038. label="性別 *"
  3039. required
  3040. ></v-text-field>
  3041. <v-text-field
  3042. v-model="lostFormData.email"
  3043. :rules="[requiredRule, emailRule]"
  3044. label="電子郵件 *"
  3045. required
  3046. ></v-text-field>
  3047. <v-text-field
  3048. v-model="lostFormData.phone"
  3049. :rules="[requiredRule]"
  3050. label="聯絡電話 *"
  3051. required
  3052. ></v-text-field>
  3053. <section class="mt-5">
  3054. <strong
  3055. >台北 101個人資料蒐集、處理及利用告知事項:</strong
  3056. >
  3057. <p>
  3058. 台北金融大樓股份有限公司(即「台北101」)基於客戶服務及業務聯繫(特定目的代號090消費者、客戶管理與服務)及其他相關業務(181其他經營合於營業登記項目或組織章程所定之業務),故有必要蒐集、處理或利用相關個人資料,請您詳閱。
  3059. </p>
  3060. <p>
  3061. 基於前項目的蒐集之資料包含姓名、聯絡方式、性別(個人資料類別代號C001、C011、C132)等實際蒐集之個人資料,台北101將依前項特定目的存續期間,辦理紙本及電子化資料保存,並以非全自動化方式進行資料處理,且僅於臺灣地區之台北101營業範圍內進行特定目的內利用,除有法令規定或主管機關要求,或為答覆您的詢問而需提供商品或服務之合作夥伴共同處理外,台北101不會將資料提供給其他第三方或跨國境進行處理或利用。
  3062. </p>
  3063. <p>
  3064. 依據不同法令適用規定,就台北101保有您的個人資料,您可行使下列權利:
  3065. </p>
  3066. <ol>
  3067. <li>
  3068. 除有法令規定之例外情形外,得向台北101查詢、請求閱覽或請求製給複製本,惟台北101得依法令及實際狀況酌收必要成本費用。
  3069. </li>
  3070. <li>
  3071. 向台北101請求補充或更正您的個人資料,惟需應適當釋明其原因及事實。
  3072. </li>
  3073. <li>
  3074. 若台北101違反法令規定蒐集、處理或利用個人資料,得依法令規定向台北101請求停止繼續蒐集、處理或利用您的個人資料。
  3075. </li>
  3076. <li>
  3077. 若個人資料正確性有爭議者,得向台北101請求停止處理或利用您的個人資料,惟因執行業務所必須並註明其爭議或經您書面同意者,不在此限。
  3078. </li>
  3079. <li>
  3080. 依法令規定,個人資料蒐集之特定目的消失、期限屆滿、受法令拘束要求、您撤回同意、反對台北101繼續處理時,得向台北101請求刪除、停止處理或利用您的個人資料,惟因台北101因執行業務、履行雙方契約關係所必須、履行法定義務要求或經您書面同意者,不在此限。
  3081. </li>
  3082. <li>
  3083. 若您針對資料的正確性或處理方式提出疑義、反對台北101繼續處理、台北101非法處理、特定目的消失或保存期間屆滿時,台北101於進行法律訴訟、待完成法令適用釐清、查證等作業期間,仍需持續保存,您可要求台北101限制資料的處理;若台北101基於合法利益或公共利益處理您的個人資料,您亦有提出拒絕(異議)之權利。
  3084. </li>
  3085. <li>
  3086. 您可依法令適用之不同,將台北101基於履行契約、您同意處理或台北101以自動化方式處理的個人資料,並以您提供的資料為限,以機器可讀之格式,指定傳輸至其他機關(構)。
  3087. </li>
  3088. <li>
  3089. 若處理之依據為您明確表示同意之前提下進行蒐集、處理或利用,您可撤回您的同意,惟不影響您撤回同意前台北101處理個資之合法性。
  3090. </li>
  3091. </ol>
  3092. <p>
  3093. 若您如欲行使上述各項法定權利、了解如何行使之方式,或有任何個人資料相關問題,得向台北101客服(電話:02-8101-8800;電子郵件:mallservice@tfc101.com.tw)詢問、於台北101官方網站【聯絡我們】提出詢問,或連繫台北101隱私保護官(EMAIL:dpo@tfc101.com.tw),隱私權及資訊安全政策請詳台北101網站。您另有向個人資料保護法之主管機關「個人資料保護委員會」申訴之權利。
  3094. </p>
  3095. <p>
  3096. 您可自由選擇是否提供相關個人資料及類別,惟您拒絕提供之個人資料及類別,如是辦理業務審核或作業所必需,或為成立雙方契約關係或法令要求之資料,台北101可能無法進行必要之業務審核或作業而無法提供您相關服務或無法提供較佳之服務,敬請見諒。(2024.06修訂)
  3097. </p>
  3098. </section>
  3099. </v-card-text>
  3100. <v-divider></v-divider>
  3101. <v-card-actions class="py-5">
  3102. <v-spacer></v-spacer>
  3103. <v-btn
  3104. text="取消"
  3105. variant="plain"
  3106. @click="lostDialog = false"
  3107. ></v-btn>
  3108. <v-btn
  3109. type="submit"
  3110. color="primary"
  3111. text="確認送出"
  3112. variant="tonal"
  3113. >
  3114. </v-btn>
  3115. <!-- <v-btn
  3116. color="primary"
  3117. text="確認送出"
  3118. variant="tonal"
  3119. @click="dialog = false"
  3120. ></v-btn> -->
  3121. </v-card-actions>
  3122. </v-form>
  3123. </v-card>
  3124. </v-dialog>
  3125. </div>
  3126. </div>
  3127. <!-- 對話輸入框 -->
  3128. <!-- <form
  3129. @submit.prevent="sendMessage('out')"
  3130. class="chat-inputs"
  3131. :class="{ 'd-none': !hideMenu }"
  3132. >
  3133. <button @click="hideMenu = false" class="menu-btn">
  3134. <img src="../assets/img/icon/素材-02.png" alt="" width="50" />
  3135. </button>
  3136. <input
  3137. v-model="userMessage"
  3138. type="text"
  3139. placeholder="Type a message..."
  3140. />
  3141. <button type="submit" class="submit">
  3142. <img width="20" src="../assets/img/paper-plane-solid.svg" alt="" />
  3143. </button>
  3144. </form> -->
  3145. </section>
  3146. <!-- 廣告輪播 -->
  3147. <!-- <div class="slider-content">
  3148. <swiper
  3149. :slidesPerView="1"
  3150. :autoplay="{
  3151. delay: 5000,
  3152. disableOnInteraction: false,
  3153. }"
  3154. :modules="modules"
  3155. >
  3156. <swiper-slide>
  3157. <img src="../assets/img/banner-1.jpg" alt="" />
  3158. </swiper-slide>
  3159. <swiper-slide>
  3160. <img src="../assets/img/banner-2.jpg" alt="" />
  3161. </swiper-slide>
  3162. </swiper>
  3163. </div> -->
  3164. <!-- AI 主播影片 -->
  3165. <!-- <div
  3166. ref="videoContent"
  3167. v-show="showAnchor"
  3168. class="video-content"
  3169. :class="{ 'video-down': hideMenu }"
  3170. >
  3171. <div v-show="!isTTSVideo">
  3172. <video ref="video" preload playsinline>
  3173. <source src="../assets/video/start_1.mp4" type="video/mp4" />
  3174. Your browser does not support the video tag.
  3175. </video>
  3176. </div>
  3177. <div v-show="isTTSVideo">
  3178. <video ref="ttsVideo" preload playsinline>
  3179. <source :src="ttsVideoSrc" type="video/mp4" />
  3180. Your browser does not support the video tag.
  3181. </video>
  3182. </div>
  3183. </div> -->
  3184. </div>
  3185. <!-- 底部選單 -->
  3186. <div ref="menu" class="menu">
  3187. <!-- AI 主播影片 -->
  3188. <!-- <div
  3189. v-show="showAnchor"
  3190. class="video-content"
  3191. :class="{ 'video-down': hideMenu }"
  3192. >
  3193. <div v-show="!isTTSVideo">
  3194. <video ref="video" preload playsinline>
  3195. <source src="../assets/video/start_1.mp4" type="video/mp4" />
  3196. Your browser does not support the video tag.
  3197. </video>
  3198. </div>
  3199. <div v-show="isTTSVideo">
  3200. <video ref="ttsVideo" preload playsinline>
  3201. <source
  3202. :src="`https://cmm.ai:9001/${ttsVideoSrc}`"
  3203. type="video/mp4"
  3204. />
  3205. Your browser does not support the video tag.
  3206. </video>
  3207. </div>
  3208. </div> -->
  3209. <div class="menu-table" :class="{ 'hide-table': hideMenu }">
  3210. <table class="mt-3">
  3211. <tbody>
  3212. <tr v-for="(row, rowIndex) in menuList" :key="rowIndex">
  3213. <td v-for="(item, itemIndex) in row" :key="itemIndex">
  3214. <button @click="selectCategory(item.value, itemIndex)">
  3215. <img :src="getImageUrl(item.imgSrc)" alt="" class="icon" />
  3216. <p>{{ t(`${item.text}`) }}</p>
  3217. </button>
  3218. </td>
  3219. </tr>
  3220. </tbody>
  3221. </table>
  3222. </div>
  3223. <!-- <table class="mt-3">
  3224. <tbody>
  3225. <tr v-for="(row, rowIndex) in menuList" :key="rowIndex">
  3226. <td v-for="(item, itemIndex) in row" :key="itemIndex">
  3227. <button @click="selectCategory(item.value, itemIndex)">
  3228. <img :src="getImageUrl(item.imgSrc)" alt="" class="icon" />
  3229. <p>{{ t(`${item.text}`) }}</p>
  3230. </button>
  3231. </td>
  3232. </tr>
  3233. </tbody>
  3234. </table> -->
  3235. <div class="d-flex align-center position-relative">
  3236. <div class="position-absolute">
  3237. <button
  3238. v-if="!showInput"
  3239. @click="
  3240. hideMenu = true;
  3241. showInput = true;
  3242. "
  3243. class="ms-3 pt-1"
  3244. >
  3245. <img src="../assets/img/icon/素材-04.png" alt="" width="35" />
  3246. </button>
  3247. <button
  3248. v-else
  3249. @click="
  3250. hideMenu = false;
  3251. showInput = false;
  3252. "
  3253. >
  3254. <img
  3255. src="../assets/img/icon/素材-02.png"
  3256. alt=""
  3257. width="50"
  3258. class="pt-2"
  3259. />
  3260. </button>
  3261. </div>
  3262. <div class="w-100 d-flex align-center justify-center">
  3263. <button
  3264. v-if="!showInput"
  3265. @click="
  3266. hideMenu = true;
  3267. showInput = true;
  3268. "
  3269. class="d-flex align-center question-btn"
  3270. >
  3271. <img
  3272. class="me-2"
  3273. src="../assets/img/icon/素材-03.png"
  3274. alt=""
  3275. width="45"
  3276. />
  3277. {{ t("question") }}
  3278. </button>
  3279. <!-- 對話輸入框 -->
  3280. <form
  3281. v-else
  3282. @submit.prevent="sendMessage('text')"
  3283. class="chat-inputs"
  3284. :class="{ 'd-none': !showInput }"
  3285. >
  3286. <!-- <button @click="hideMenu = false" class="menu-btn">
  3287. <img src="../assets/img/icon/素材-02.png" alt="" width="50" />
  3288. </button> -->
  3289. <input
  3290. v-model="userMessage"
  3291. type="text"
  3292. placeholder="Type a message..."
  3293. />
  3294. <button type="submit" class="submit">
  3295. <img
  3296. width="20"
  3297. src="../assets/img/paper-plane-solid.svg"
  3298. alt=""
  3299. />
  3300. </button>
  3301. </form>
  3302. </div>
  3303. </div>
  3304. </div>
  3305. </div>
  3306. <!-- AI 主播語音轉文字 -->
  3307. <div v-else class="anchor-voice">
  3308. <div v-show="showAnchor" class="video-content">
  3309. <div>
  3310. <video ref="video" preload playsinline>
  3311. <source :src="videoSrc" type="video/mp4" />
  3312. <!-- <source src="../assets/video/start_1.mp4" type="video/mp4" /> -->
  3313. Your browser does not support the video tag.
  3314. </video>
  3315. <div v-if="videoLoading" class="video-progress">
  3316. <v-progress-circular
  3317. color="primary"
  3318. indeterminate
  3319. ></v-progress-circular>
  3320. </div>
  3321. </div>
  3322. <!-- <div v-show="isTTSVideo">
  3323. <video ref="ttsVideo" preload playsinline>
  3324. <source
  3325. :src="` ${ttsVideoSrc}`"
  3326. type="video/mp4"
  3327. />
  3328. Your browser does not support the video tag.
  3329. </video>
  3330. </div> -->
  3331. </div>
  3332. <div class="control-item">
  3333. <!-- <p class="text-center">連接中…</p> -->
  3334. <div class="d-flex flex-column align-center">
  3335. <audio v-if="audioURL" :src="audioURL" controls></audio>
  3336. <p
  3337. v-if="!isRecording"
  3338. class="mb-3 text-center"
  3339. v-html="t('system_construction')"
  3340. ></p>
  3341. <!-- <p v-if="!isRecording" class="mb-3">
  3342. {{ t("tap_to_record") }}
  3343. </p> -->
  3344. <p v-else class="mb-3">錄音中:{{ recordTime }} 秒</p>
  3345. <!-- 錄音按鈕 -->
  3346. <!-- <v-btn
  3347. v-if="!isRecording"
  3348. @click="recStart"
  3349. icon="mdi-circle"
  3350. size="large"
  3351. >
  3352. <v-icon icon="mdi-circle" color="red" size="large"></v-icon>
  3353. </v-btn> -->
  3354. <v-btn
  3355. v-else
  3356. @click="recStop"
  3357. icon="mdi-circle"
  3358. size="large"
  3359. color="success"
  3360. >
  3361. <v-icon icon="mdi-square" size="large"></v-icon>
  3362. </v-btn>
  3363. </div>
  3364. <div class="d-flex justify-space-between mt-3 mx-10">
  3365. <!-- 暫停按鈕 -->
  3366. <v-btn
  3367. v-if="isVideoPause"
  3368. @click="togglePause('pause')"
  3369. icon="mdi-pause"
  3370. size="large"
  3371. color="grey-darken-3"
  3372. ></v-btn>
  3373. <v-btn
  3374. v-else
  3375. @click="togglePause('play')"
  3376. icon="mdi-play"
  3377. size="large"
  3378. color="grey-darken-3"
  3379. ></v-btn>
  3380. <!-- 關閉按鈕 -->
  3381. <v-btn
  3382. @click="closeRec()"
  3383. icon="mdi-close-thick"
  3384. size="large"
  3385. color="red"
  3386. ></v-btn>
  3387. </div>
  3388. </div>
  3389. </div>
  3390. <!-- 主要廣告 -->
  3391. <v-dialog v-model="showAd">
  3392. <div class="ad-content">
  3393. <button @click="showAd = false" class="close-btn">
  3394. <svg
  3395. xmlns="http://www.w3.org/2000/svg"
  3396. width="28"
  3397. height="28"
  3398. fill="currentColor"
  3399. class="bi bi-x-circle"
  3400. viewBox="0 0 16 16"
  3401. >
  3402. <path
  3403. d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"
  3404. />
  3405. <path
  3406. d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"
  3407. />
  3408. </svg>
  3409. </button>
  3410. <img class="cover-img" :src="ad.cover_img" alt="" />
  3411. <section>
  3412. <h2 class="title">{{ ad.title }}</h2>
  3413. <span></span>
  3414. <p v-html="ad.description"></p>
  3415. <div v-if="ad.included.length" class="product">
  3416. <p>訂單內含商品</p>
  3417. <ul>
  3418. <li v-for="(product, index) in ad.included" :key="index">
  3419. {{ product }}
  3420. </li>
  3421. </ul>
  3422. </div>
  3423. <div v-if="ad.branch.length" class="branch">
  3424. <p>分店資訊</p>
  3425. <ul>
  3426. <li v-for="(name, index) in ad.branch" :key="index">
  3427. {{ name }}
  3428. </li>
  3429. </ul>
  3430. </div>
  3431. <!-- <p class="date">{{ item.body.date }}</p> -->
  3432. <span v-if="ad.location !== ''" class="info justify-end">
  3433. <svg
  3434. xmlns="http://www.w3.org/2000/svg"
  3435. width="20"
  3436. height="20"
  3437. viewBox="0 0 384 512"
  3438. >
  3439. <path
  3440. d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"
  3441. />
  3442. </svg>
  3443. <p>{{ ad.location }}</p>
  3444. </span>
  3445. </section>
  3446. </div>
  3447. </v-dialog>
  3448. <!-- 隨機廣告 -->
  3449. <v-dialog v-model="secondaryAdShow">
  3450. <div class="ad-content">
  3451. <button @click="secondaryAdShow = false" class="close-btn">
  3452. <svg
  3453. xmlns="http://www.w3.org/2000/svg"
  3454. width="28"
  3455. height="28"
  3456. fill="currentColor"
  3457. class="bi bi-x-circle"
  3458. viewBox="0 0 16 16"
  3459. >
  3460. <path
  3461. d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"
  3462. />
  3463. <path
  3464. d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"
  3465. />
  3466. </svg>
  3467. </button>
  3468. <img class="cover-img" :src="secondaryAd.img" alt="" />
  3469. <section>
  3470. <h2 class="title">{{ secondaryAd.name }}</h2>
  3471. <span class="price">
  3472. <p>{{ formatPrice(secondaryAd.price) }}</p>
  3473. <a :href="secondaryAd.url">前往官網</a>
  3474. </span>
  3475. <p class="mb-5" v-html="secondaryAd.content"></p>
  3476. <span v-if="secondaryAd.phone !== ''" class="info">
  3477. <img
  3478. src="../assets/img/phone-solid.svg"
  3479. width="15"
  3480. alt=""
  3481. style="
  3482. filter: invert(50%) sepia(21%) saturate(1061%) hue-rotate(348deg)
  3483. brightness(96%) contrast(92%);
  3484. "
  3485. />
  3486. <p class="ms-1">{{ secondaryAd.phone }}</p>
  3487. </span>
  3488. <span v-if="secondaryAd.address !== ''" class="info">
  3489. <svg
  3490. xmlns="http://www.w3.org/2000/svg"
  3491. width="20"
  3492. height="20"
  3493. viewBox="0 0 384 512"
  3494. class="mt-1"
  3495. >
  3496. <path
  3497. d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"
  3498. />
  3499. </svg>
  3500. <p>{{ secondaryAd.address }}</p>
  3501. </span>
  3502. </section>
  3503. </div>
  3504. </v-dialog>
  3505. <!-- <div
  3506. v-show="showAd"
  3507. v-for="(item, index) in ad"
  3508. :key="index"
  3509. class="ad-content"
  3510. >
  3511. <div>
  3512. <button @click="showAd = false" class="close-btn">
  3513. <svg
  3514. xmlns="http://www.w3.org/2000/svg"
  3515. width="28"
  3516. height="28"
  3517. fill="currentColor"
  3518. class="bi bi-x-circle"
  3519. viewBox="0 0 16 16"
  3520. >
  3521. <path
  3522. d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"
  3523. />
  3524. <path
  3525. d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"
  3526. />
  3527. </svg>
  3528. </button>
  3529. <img class="cover-img" :src="item.body.cover_img" alt="" />
  3530. <section>
  3531. <h2 class="title">{{ item.body.title }}</h2>
  3532. <span></span>
  3533. <p>
  3534. {{ item.body.description }}
  3535. </p>
  3536. <div v-if="item.body.included.length" class="product">
  3537. <p>訂單內含商品</p>
  3538. <ul>
  3539. <li v-for="(product, index) in item.body.included" :key="index">
  3540. {{ product }}
  3541. </li>
  3542. </ul>
  3543. </div>
  3544. <div v-if="item.body.branch.length" class="branch">
  3545. <p>分店資訊</p>
  3546. <ul>
  3547. <li v-for="(name, index) in item.body.branch" :key="index">
  3548. {{ name }}
  3549. </li>
  3550. </ul>
  3551. </div>
  3552. <span v-if="item.body.location !== ''" class="map">
  3553. <svg
  3554. xmlns="http://www.w3.org/2000/svg"
  3555. width="20"
  3556. height="20"
  3557. viewBox="0 0 384 512"
  3558. >
  3559. <path
  3560. d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"
  3561. />
  3562. </svg>
  3563. <p>{{ item.body.location }}</p>
  3564. </span>
  3565. </section>
  3566. </div>
  3567. </div> -->
  3568. </template>
  3569. <style lang="scss">
  3570. .main-btn {
  3571. padding: 16px 70px;
  3572. font-size: 22px;
  3573. font-weight: 600;
  3574. border: none;
  3575. border-radius: 100px;
  3576. letter-spacing: 2px;
  3577. color: white;
  3578. background-color: var(--main-color);
  3579. cursor: pointer;
  3580. transition: all 0.3s;
  3581. &:hover {
  3582. background-color: #c19c75;
  3583. }
  3584. }
  3585. .lang-content {
  3586. width: 100%;
  3587. height: 100vh;
  3588. padding: 0 20vw;
  3589. display: flex;
  3590. align-items: center;
  3591. justify-content: center;
  3592. background-color: rgba(0, 0, 0, 0.6);
  3593. background-blend-mode: multiply;
  3594. background-image: url("@/assets/img/banner.jpg");
  3595. background-size: cover;
  3596. background-position: center center;
  3597. .main-btn {
  3598. margin-bottom: 40px;
  3599. &:last-child {
  3600. margin-bottom: 0;
  3601. }
  3602. }
  3603. .btn-list {
  3604. max-width: 400px;
  3605. display: flex;
  3606. flex-direction: column;
  3607. }
  3608. }
  3609. .main-containar {
  3610. width: 100%;
  3611. background-color: var(--sub-color);
  3612. // height: 150vh;
  3613. // min-height: -webkit-fill-available;
  3614. // display: flex;
  3615. // flex-direction: column;
  3616. // padding-bottom: 70vh;
  3617. // min-height: 100%;
  3618. // overflow-x: hidden;
  3619. // overflow-y: scroll;
  3620. .video-content {
  3621. width: 25vw;
  3622. position: absolute;
  3623. right: -5px;
  3624. top: -45vw;
  3625. @media (max-width: 360px) {
  3626. width: 22vw;
  3627. top: -40vw;
  3628. }
  3629. video {
  3630. // position: fixed;
  3631. // top: 50px;
  3632. // left: 0;
  3633. // right: 0;
  3634. // z-index: 10;
  3635. width: 100%;
  3636. height: auto;
  3637. }
  3638. .control-btn {
  3639. width: 33px;
  3640. height: 33px;
  3641. display: flex;
  3642. align-items: center;
  3643. justify-content: center;
  3644. position: absolute;
  3645. z-index: 50;
  3646. top: 70px;
  3647. right: 7px;
  3648. background: var(--main-color);
  3649. border: none;
  3650. border-radius: 100px;
  3651. img {
  3652. width: 25px;
  3653. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg)
  3654. brightness(103%) contrast(103%); // 改成白色
  3655. }
  3656. }
  3657. }
  3658. .chat-content {
  3659. width: 100%;
  3660. position: relative;
  3661. z-index: 200;
  3662. letter-spacing: 1px;
  3663. background-color: var(--sub-color);
  3664. &.hide-menu {
  3665. min-height: 90vh;
  3666. }
  3667. .headline {
  3668. display: flex;
  3669. align-items: center;
  3670. justify-content: space-between;
  3671. padding: 10px 25px;
  3672. border-radius: 15px 15px 0 0;
  3673. background-color: var(--main-color);
  3674. h1 {
  3675. font-size: 1.125rem;
  3676. font-weight: 500;
  3677. color: white;
  3678. @media (max-width: 375px) {
  3679. font-size: 0.875rem;
  3680. }
  3681. }
  3682. button {
  3683. padding-top: 3px;
  3684. display: flex;
  3685. align-items: center;
  3686. border: none;
  3687. background-color: transparent;
  3688. cursor: pointer;
  3689. img {
  3690. width: 25px;
  3691. height: 20px;
  3692. transition: all 0.3s;
  3693. transform: rotate(0deg);
  3694. &.rotate {
  3695. transform: rotate(180deg);
  3696. }
  3697. }
  3698. }
  3699. }
  3700. .chat-area {
  3701. // display: flex;
  3702. // flex-direction: column;
  3703. min-height: 60vh;
  3704. background: var(--sub-color);
  3705. padding: 0.5em 1em 1.5em;
  3706. .btn-list {
  3707. margin-top: 20px;
  3708. display: flex;
  3709. flex-wrap: wrap;
  3710. list-style: none;
  3711. button {
  3712. margin-right: 15px;
  3713. margin-bottom: 15px;
  3714. padding: 5px 15px;
  3715. color: white;
  3716. border: 2px solid white;
  3717. letter-spacing: 2px;
  3718. font-weight: bold;
  3719. text-shadow: 1px 1px 1px #939393;
  3720. &.active {
  3721. color: var(--sub-color);
  3722. background-color: white;
  3723. text-shadow: none;
  3724. }
  3725. }
  3726. }
  3727. }
  3728. .message-content {
  3729. display: flex;
  3730. flex-direction: column;
  3731. // margin-top: 20px;
  3732. .message {
  3733. max-width: 45%;
  3734. border-radius: 20px;
  3735. padding: 0.8em 1.2em;
  3736. white-space: pre-line;
  3737. &:first-child {
  3738. margin-top: 0;
  3739. }
  3740. @media (max-width: 600px) {
  3741. max-width: 75%;
  3742. font-size: 0.875em;
  3743. }
  3744. &.message-out {
  3745. margin-left: auto;
  3746. background: var(--bg-grey);
  3747. color: white;
  3748. }
  3749. &.message-in {
  3750. margin-right: auto;
  3751. background: #f1f0f0;
  3752. color: black;
  3753. }
  3754. &.message-in,
  3755. &.message-out {
  3756. margin-top: 20px;
  3757. }
  3758. }
  3759. }
  3760. .branch {
  3761. ul,
  3762. li,
  3763. p {
  3764. margin: 10px 0;
  3765. font-size: 14px;
  3766. }
  3767. }
  3768. .recommend-item {
  3769. width: 350px;
  3770. border-radius: 10px;
  3771. background-color: white;
  3772. }
  3773. .recommend-item,
  3774. .ticket-item {
  3775. .cover-img {
  3776. width: 100%;
  3777. height: 22.5vh;
  3778. object-fit: contain;
  3779. overflow: hidden;
  3780. border-radius: 10px 10px 0 0;
  3781. }
  3782. section {
  3783. padding: 15px 25px;
  3784. letter-spacing: 1px;
  3785. .title {
  3786. margin-bottom: 0;
  3787. font-weight: 600;
  3788. font-size: 1.25rem;
  3789. text-align: left;
  3790. // 超過則省略
  3791. overflow: hidden;
  3792. text-overflow: ellipsis;
  3793. display: -webkit-box;
  3794. -webkit-line-clamp: 1;
  3795. -webkit-box-orient: vertical;
  3796. line-break: after-white-space;
  3797. }
  3798. .description {
  3799. line-height: 1.8;
  3800. // text-align: justify;
  3801. font-size: 0.875rem;
  3802. }
  3803. .date {
  3804. color: #646464;
  3805. font-size: 0.875rem;
  3806. text-align: center;
  3807. }
  3808. }
  3809. .link-btn {
  3810. display: flex;
  3811. justify-content: center;
  3812. a {
  3813. display: block;
  3814. width: 100%;
  3815. max-width: 200px;
  3816. margin: 25px 3px;
  3817. padding: 8px;
  3818. text-align: center;
  3819. border-radius: 20px;
  3820. color: white;
  3821. background-color: var(--main-color);
  3822. text-decoration: none;
  3823. transition: all 0.3s;
  3824. &:hover {
  3825. opacity: 0.8;
  3826. }
  3827. }
  3828. }
  3829. }
  3830. .store-item {
  3831. width: 350px;
  3832. .cover-img {
  3833. position: relative;
  3834. margin-bottom: -5px;
  3835. img {
  3836. width: 100%;
  3837. height: 200px;
  3838. object-fit: cover;
  3839. }
  3840. .title {
  3841. position: absolute;
  3842. top: 50%;
  3843. left: 50%;
  3844. transform: translate(-50%, -50%);
  3845. color: white;
  3846. font-size: 1.25rem;
  3847. letter-spacing: 2px;
  3848. text-shadow: 2px 2px 4px #333;
  3849. }
  3850. }
  3851. .headline {
  3852. color: white;
  3853. justify-content: center;
  3854. }
  3855. section {
  3856. padding: 20px;
  3857. letter-spacing: 1px;
  3858. border-radius: 0 0 10px 10px;
  3859. background-color: white;
  3860. .info {
  3861. margin-bottom: 15px;
  3862. p {
  3863. display: flex;
  3864. align-items: center;
  3865. img {
  3866. margin-right: 10px;
  3867. }
  3868. &:last-child {
  3869. margin-top: 3px;
  3870. }
  3871. }
  3872. }
  3873. }
  3874. }
  3875. .ticket-item {
  3876. width: 100%;
  3877. margin-top: 20px;
  3878. h3 {
  3879. margin-bottom: 10px;
  3880. text-align: center;
  3881. }
  3882. .ticket-slide {
  3883. width: 90%;
  3884. position: relative;
  3885. .slide-item {
  3886. max-width: 70vw;
  3887. border-radius: 10px;
  3888. background-color: white;
  3889. }
  3890. .swiper-button-prev {
  3891. display: none;
  3892. }
  3893. }
  3894. .title,
  3895. .description {
  3896. // 超過則省略
  3897. overflow: hidden;
  3898. text-overflow: ellipsis;
  3899. display: -webkit-box;
  3900. // -webkit-line-clamp: 3;
  3901. -webkit-box-orient: vertical;
  3902. line-break: after-white-space;
  3903. }
  3904. .title {
  3905. -webkit-line-clamp: 3;
  3906. }
  3907. .description {
  3908. -webkit-line-clamp: 5;
  3909. }
  3910. section {
  3911. margin-top: -6px;
  3912. border-radius: 0 0 10px 10px;
  3913. background-color: white;
  3914. .link-btn {
  3915. a {
  3916. max-width: 150px;
  3917. margin: 0;
  3918. padding: 8px 12px;
  3919. font-size: 0.75rem;
  3920. }
  3921. }
  3922. .price-item {
  3923. display: block;
  3924. margin-top: 10px;
  3925. text-align: end;
  3926. }
  3927. .price-info {
  3928. margin: 20px 0;
  3929. display: flex;
  3930. align-items: center;
  3931. justify-content: space-between;
  3932. @media (max-width: 575px) {
  3933. font-size: 0.875rem;
  3934. // flex-direction: column;
  3935. // align-items: start;
  3936. }
  3937. span {
  3938. display: block;
  3939. margin: 10px 0;
  3940. padding-right: 5px;
  3941. font-size: 1rem;
  3942. font-weight: 600;
  3943. color: var(--main-color);
  3944. }
  3945. }
  3946. }
  3947. }
  3948. }
  3949. }
  3950. .lost-item {
  3951. p,
  3952. strong {
  3953. display: block;
  3954. margin-bottom: 1rem;
  3955. line-height: 1.7;
  3956. }
  3957. section {
  3958. font-size: 0.875rem;
  3959. color: #808080;
  3960. ol {
  3961. margin-left: 1.25rem;
  3962. li {
  3963. margin-bottom: 0.5rem;
  3964. line-height: 1.7;
  3965. }
  3966. }
  3967. }
  3968. }
  3969. .btn-options {
  3970. // max-width: 85%;
  3971. margin-top: 15px;
  3972. display: flex;
  3973. flex-wrap: wrap;
  3974. list-style: none;
  3975. li {
  3976. margin-top: 15px;
  3977. margin-right: 20px;
  3978. button {
  3979. display: block;
  3980. width: 100%;
  3981. padding: 8px 16px;
  3982. border-radius: 5px;
  3983. color: white;
  3984. border: none;
  3985. background-color: var(--main-color);
  3986. letter-spacing: 2px;
  3987. transition: all 0.3s;
  3988. font-size: 0.875rem;
  3989. &:hover {
  3990. opacity: 0.8;
  3991. }
  3992. }
  3993. }
  3994. }
  3995. .btn-swiper {
  3996. .swiper-slide {
  3997. width: auto;
  3998. // max-width: 185px;
  3999. .btn-container {
  4000. display: flex;
  4001. justify-content: center;
  4002. button {
  4003. display: block;
  4004. width: 100%;
  4005. padding: 10px 20px;
  4006. border-radius: 5px;
  4007. color: white;
  4008. border: none;
  4009. background-color: var(--main-color);
  4010. letter-spacing: 2px;
  4011. transition: all 0.3s;
  4012. font-size: 0.875rem;
  4013. &:hover {
  4014. opacity: 0.8;
  4015. }
  4016. }
  4017. }
  4018. }
  4019. }
  4020. .ad-content {
  4021. // width: 90%;
  4022. max-height: 95vh;
  4023. padding: 35px;
  4024. overflow-y: auto;
  4025. // position: absolute;
  4026. // z-index: 500;
  4027. border-radius: 10px;
  4028. background-color: #fff;
  4029. // box-shadow: 2px 2px 14px #5f5f5f;
  4030. .close-btn {
  4031. position: absolute;
  4032. top: 7px;
  4033. right: 5px;
  4034. border: none;
  4035. background-color: transparent;
  4036. transition: all 0.3s;
  4037. cursor: pointer;
  4038. svg {
  4039. filter: invert(57%) sepia(45%) saturate(391%) hue-rotate(350deg)
  4040. brightness(93%) contrast(84%);
  4041. }
  4042. &:hover {
  4043. opacity: 0.8;
  4044. }
  4045. }
  4046. .ar-link {
  4047. display: flex;
  4048. justify-content: center;
  4049. }
  4050. section {
  4051. p {
  4052. // padding: 0 10px;
  4053. line-height: 1.7;
  4054. letter-spacing: 2px;
  4055. }
  4056. .title {
  4057. margin: 15px auto;
  4058. color: var(--main-color);
  4059. font-weight: 600;
  4060. font-size: 1.375em;
  4061. text-align: center;
  4062. letter-spacing: 2px;
  4063. }
  4064. .product,
  4065. .branch {
  4066. margin-top: 20px;
  4067. background-color: #f1e9dc;
  4068. p {
  4069. padding: 10px 0;
  4070. font-weight: 500;
  4071. font-size: 0.875em;
  4072. text-align: center;
  4073. border-bottom: 2px solid #fff;
  4074. }
  4075. ul {
  4076. padding: 10px;
  4077. list-style: none;
  4078. li {
  4079. padding-bottom: 5px;
  4080. letter-spacing: 1px;
  4081. font-weight: 500;
  4082. font-size: 0.875em;
  4083. }
  4084. }
  4085. }
  4086. .date {
  4087. margin: 20px 0;
  4088. text-align: center;
  4089. }
  4090. .info {
  4091. display: flex;
  4092. align-items: center;
  4093. margin-top: 5px;
  4094. p {
  4095. padding-left: 10px;
  4096. letter-spacing: 2px;
  4097. // font-weight: 500;
  4098. // color: var(--main-color);
  4099. }
  4100. svg {
  4101. filter: invert(57%) sepia(45%) saturate(391%) hue-rotate(350deg)
  4102. brightness(93%) contrast(84%);
  4103. }
  4104. }
  4105. }
  4106. .cover-img {
  4107. width: 100%;
  4108. max-height: 250px;
  4109. object-fit: cover;
  4110. }
  4111. .price {
  4112. display: flex;
  4113. flex-wrap: wrap;
  4114. align-items: center;
  4115. justify-content: space-between;
  4116. margin: 10px 0;
  4117. p {
  4118. font-size: 1.25rem;
  4119. font-weight: 500;
  4120. color: var(--main-color);
  4121. }
  4122. a {
  4123. max-width: 150px;
  4124. margin: 10px 0;
  4125. padding: 8px 25px;
  4126. display: inline-block;
  4127. text-decoration: none;
  4128. text-align: center;
  4129. border-radius: 20px;
  4130. letter-spacing: 1px;
  4131. color: white;
  4132. background-color: var(--main-color);
  4133. }
  4134. }
  4135. }
  4136. .slider-content {
  4137. width: 100%;
  4138. img {
  4139. width: 100%;
  4140. margin-bottom: -5px;
  4141. }
  4142. }
  4143. .branch {
  4144. margin-top: 30px;
  4145. ul {
  4146. padding: 0;
  4147. list-style: none;
  4148. li {
  4149. letter-spacing: 1px;
  4150. }
  4151. }
  4152. }
  4153. .video-progress {
  4154. position: absolute;
  4155. left: 50%;
  4156. top: 40%;
  4157. transform: translate(-50%, -50%);
  4158. }
  4159. .dialog-content {
  4160. position: absolute;
  4161. top: 60px;
  4162. left: 0;
  4163. z-index: 100;
  4164. }
  4165. .vr-content {
  4166. width: 700px;
  4167. height: 700px;
  4168. }
  4169. .ar-link {
  4170. display: inline-block;
  4171. padding: 7px 17px;
  4172. color: #fff;
  4173. background-color: var(--main-color);
  4174. border-radius: 5px;
  4175. text-decoration: none;
  4176. letter-spacing: 1px;
  4177. }
  4178. .ar-card {
  4179. width: 85vw;
  4180. height: 100vh;
  4181. .v-card-title {
  4182. text-align: center;
  4183. }
  4184. #vr-video {
  4185. height: 77vh;
  4186. }
  4187. }
  4188. .btn-swiper {
  4189. margin-top: 20px;
  4190. }
  4191. .v-expansion-panel-text {
  4192. font-size: 0.875rem;
  4193. line-height: 1.7;
  4194. }
  4195. // 對話輸入框
  4196. .chat-inputs {
  4197. width: 100%;
  4198. display: flex;
  4199. padding: 10px 20px;
  4200. background-color: white;
  4201. input {
  4202. width: 100%;
  4203. border: none;
  4204. margin-left: 2rem;
  4205. &:focus-visible {
  4206. outline: none;
  4207. }
  4208. }
  4209. .menu-btn {
  4210. position: absolute;
  4211. top: 2px;
  4212. left: 0;
  4213. }
  4214. button.submit {
  4215. border: none;
  4216. background: white;
  4217. cursor: pointer;
  4218. &:hover {
  4219. img {
  4220. opacity: 0.8;
  4221. }
  4222. }
  4223. img {
  4224. padding-top: 5px;
  4225. transition: all 0.3s;
  4226. filter: invert(75%) sepia(20%) saturate(459%) hue-rotate(360deg)
  4227. brightness(100%) contrast(85%);
  4228. }
  4229. }
  4230. ::placeholder {
  4231. font-size: 1rem;
  4232. font-weight: 500;
  4233. color: var(--sub-color);
  4234. opacity: 1; /* Firefox */
  4235. }
  4236. ::-ms-input-placeholder {
  4237. /* Edge 12 -18 */
  4238. color: var(--sub-color);
  4239. }
  4240. }
  4241. // 底部選單
  4242. .menu {
  4243. position: fixed;
  4244. z-index: 300;
  4245. left: 0;
  4246. bottom: 0px;
  4247. right: 0;
  4248. color: var(--text-color);
  4249. background-color: white;
  4250. &.hide-menu table {
  4251. height: 0;
  4252. z-index: -1;
  4253. }
  4254. .icon {
  4255. width: 80px;
  4256. @media (max-width: 414px) {
  4257. width: 60px;
  4258. }
  4259. @media (max-width: 375px) {
  4260. width: 45px;
  4261. }
  4262. }
  4263. .menu-table {
  4264. height: 100%;
  4265. transition: all 0.3s;
  4266. &.hide-table {
  4267. height: 0;
  4268. table {
  4269. display: none;
  4270. height: 0;
  4271. }
  4272. }
  4273. table {
  4274. width: 95%;
  4275. height: 100%;
  4276. margin: auto;
  4277. border-collapse: collapse;
  4278. position: relative;
  4279. transition: all 0.3s;
  4280. &::before,
  4281. &::after {
  4282. content: "";
  4283. display: inline-block;
  4284. width: 10px;
  4285. height: 100%;
  4286. background-color: #fff;
  4287. position: absolute;
  4288. bottom: 0%;
  4289. @media (max-width: 390px) {
  4290. width: 8px;
  4291. }
  4292. }
  4293. &::before {
  4294. left: -5px;
  4295. }
  4296. &::after {
  4297. right: -5px;
  4298. }
  4299. tr {
  4300. td {
  4301. width: 50px;
  4302. padding: 1rem 0;
  4303. text-align: center;
  4304. border: 1px solid #ccc;
  4305. @media (max-width: 414px) {
  4306. width: 100px;
  4307. padding: 1rem 0;
  4308. }
  4309. @media (max-width: 390px) {
  4310. padding: 0.5rem 0;
  4311. }
  4312. p {
  4313. padding: 0 0.3rem;
  4314. letter-spacing: 0.03rem;
  4315. @media (max-width: 430px) {
  4316. // width: 115px;
  4317. font-size: 0.875rem;
  4318. }
  4319. }
  4320. }
  4321. &:first-child {
  4322. td {
  4323. border-top: 0px solid transparent;
  4324. }
  4325. }
  4326. &:last-child {
  4327. td {
  4328. border-bottom: 0px solid transparent;
  4329. }
  4330. }
  4331. }
  4332. }
  4333. }
  4334. .question-btn {
  4335. color: var(--main-color);
  4336. font-size: 1.25rem;
  4337. font-weight: 500;
  4338. letter-spacing: 0.1rem;
  4339. @media (max-width: 414px) {
  4340. font-size: 1rem;
  4341. }
  4342. }
  4343. }
  4344. .anchor-voice {
  4345. height: 94vh;
  4346. color: white;
  4347. background-color: black;
  4348. .video-content {
  4349. height: 70vh;
  4350. overflow: hidden;
  4351. @media (max-width: 375px) {
  4352. height: 65vh;
  4353. }
  4354. video {
  4355. width: 100%;
  4356. @media (max-width: 375px) {
  4357. margin-top: -50px;
  4358. }
  4359. }
  4360. }
  4361. .control-item {
  4362. display: flex;
  4363. flex-direction: column;
  4364. justify-content: center;
  4365. height: 24vh;
  4366. @media (max-width: 375px) {
  4367. height: 29vh;
  4368. }
  4369. }
  4370. // .v-btn.v-btn--density-default {
  4371. // height: 55px !important;
  4372. // }
  4373. }
  4374. .map-img {
  4375. max-width: 100%;
  4376. &.show-anchor {
  4377. max-width: 70%;
  4378. }
  4379. }
  4380. .voice-btn {
  4381. position: fixed;
  4382. right: 5px;
  4383. top: 55px;
  4384. z-index: 100;
  4385. button {
  4386. display: flex;
  4387. align-items: center;
  4388. img {
  4389. width: 22px;
  4390. filter: invert(49%) sepia(66%) saturate(368%) hue-rotate(348deg)
  4391. brightness(91%) contrast(92%);
  4392. }
  4393. p {
  4394. margin-left: 5px;
  4395. font-size: 0.85rem;
  4396. color: var(--main-color);
  4397. }
  4398. }
  4399. }
  4400. .v-btn {
  4401. // &.v-btn--density-default {
  4402. // height: auto !important;
  4403. // }
  4404. p {
  4405. font-size: 0.875rem;
  4406. }
  4407. }
  4408. .v-field__outline {
  4409. --v-field-border-width: 0 !important;
  4410. }
  4411. .swiper {
  4412. // width: 300px;
  4413. margin-left: 0;
  4414. }
  4415. .a-modal {
  4416. position: relative !important;
  4417. top: 50% !important;
  4418. z-index: 15000 !important;
  4419. }
  4420. html.a-fullscreen {
  4421. position: relative !important;
  4422. }
  4423. a-video-controls {
  4424. position: absolute;
  4425. bottom: 20px;
  4426. left: 50%;
  4427. transform: translateX(-50%);
  4428. }
  4429. .fc-direction-ltr {
  4430. height: 500px;
  4431. }
  4432. .fc {
  4433. .fc-scrollgrid,
  4434. .fc-scrollgrid table,
  4435. .fc-daygrid-body {
  4436. height: 94%;
  4437. width: 100% !important;
  4438. }
  4439. .fc-toolbar.fc-header-toolbar {
  4440. padding: 5px;
  4441. margin-bottom: 0;
  4442. letter-spacing: 1px;
  4443. background-color: #f2f2f2;
  4444. border-radius: 5px 5px 0 0;
  4445. }
  4446. .fc-toolbar-title {
  4447. font-size: 1.125em;
  4448. }
  4449. .fc-day-past {
  4450. &.fc-day-other {
  4451. a {
  4452. text-decoration: none;
  4453. }
  4454. }
  4455. a {
  4456. color: #cccccc;
  4457. text-decoration: line-through;
  4458. }
  4459. }
  4460. .fc-button .fc-icon {
  4461. color: #969696;
  4462. font-size: 1em !important;
  4463. vertical-align: baseline !important;
  4464. }
  4465. .fc-icon-chevron-left::before {
  4466. content: "<";
  4467. }
  4468. .fc-icon-chevron-right::before {
  4469. content: ">";
  4470. }
  4471. .fc-button-primary {
  4472. border: none;
  4473. background-color: transparent;
  4474. &:hover,
  4475. &:focus,
  4476. &:not(:disabled):active:focus {
  4477. box-shadow: none;
  4478. background-color: transparent;
  4479. }
  4480. &:disabled {
  4481. display: none;
  4482. }
  4483. }
  4484. .fc-daygrid-day-top {
  4485. justify-content: center;
  4486. }
  4487. .fc-day-today.fc-daygrid-day,
  4488. .fc-day-future.fc-daygrid-day {
  4489. cursor: pointer;
  4490. }
  4491. }
  4492. </style>